From f12c7850941f961c9b176248e81479cf7332ab6d Mon Sep 17 00:00:00 2001 From: Sebastian Heinlein Date: Mon, 9 Oct 2006 16:25:54 +0200 Subject: * fix two non translatable buttons --- data/glade/SoftwarePropertiesDialogs.glade | 2 +- data/glade/UpdateManager.glade | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/glade/SoftwarePropertiesDialogs.glade b/data/glade/SoftwarePropertiesDialogs.glade index 7334d67a..f60d8a24 100644 --- a/data/glade/SoftwarePropertiesDialogs.glade +++ b/data/glade/SoftwarePropertiesDialogs.glade @@ -928,7 +928,7 @@ You need a working internet connection to continue. True True True - _Replace + _Replace True GTK_RELIEF_NORMAL True diff --git a/data/glade/UpdateManager.glade b/data/glade/UpdateManager.glade index a11a5a43..48388a12 100644 --- a/data/glade/UpdateManager.glade +++ b/data/glade/UpdateManager.glade @@ -784,7 +784,7 @@ True True True - _Upgrade + _Upgrade True GTK_RELIEF_NORMAL True -- cgit v1.2.3 From ba0fc9a5fc32bc7f43aa6043a7f05a5145e432f8 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 10 Oct 2006 18:57:13 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - run the postUpgradeRules() after the upgrade and before trying to install any missing meta-packages --- DistUpgrade/DistUpgradeCache.py | 8 ++++---- debian/changelog | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 7d0d27e0..2e21d05d 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -202,16 +202,16 @@ class MyCache(apt.Cache): # upgrade (and make sure this way that the cache is ok) self.upgrade(True) - # then see if meta-pkgs are missing - if not self._installMetaPkgs(view): - raise SystemError, _("Can't upgrade required meta-packages") - # see if our KeepInstalled rules are honored self.keepInstalledRule() # and if we have some special rules self.postUpgradeRule() + # then see if meta-pkgs are missing + if not self._installMetaPkgs(view): + raise SystemError, _("Can't upgrade required meta-packages") + # see if it all makes sense if not self._verifyChanges(): raise SystemError, _("A essential package would have to be removed") diff --git a/debian/changelog b/debian/changelog index 721ed39b..4f9c7dd0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,7 +2,7 @@ update-manager (0.44.17) edgy; urgency=low * memory leak fixed (lp: #43096) - -- + -- Michael Vogt Mon, 9 Oct 2006 15:24:40 +0200 update-manager (0.44.16) edgy; urgency=low -- cgit v1.2.3 From 6dd632f5233fc6c6ffe04dd2d15b633f23c5e457 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 10 Oct 2006 20:39:01 +0200 Subject: * DistUpgrade/DistUpgradeViewGtk.py: - calculate the time spend in the ui as well (lp: #48733) * po/*: - make update-po --- DistUpgrade/Changelog | 3 +++ DistUpgrade/DistUpgradeViewGtk.py | 8 ++++++-- po/am.po | 8 ++++---- po/ar.po | 8 ++++---- po/be.po | 8 ++++---- po/bg.po | 8 ++++---- po/bn.po | 8 ++++---- po/br.po | 8 ++++---- po/ca.po | 8 ++++---- po/cs.po | 8 ++++---- po/da.po | 8 ++++---- po/de.po | 8 ++++---- po/el.po | 8 ++++---- po/en_AU.po | 8 ++++---- po/en_CA.po | 8 ++++---- po/en_GB.po | 8 ++++---- po/eo.po | 8 ++++---- po/es.po | 8 ++++---- po/et.po | 8 ++++---- po/eu.po | 8 ++++---- po/fa.po | 8 ++++---- po/fi.po | 8 ++++---- po/fr.po | 8 ++++---- po/fur.po | 8 ++++---- po/gl.po | 8 ++++---- po/he.po | 8 ++++---- po/hi.po | 8 ++++---- po/hr.po | 8 ++++---- po/hu.po | 8 ++++---- po/id.po | 8 ++++---- po/it.po | 8 ++++---- po/ja.po | 8 ++++---- po/ka.po | 8 ++++---- po/ko.po | 8 ++++---- po/ku.po | 8 ++++---- po/lt.po | 8 ++++---- po/lv.po | 8 ++++---- po/mk.po | 8 ++++---- po/ms.po | 8 ++++---- po/nb.po | 8 ++++---- po/ne.po | 8 ++++---- po/nl.po | 8 ++++---- po/nn.po | 8 ++++---- po/no.po | 8 ++++---- po/oc.po | 8 ++++---- po/pa.po | 8 ++++---- po/pl.po | 8 ++++---- po/pt.po | 8 ++++---- po/pt_BR.po | 8 ++++---- po/qu.po | 8 ++++---- po/ro.po | 8 ++++---- po/ru.po | 8 ++++---- po/rw.po | 8 ++++---- po/sk.po | 8 ++++---- po/sl.po | 8 ++++---- po/sq.po | 8 ++++---- po/sr.po | 8 ++++---- po/sv.po | 8 ++++---- po/ta.po | 8 ++++---- po/th.po | 8 ++++---- po/tr.po | 8 ++++---- po/uk.po | 8 ++++---- po/update-manager.pot | 8 ++++---- po/ur.po | 8 ++++---- po/urd.po | 8 ++++---- po/vi.po | 8 ++++---- po/xh.po | 8 ++++---- po/zh_CN.po | 8 ++++---- po/zh_HK.po | 8 ++++---- po/zh_TW.po | 8 ++++---- 70 files changed, 281 insertions(+), 274 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index ece5feda..77682ef0 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,6 @@ +2006-10-10: + - fix time calculation + - fix kubuntu upgrade case 2006-10-06: - fix source.list rewrite corner case bug (#64159) 2006-10-04: diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index e77fe858..11b3e041 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -198,6 +198,7 @@ class GtkInstallProgressAdapter(InstallProgress): def conffile(self, current, new): logging.debug("got a conffile-prompt from dpkg for file: '%s'" % current) + start = time.time() #self.expander.set_expanded(True) prim = _("Replace the customized configuration file\n'%s'?") % current sec = _("You will lose any changes you have made to this " @@ -216,6 +217,7 @@ class GtkInstallProgressAdapter(InstallProgress): self.parent.textview_conffile.get_buffer().set_text(_("The 'diff' command was not found")) res = self.parent.dialog_conffile.run() self.parent.dialog_conffile.hide() + self.time_ui += time.time() - start # if replace, send this to the terminal if res == gtk.RESPONSE_YES: self.term.feed_child("y\n") @@ -242,9 +244,11 @@ class GtkInstallProgressAdapter(InstallProgress): self.last_activity = time.time() self.activity_timeout_reported = False delta = self.last_activity - self.start_time + # time wasted in conffile questions (or other ui activity) + delta -= self.time_ui time_per_percent = (float(delta)/percent) eta = (100.0 - self.percent) * time_per_percent - # only show if we have some sensible data + # only show if we have some sensible data (60sec < eta < 2days) if eta > 61.0 and eta < (60*60*24*2): self.progress.set_text(_("About %s remaining") % FuzzyTimeToStr(eta)) else: @@ -588,11 +592,11 @@ if __name__ == "__main__": fp = GtkFetchProgressAdapter(view) ip = GtkInstallProgressAdapter(view) - cache = apt.Cache() for pkg in sys.argv[1:]: cache[pkg].markInstall() cache.commit(fp,ip) + sys.exit(0) #sys.exit(0) ip.conffile("TODO","TODO~") diff --git a/po/am.po b/po/am.po index 7bb6aaf2..86dfd3b5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-06-11 10:15+0000\n" "Last-Translator: Habte \n" "Language-Team: Amharic \n" @@ -156,7 +156,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -924,11 +924,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/ar.po b/po/ar.po index c38adbbd..a5b1cddc 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-08-05 12:39+0000\n" "Last-Translator: Saleh Odeh \n" "Language-Team: Arabic \n" @@ -156,7 +156,7 @@ msgstr "" "هذا النظام يحتوي على رزم مكسورة لا يمكن إصلاحها من هذا البرنامج, الرجاء " "العمل على إصلاحها أولا بواسطة apt-get أو synaptic قبل الإستمرار" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 #, fuzzy msgid "Can't upgrade required meta-packages" msgstr "لا يمكن تحديث الرزم العليا المطلوبة" @@ -954,11 +954,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "فهرس البرامج تالف" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/be.po b/po/be.po index d53002d6..0f693ff0 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-07-06 06:10+0000\n" "Last-Translator: Alexander Nyakhaychyk \n" "Language-Team: Belarusian \n" @@ -157,7 +157,7 @@ msgstr "" "выправіць у гэтай праграме. Калі ласка, спачатку выпраўце іх з дапамогай " "synaptic ці apt-get перш чым працягваць." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Немагчыма абнавіць неабходныя мэтапакеты" @@ -958,11 +958,11 @@ msgid "New distribution release '%s' is available" msgstr "Маецца ў наяўнасьці новая рэдакцыя \"%s\" дыстрыбутыву" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Пашкоджаны індэкс праграм" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/bg.po b/po/bg.po index d630f54b..8ca2c38c 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:41+0000\n" "Last-Translator: Nikola Kasabov \n" "Language-Team: Bulgarian \n" @@ -163,7 +163,7 @@ msgstr "" "този софтуер. Моля, поправете ги със synaptic или apt-get преди да " "продължите!" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Не може да бъдат надградени изисквани мета-пакети" @@ -1033,11 +1033,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Индексът на софтуера е повреден" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/bn.po b/po/bn.po index e2eec2cf..edb3c9f2 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:37+0000\n" "Last-Translator: Khandakar Mujahidul Islam \n" "Language-Team: Bengali \n" @@ -156,7 +156,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "দরকারী meta-packages আপগ্রেড করতে পারে নি" @@ -964,11 +964,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "সফ্টওয়্যার ইন্ডেক্সটি নস্ট" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/br.po b/po/br.po index cda3200d..daab1fb3 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-05-19 02:42+0000\n" "Last-Translator: Oublieuse \n" "Language-Team: Breton \n" @@ -156,7 +156,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -924,11 +924,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/ca.po b/po/ca.po index 0ce2d339..e92100ae 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:41+0000\n" "Last-Translator: Jordi Irazuzta \n" "Language-Team: Catalan \n" @@ -163,7 +163,7 @@ msgstr "" "El vostre sistema conté paquets trencats que no es poden arreglar amb " "aquesta aplicació. Utilitzeu el Synaptic o apt-get abans de continuar." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 #, fuzzy msgid "Can't upgrade required meta-packages" msgstr "No s'han pogut actualitzar els metapaquets sol·licitats" @@ -1010,11 +1010,11 @@ msgid "New distribution release '%s' is available" msgstr "Ja disposeu de la nova distribució '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "L'índex de programari s'ha trencat" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/cs.po b/po/cs.po index 43bb25e7..b2d57499 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:41+0000\n" "Last-Translator: Tomáš Hála \n" "Language-Team: Czech \n" @@ -160,7 +160,7 @@ msgstr "" "opraveny. Před pokračováním je prosím opravte použitím programu synaptic " "nebo apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Nemohu aktualizovat požadované meta-balíky" @@ -1054,11 +1054,11 @@ msgid "New distribution release '%s' is available" msgstr "Nové vydání distribuce '%s' je k dispozici" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Seznam softwaru je poškozen" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/da.po b/po/da.po index ee6d9106..1d1b4a93 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:41+0000\n" "Last-Translator: Mathias-K \n" "Language-Team: Danish \n" @@ -158,7 +158,7 @@ msgstr "" "Dit system indeholder ødelagte pakker som ikke kunne repareres med dette " "program. Reparér dem venligst med synaptic eller apt-get, før du fortsætter." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Kan ikke opgradere de krævede metapakker" @@ -1039,11 +1039,11 @@ msgid "New distribution release '%s' is available" msgstr "Ny distributionsudgivelse \"%s\" er tilgængelig" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Softwareindekset er ødelagt" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/de.po b/po/de.po index 94bfb9aa..66fd6195 100644 --- a/po/de.po +++ b/po/de.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:37+0000\n" "Last-Translator: Sebastian Heinlein \n" "Language-Team: German GNOME Translations \n" @@ -164,7 +164,7 @@ msgstr "" "werden können. Bitte reparieren Sie diese mit Synaptic oder apt-get, bevor " "Sie fortfahren." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Die erforderlichen Metapakete können nicht aktualisiert werden" @@ -1065,11 +1065,11 @@ msgid "New distribution release '%s' is available" msgstr "Neue Version '%s' der Distribution ist freigegeben" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Der Software-Index ist beschädigt" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/el.po b/po/el.po index 152bc4a7..bd4c7c91 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:37+0000\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" @@ -161,7 +161,7 @@ msgstr "" "διορθωθούν με αυτό το λογισμικό. Παρακαλώ διορθώστε τα μέσω synaptic ή apt-" "get για να συνεχίσετε." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Αδυναμία αναβάθμισης απαιτούμενων μετα-πακέτων" @@ -1050,11 +1050,11 @@ msgid "New distribution release '%s' is available" msgstr "Είναι διαθέσιμη νέα έκδοση διανομής '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Ο κατάλογος λογισμικού είναι κατεστραμμένος" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/en_AU.po b/po/en_AU.po index f3bc426b..a4122117 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-09-11 09:53+0000\n" "Last-Translator: David Satchell \n" "Language-Team: English (Australia) \n" @@ -155,7 +155,7 @@ msgstr "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Can't upgrade required meta-packages" @@ -994,11 +994,11 @@ msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Software index is broken" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/en_CA.po b/po/en_CA.po index 11810e63..85c1ba9d 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:42+0000\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" @@ -157,7 +157,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -958,11 +958,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/en_GB.po b/po/en_GB.po index e35595ad..7c3c08e1 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-06 04:33+0000\n" "Last-Translator: Jeff Bailes \n" "Language-Team: \n" @@ -157,7 +157,7 @@ msgstr "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Can't upgrade required meta-packages" @@ -1029,11 +1029,11 @@ msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Software index is broken" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/eo.po b/po/eo.po index 5e05fe52..5bc93b67 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-07-24 21:11+0000\n" "Last-Translator: Ed Glez \n" "Language-Team: Esperanto \n" @@ -154,7 +154,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -937,11 +937,11 @@ msgid "New distribution release '%s' is available" msgstr "Nova distribua eldono '%s' estas disponebla" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/es.po b/po/es.po index 84169464..746fbaa7 100644 --- a/po/es.po +++ b/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 21:00+0000\n" "Last-Translator: Ricardo Pérez López \n" "Language-Team: Spanish \n" @@ -164,7 +164,7 @@ msgstr "" "software. Por favor, arréglelos primero usando Synaptic o apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "No se han podido actualizar los meta-paquetes requeridos" @@ -1051,11 +1051,11 @@ msgid "New distribution release '%s' is available" msgstr "Está disponible la nueva versión «%s» de la distribución" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "El índice de software está dañado" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/et.po b/po/et.po index 42f76dd0..3feaf17f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-06-10 17:42+0000\n" "Last-Translator: margus723 \n" "Language-Team: Estonian \n" @@ -155,7 +155,7 @@ msgstr "" "parandada. Palun paranda need kasutades rakendust \"synaptic\" või \"apt-get" "\" enne jätkamist." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Ei suuda uuendada nõutud metapakette" @@ -928,11 +928,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/eu.po b/po/eu.po index 3b20b887..0a434468 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-08-08 23:53+0000\n" "Last-Translator: Xabi Ezpeleta \n" "Language-Team: Basque \n" @@ -164,7 +164,7 @@ msgstr "" "Zure sistemak hautsitako paketeak ditu eta ezin izan dira konpondu aplikazio " "honekin. Konpon itzazu lehenbait lehen snaptic edo apt-get erabiliz." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 #, fuzzy msgid "Can't upgrade required meta-packages" msgstr "Ezin izan dira berritu beharrezko meta-paketeak" @@ -936,11 +936,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/fa.po b/po/fa.po index 89d56969..838bf5ef 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-06-08 13:47+0000\n" "Last-Translator: Pedram Ganjeh Hadidi \n" @@ -153,7 +153,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -917,11 +917,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/fi.po b/po/fi.po index a4844337..7e1cb3cc 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-06 07:42+0000\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" @@ -160,7 +160,7 @@ msgstr "" "ohjelmalla. Korjaa ne käyttämällä synapticia tai apt-get -komentoa ennen " "jatkamista." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Tarvittavia metapaketteja ei voi päivittää" @@ -1033,11 +1033,11 @@ msgid "New distribution release '%s' is available" msgstr "Uusi jakelujulkaisu \"%s\" on saatavilla" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Ohjelmaluettelo on rikkinäinen" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/fr.po b/po/fr.po index 8603e1f8..d6a281bd 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-06 17:26+0000\n" "Last-Translator: E.Malandain \n" "Language-Team: French \n" @@ -162,7 +162,7 @@ msgstr "" "ce logiciel. Veuillez d'abord les réparer à l'aide de Synaptic ou d'apt-get " "avant de continuer." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Les meta-paquets désirés n'ont pu être mis à jour" @@ -1050,11 +1050,11 @@ msgid "New distribution release '%s' is available" msgstr "Une nouvelle version « %s » est disponible" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "La liste des logiciels est corrompue" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/fur.po b/po/fur.po index fbf9b393..e06a067b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-08-25 05:55+0000\n" "Last-Translator: Marco \n" "Language-Team: Friulian \n" @@ -152,7 +152,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -920,11 +920,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/gl.po b/po/gl.po index 6e2f5b3b..8c3220fb 100644 --- a/po/gl.po +++ b/po/gl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-09-25 21:24+0000\n" "Last-Translator: Xosé \n" "Language-Team: galician\n" @@ -164,7 +164,7 @@ msgstr "" "software. Por favor, arránxeos primeiro usando Synaptic ou apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Non se puideron actualizar os meta-paquetes necesarios" @@ -1027,11 +1027,11 @@ msgid "New distribution release '%s' is available" msgstr "Está dispoñible a nova versión '%s' da distribución" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "O índice de software está danado" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/he.po b/po/he.po index 3199ed27..7ff0ef36 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-09-30 14:09+0000\n" "Last-Translator: Yaniv Abir \n" "Language-Team: Hebrew \n" @@ -161,7 +161,7 @@ msgstr "" "במערכת שלך נמצאות חבילות פגומות שתוכנה זו לא יכולה לתקן. אנא תקן אותן " "באמצעות synaptic או apt-get לפני שתמשיך." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "לא ניתן לשדרג את חבילות העל הנדרשות" @@ -971,11 +971,11 @@ msgid "New distribution release '%s' is available" msgstr "גירסה חדשה של ההפצה, \"%s\", זמינה" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "אינדקס התוכנות פגום" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/hi.po b/po/hi.po index a23f976b..e89e13d6 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-08-01 15:30+0000\n" "Last-Translator: Gaurav Mishra \n" "Language-Team: Hindi \n" @@ -152,7 +152,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -920,11 +920,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/hr.po b/po/hr.po index 154fd296..14bfbb53 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:38+0000\n" "Last-Translator: Ante Karamatić \n" "Language-Team: Croatian \n" @@ -159,7 +159,7 @@ msgstr "" "Vaš sistem sadrži pokvarene pakete koji nisu mogli biti popravljeni sa ovim " "programom. Popravite ih koristeći synaptic ili apt-get prije nastavljanja." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Ne mogu nadograditi potrebne meta-pakete" @@ -1047,11 +1047,11 @@ msgid "New distribution release '%s' is available" msgstr "Novo izdanje distribucije, '%s', je dostupno" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Popis programa je oštećen" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/hu.po b/po/hu.po index 2e1c6b18..8512995a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-06 10:07+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -159,7 +159,7 @@ msgstr "" "javíthatóak. Kérem, először javítsa ki őket a synaptic vagy az apt-get " "segítségével." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "A szükséges meta-csomagok nem frissíthetőek" @@ -1042,11 +1042,11 @@ msgid "New distribution release '%s' is available" msgstr "A disztribúció új \"%s\" kiadása elérhető" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "A szoftverindex sérült" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/id.po b/po/id.po index 210d7c10..961425bc 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:38+0000\n" "Last-Translator: Andy Apdhani \n" "Language-Team: Indonesian \n" @@ -160,7 +160,7 @@ msgstr "" "perangkat lunak ini. Silakan perbaiki terlebih dahulu dengan menggunakan " "synaptic atau apt-get sebelum melanjutkan hal ini." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Tidak dapat memutakhirkan meta-paket yang dibutuhkan" @@ -1030,11 +1030,11 @@ msgid "New distribution release '%s' is available" msgstr "Luncuran distribusi baru '%s' telah tersedia" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Indeks perangkat lunak telah rusak" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/it.po b/po/it.po index 90005ae0..fa0b41c3 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-06 12:46+0000\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" @@ -163,7 +163,7 @@ msgstr "" "con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-get" "\" per risolvere il problema." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Impossibile aggiornare i meta-pacchetti richiesti" @@ -1050,11 +1050,11 @@ msgid "New distribution release '%s' is available" msgstr "È disponibile il nuovo rilascio «%s» della distribuzione" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "L'indice del software è danneggiato" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/ja.po b/po/ja.po index bbd32963..bf52e0d3 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:39+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: Ubuntu Japanese Team \n" @@ -162,7 +162,7 @@ msgstr "" "システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれていま" "す。 Synaptic や apt-get を使って最初に修正してください。" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "要求されたメタパッケージがアップグレードできません" @@ -1021,11 +1021,11 @@ msgid "New distribution release '%s' is available" msgstr "新しいディストリビューション '%s' にアップグレードできます" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "ソフトウェアのインデックスが壊れています" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/ka.po b/po/ka.po index 53b668c7..a6abf913 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:39+0000\n" "Last-Translator: Vladimer Sichinava \n" "Language-Team: Georgian \n" @@ -164,7 +164,7 @@ msgstr "" "პროგრამით. ჯერ გამართეთ გაფუჭებული პაკეტები synaptic ან apt-get პროგრამით და " "შემდეგ გააგრძელეთ." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "საჭჳრო მეტა-პაკეტების განახლება ვერ მოხერხდა" @@ -1000,11 +1000,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "პროგრამების სიის ინდექსი დაზიანებულია" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 #, fuzzy msgid "" "It is impossible to install or remove any software. Please use the package " diff --git a/po/ko.po b/po/ko.po index 2ee4468a..10df3e74 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-06 11:33+0000\n" "Last-Translator: Eungkyu Song \n" "Language-Team: Korean \n" @@ -156,7 +156,7 @@ msgstr "" "이 소프트웨어로 고칠 수 없는 망가진 패키지가 있습니다. 진행하기 전에 먼저 시" "냅틱이나 apt-get을 사용하여 복구하십시오." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "요청한 메타 패키지를 업그레이드 할 수 없습니다" @@ -1006,11 +1006,11 @@ msgid "New distribution release '%s' is available" msgstr "새 배포판 '%s'을(를) 설치할 수 있습니다" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "소프트웨어 목록이 망가졌습니다." -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/ku.po b/po/ku.po index 6f6e1835..54e03ec6 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-04 06:52+0000\n" "Last-Translator: ElîxanLoran \n" "Language-Team: Kurdish \n" @@ -162,7 +162,7 @@ msgstr "" "dihewîne. Berî ku tu berdewam bikî ji kerema xwe re van bernameyan bi " "synaptic an jî i apt-get sererast bikî" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Pakêtên agahiyan yên pêwist nayên rojanekirin" @@ -1019,11 +1019,11 @@ msgid "New distribution release '%s' is available" msgstr "Weşana belavkariya nû dikare bigihêje '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Pêrista nivîsbariyê xera bûye" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/lt.po b/po/lt.po index 4ba906c9..d1e1d4d6 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:39+0000\n" "Last-Translator: Mantas Kriaučiūnas \n" "Language-Team: Lithuanian \n" @@ -160,7 +160,7 @@ msgstr "" "programa. Prieš tęsdami pirmiausia sutaisykite juos naudodamiesi „synaptic“ " "arba „apt-get“." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Negalima atnaujinti reikiamų metapaketų" @@ -1026,11 +1026,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Programinės įrangos turinys sugadintas" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/lv.po b/po/lv.po index 5b5b8394..71224185 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 19:12+0000\n" "Last-Translator: mixat \n" "Language-Team: Latvian \n" @@ -155,7 +155,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -927,11 +927,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/mk.po b/po/mk.po index f9f85504..c7faea21 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:39+0000\n" "Last-Translator: Арангел Ангов \n" "Language-Team: Macedonian \n" @@ -161,7 +161,7 @@ msgstr "" "Вашиот систем содржи оштетени пакети кои не може да се поправат со овој " "софтвер. Ве молам поправете ги со Синаптик или apt-get пред да продолжите." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Не може да се надградат потребните мета пакети" @@ -1012,11 +1012,11 @@ msgid "New distribution release '%s' is available" msgstr "Новото издание на дистрибуцијата, '%s', е достапно" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Индексот на софтвер е расипан" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/ms.po b/po/ms.po index 71e50743..b6e8ea95 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: azlinux \n" "Language-Team: Malay \n" @@ -161,7 +161,7 @@ msgstr "" "menggunakan sofwer ini. Sila baiki dahulu menggunakan synaptic atau apt-get " "sebelum meneruskan." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Tidak dapat menaikkan taraf pakej-meta yang diperlukan" @@ -984,11 +984,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/nb.po b/po/nb.po index 9d1ae679..ffbc5c39 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: Hans Petter Birkeland \n" "Language-Team: Norwegian Bokmal \n" @@ -166,7 +166,7 @@ msgstr "" "av dette programmet. Vennligst rett opp i dette ved å bruke Synaptic eller " "apt-get før du fortsetter." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Kan ikke oppgradere nødvendige meta-pakker" @@ -1044,11 +1044,11 @@ msgid "New distribution release '%s' is available" msgstr "Ny versjon \"%s\" er tilgjengelig" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Programvareoversikten er ødelagt." -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/ne.po b/po/ne.po index 57911ef0..2208de09 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: Jaydeep Bhusal \n" "Language-Team: Nepali \n" @@ -157,7 +157,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -950,11 +950,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/nl.po b/po/nl.po index 056cadef..412ea2ae 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: Tino Meinen \n" "Language-Team: Nederlands \n" @@ -164,7 +164,7 @@ msgstr "" "met deze software. Repareer deze eerst met synaptic of apt-get voordat u " "verder gaat." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Kan de vereiste meta-pakketten niet upgraden" @@ -1055,11 +1055,11 @@ msgid "New distribution release '%s' is available" msgstr "De nieuwe Ubuntu-versie '%s' is beschikbaar" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Software-index is beschadigd" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/nn.po b/po/nn.po index b9646447..ad52df59 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-06-19 15:52+0000\n" "Last-Translator: Willy André Bergstrøm \n" "Language-Team: Norwegian Nynorsk \n" @@ -158,7 +158,7 @@ msgstr "" "Systemet ditt inneheld øydelagde pakkar som ikkje kunne reparerast med denne " "programvaren. Reparer dei med synaptic eller apt-get før du held fram." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Kan ikkje oppgradere naudsynte meta-pakkar" @@ -947,11 +947,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/no.po b/po/no.po index 78f578db..2bbaac2b 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2005-06-08 23:10+0200\n" "Last-Translator: Terance Edward Sola \n" "Language-Team: Norwegian Bokmal \n" @@ -157,7 +157,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -955,11 +955,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/oc.po b/po/oc.po index 19b234ac..d09ca31f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-09-30 00:43+0000\n" "Last-Translator: Yannig MARCHEGAY (Kokoyaya) \n" @@ -159,7 +159,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -936,11 +936,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/pa.po b/po/pa.po index 7b3574df..25960a09 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:43+0000\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -154,7 +154,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -934,11 +934,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/pl.po b/po/pl.po index cbd79878..f438b3ec 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-09-02 19:44+0000\n" "Last-Translator: White Eagle \n" "Language-Team: Polish \n" @@ -158,7 +158,7 @@ msgstr "" "kontynuowaniem należy je naprawić używając Synaptic Menedżer Pakietów lub " "apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Nie można zaktualizować wymaganych meta-pakietów" @@ -1018,11 +1018,11 @@ msgid "New distribution release '%s' is available" msgstr "Nowe wydanie dystrybucji \"%s\" jest dostępne" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Spis oprogramowania jest uszkodzony" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/pt.po b/po/pt.po index 227583eb..b58467c3 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-06 18:27+0000\n" "Last-Translator: Susana \n" "Language-Team: Ubuntu Portuguese Team \n" @@ -159,7 +159,7 @@ msgstr "" "este software. Por favor corrija-os usando o synaptic ou apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Não foi possível actualizar os meta-pacotes necessários" @@ -1039,11 +1039,11 @@ msgid "New distribution release '%s' is available" msgstr "Está disponível a nova versão '%s' da distribuição" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "O índice de software está quebrado" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/pt_BR.po b/po/pt_BR.po index def6479d..a6f8f269 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-02 11:49+0000\n" "Last-Translator: Andre Noel \n" "Language-Team: Ubuntu-BR \n" @@ -161,7 +161,7 @@ msgstr "" "este programa. Por favor, corrija-os primeiro utilizando o Synaptic ou apt-" "get antes de continuar." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Não foi possível atualizar os meta-pacotes requeridos" @@ -1026,11 +1026,11 @@ msgid "New distribution release '%s' is available" msgstr "Uma nova versão da distribuição '%s' está disponível" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "O index do software está quebrado" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/qu.po b/po/qu.po index d8a39c96..78b14d30 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: Quechua \n" @@ -152,7 +152,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -920,11 +920,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/ro.po b/po/ro.po index e11b90cb..5bde5c14 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:40+0000\n" "Last-Translator: Sami POTIRCA \n" "Language-Team: Romanian \n" @@ -161,7 +161,7 @@ msgstr "" "reparate cu acest program. Înainte de a continua vă rugăm să le remediaţi " "utilizând synaptic sau apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Este imposibilă actualizarea meta-pachetelor cerute" @@ -1024,11 +1024,11 @@ msgid "New distribution release '%s' is available" msgstr "Noua versiune '%s' este disponibilă" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Indexul software este deteriorat" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/ru.po b/po/ru.po index 8274052c..a5b5e36a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-03 02:07+0000\n" "Last-Translator: Igor Zubarev \n" "Language-Team: Russian \n" @@ -160,7 +160,7 @@ msgstr "" "данной программой. Пожалуйста, исправьте их, используя synaptic или apt-get, " "прежде чем продолжить." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Невозможно обновить требуемые мета-пакеты" @@ -1022,11 +1022,11 @@ msgid "New distribution release '%s' is available" msgstr "Доступен новый релиз дистрибутива '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Индекс программ поврежден" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/rw.po b/po/rw.po index 4d7d8978..506ca601 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:43+0000\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" @@ -165,7 +165,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -956,11 +956,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/sk.po b/po/sk.po index 34c34f09..50335ccb 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:43+0000\n" "Last-Translator: Peter Chabada \n" "Language-Team: Slovak \n" @@ -160,7 +160,7 @@ msgstr "" "Váš systém obsahuje poškodené balíky, ktoré nemôžu byť týmto programom " "opravené. Pred pokračovaním ich opravte programom synaptic alebo apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Nemôžem aktualizovať požadované meta-balíky" @@ -1036,11 +1036,11 @@ msgid "New distribution release '%s' is available" msgstr "K dispozícii je nové vydanie distribúcie '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Index softvéru je poškodený" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/sl.po b/po/sl.po index a5582fbc..34f6b509 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-08-01 13:08+0000\n" "Last-Translator: Tadej \n" "Language-Team: Slovenian \n" @@ -159,7 +159,7 @@ msgstr "" "Prosim, da popravite te pakete z uporabo synaptic ali apt-get, preden " "nadaljujete." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Ne morem nadgraditi zahtevanih meta-paketov" @@ -962,11 +962,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/sq.po b/po/sq.po index 10e0f7bb..e362c418 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-09-30 21:20+0000\n" "Last-Translator: Alejdin Tirolli \n" "Language-Team: Albanian \n" @@ -162,7 +162,7 @@ msgstr "" "softuer.Ju lutemi riparoni këtë me Synaptic ose apt-get, para se të shkoni " "përpara." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Metapaketat e nevojshme nuk mund të aktualizohen." @@ -942,11 +942,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/sr.po b/po/sr.po index d433222d..7de46d87 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-06-01 10:04+0000\n" "Last-Translator: Vladimir Samardzic \n" "Language-Team: Serbian \n" @@ -165,7 +165,7 @@ msgstr "" "софтвером. Молим вас прво њих поправите користећи synaptic или apt-get прије " "него што наставите." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -947,11 +947,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/sv.po b/po/sv.po index 61bc47ff..3630e8d5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-06 03:32+0000\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -160,7 +160,7 @@ msgstr "" "programmet. Reparera dem först med synaptic eller apt-get innan du " "fortsätter." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Kan inte uppdatera de obligatoriska meta-paketen" @@ -1039,11 +1039,11 @@ msgid "New distribution release '%s' is available" msgstr "Ny distributionsutgåva \"%s\" finns tillgänglig" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Programindexet är trasigt" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/ta.po b/po/ta.po index 5766fa79..25ea2785 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-08-04 02:52+0000\n" "Last-Translator: Raghavan \n" "Language-Team: Tamil \n" @@ -152,7 +152,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -926,11 +926,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/th.po b/po/th.po index 17a80581..2b9c2bae 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:44+0000\n" "Last-Translator: Roys Hengwatanakul \n" "Language-Team: Thai \n" @@ -156,7 +156,7 @@ msgstr "" "ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ กรุณาซ่อมโดยใช้โปรแกรม synaptic " "หรือ apt-get ก่อนดำเนินการต่อไป" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "ไม่สามารถปรับปรุง meta แพกเกจที่ต้องการได้" @@ -992,11 +992,11 @@ msgid "New distribution release '%s' is available" msgstr "มีชุดแจกจ่ายใหม่ '%s' " #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "ดัชนีของซอฟแวร์เสียหาย" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/tr.po b/po/tr.po index 7eb08d54..495e1825 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-09-27 21:59+0000\n" "Last-Translator: Kayra Akman \n" "Language-Team: Turkish \n" @@ -157,7 +157,7 @@ msgstr "" "Sisteminiz bu yazılım ile düzeltilemeyen bozuk paketler içeriyor. Devam " "etmeden önce lütfen bunları synaptic veya apt-get kullanarak düzeltin." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Gerekli bilgi-paketleri güncelleştirilemiyor" @@ -1010,11 +1010,11 @@ msgid "New distribution release '%s' is available" msgstr "Yeni dağıtım yayını '%s' ulaşılabilir" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Yazılım dizini bozulmuş" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/uk.po b/po/uk.po index 6c21a38d..1e85b1f9 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-08-20 22:36+0000\n" "Last-Translator: Vadim Abramchuck \n" "Language-Team: Ukrainian \n" @@ -155,7 +155,7 @@ msgstr "" "Ваша система містить пошкоджені пакунки, котрі не можуть бути виправлені " "цією програмою. Скористайтесь перш програмами synaptic чи apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Не можливо поновити необхідні meta-пакунки" @@ -956,11 +956,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/update-manager.pot b/po/update-manager.pot index 1e9dcf1b..67658f1b 100644 --- a/po/update-manager.pot +++ b/po/update-manager.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -152,7 +152,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -920,11 +920,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/ur.po b/po/ur.po index 4d127f41..12322795 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-05-19 02:46+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -153,7 +153,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -921,11 +921,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/urd.po b/po/urd.po index 978beca6..b0bbdbf0 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-05-07 01:53+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -153,7 +153,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -921,11 +921,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/vi.po b/po/vi.po index 50355c11..25886b33 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:45+0000\n" "Last-Translator: Tran The Trung \n" "Language-Team: Vietnamese \n" @@ -156,7 +156,7 @@ msgstr "" "Hệ thống của bạn chứa các gói tin bị lỗi và không thể sửa được bằng phần mềm " "này. Hãy sửa chúng dùng các gói synaptic hoặc apt-get trước khi tiếp tục." -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Không thể nâng cấp các gói gốc được yêu cầu" @@ -950,11 +950,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/xh.po b/po/xh.po index 8c711614..d18e6633 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:45+0000\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" @@ -153,7 +153,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -928,11 +928,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/zh_CN.po b/po/zh_CN.po index 26a20108..41d42065 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-10-05 20:36+0000\n" "Last-Translator: catinsnow \n" "Language-Team: zh_CN \n" @@ -156,7 +156,7 @@ msgstr "" "你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者" "apt-get修复它们。" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "不能升级要求的元包" @@ -985,11 +985,11 @@ msgid "New distribution release '%s' is available" msgstr "新发行版 '%s' 可用" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "软件索引已被破坏" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/zh_HK.po b/po/zh_HK.po index 50e902bc..a1cc8f61 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-06-16 01:18+0000\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (Hong Kong) \n" @@ -152,7 +152,7 @@ msgstr "" "系統裝了不完整的套件,本程式無法將它們修復。請先用 synaptic 或 apt-get 來修復" "套件。" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "" @@ -920,11 +920,11 @@ msgid "New distribution release '%s' is available" msgstr "" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " diff --git a/po/zh_TW.po b/po/zh_TW.po index 203074cd..2ae0134e 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-06 23:18+0200\n" +"POT-Creation-Date: 2006-10-10 18:58+0200\n" "PO-Revision-Date: 2006-09-14 07:29+0000\n" "Last-Translator: SOC Ho \n" "Language-Team: Chinese (Taiwan) \n" @@ -148,7 +148,7 @@ msgstr "" "您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 " "synaptic 或 apt-get 來修恢它們。" -#: ../DistUpgrade/DistUpgradeCache.py:207 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "無法升級須要的元套件 (meta-package)" @@ -938,11 +938,11 @@ msgid "New distribution release '%s' is available" msgstr "有新的 distribution 發行版 '%s'" #. we assert a clean cache -#: ../UpdateManager/UpdateManager.py:898 +#: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "軟體索引損壞" -#: ../UpdateManager/UpdateManager.py:899 +#: ../UpdateManager/UpdateManager.py:903 msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " -- cgit v1.2.3 From 3b322f37caa66b7fce40061e70273eb75248ffed Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 11 Oct 2006 18:56:43 +0200 Subject: * debian/control: - add python-gconf dependency / remove python-gnome2 dependency * DistUpgrade/DistUpgradeViewGtk.py: - run while gtk_events_pending()/gtk_main_iteration() after information() --- DistUpgrade/DistUpgradeViewGtk.py | 2 ++ debian/changelog | 8 ++++++++ debian/control | 3 +-- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index 11b3e041..3dcfb7ed 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -458,6 +458,8 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): self.dialog_information.window.set_functions(gtk.gdk.FUNC_MOVE) self.dialog_information.run() self.dialog_information.hide() + while gtk.events_pending(): + gtk.main_iteration() def error(self, summary, msg, extended_msg=None): self.dialog_error.set_transient_for(self.window_main) diff --git a/debian/changelog b/debian/changelog index 4f9c7dd0..fc133de0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +update-manager (0.45) edgy; urgency=low + + * debian/control: + - added dependency on python-gconf + - removed recommends on python-gnome2 + + -- Michael Vogt Wed, 11 Oct 2006 18:32:17 +0200 + update-manager (0.44.17) edgy; urgency=low * memory leak fixed (lp: #43096) diff --git a/debian/control b/debian/control index 7ed4c7a5..0702fa9e 100644 --- a/debian/control +++ b/debian/control @@ -7,8 +7,7 @@ Standards-Version: 3.6.2 Package: update-manager Architecture: all -Depends: ${python:Depends}, ${misc:Depends}, python, python-glade2, python-apt (>= 0.6.16.2), synaptic (>= 0.57.8), lsb-release, python-gnupginterface, unattended-upgrades, gksu, iso-codes, python-dbus, python-vte, gksu -Recommends: python-gnome2 +Depends: ${python:Depends}, ${misc:Depends}, python, python-glade2, python-apt (>= 0.6.16.2), synaptic (>= 0.57.8), lsb-release, python-gnupginterface, unattended-upgrades, gksu, iso-codes, python-dbus, python-vte, gksu, python-gconf Description: GNOME application that manages apt updates This is the GNOME apt update manager. It checks for updates and lets the user choose which to install. -- cgit v1.2.3 From 2ceb68d859ddc4f77db85d5f2348e615c33928d4 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 11 Oct 2006 20:45:01 +0200 Subject: * DistUpgrade/DistUpgradeViewGtk.py: - use prev_step instead of last_step to make more clear what it is all about - check if the gtk-icon-cache needs to be reloaded on each step --- DistUpgrade/DistUpgradeViewGtk.py | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index 3dcfb7ed..b2aff8dc 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -323,9 +323,10 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): gtk.window_set_default_icon(icons.load_icon("update-manager", 32, 0)) SimpleGladeApp.__init__(self, gladedir+"/DistUpgrade.glade", None, domain="update-manager") - self.last_step = 0 # keep a record of the latest step + self.prev_step = 0 # keep a record of the latest step # we dont use this currently #self.window_main.set_keep_above(True) + self.icontheme = gtk.icon_theme_get_default() self.window_main.realize() self.window_main.window.set_functions(gtk.gdk.FUNC_MOVE) self._opCacheProgress = GtkOpProgress(self.progressbar_cache) @@ -414,7 +415,7 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): label.hide() def abort(self): size = gtk.ICON_SIZE_MENU - step = self.last_step + step = self.prev_step if step > 0: image = getattr(self,"image_step%i" % step) arrow = getattr(self,"arrow_step%i" % step) @@ -422,18 +423,20 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): image.show() arrow.hide() def setStep(self, step): - # first update the "last" step as completed + if self.icontheme.rescan_if_needed(): + logging.debug("icon theme changed, re-reading") + # first update the "previous" step as completed size = gtk.ICON_SIZE_MENU attrlist=pango.AttrList() - if self.last_step: - image = getattr(self,"image_step%i" % self.last_step) - label = getattr(self,"label_step%i" % self.last_step) - arrow = getattr(self,"arrow_step%i" % self.last_step) + if self.prev_step: + image = getattr(self,"image_step%i" % self.prev_step) + label = getattr(self,"label_step%i" % self.prev_step) + arrow = getattr(self,"arrow_step%i" % self.prev_step) label.set_property("attributes",attrlist) image.set_from_stock(gtk.STOCK_APPLY, size) image.show() arrow.hide() - self.last_step = step + self.prev_step = step # show the an arrow for the current step and make the label bold image = getattr(self,"image_step%i" % step) label = getattr(self,"label_step%i" % step) -- cgit v1.2.3 From 830b5233ef8775cb39720fa1b1b48260fd27c9fd Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Wed, 11 Oct 2006 22:13:06 +0200 Subject: * DistUpgrade/DistUpgradeViewGtk.py: - keep a png pixbuf loader refernce around --- DistUpgrade/Changelog | 7 +++++++ DistUpgrade/DistUpgradeViewGtk.py | 5 +++++ 2 files changed, 12 insertions(+) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 77682ef0..d86f520f 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,10 @@ +2006-10-11: + - keep pixbuf loader reference around so that we + have one after the upgrade when the old + /usr/lib/gtk-2.0/loader/2.4.0/ loader is gone. + This fixes the problem of missing stock-icons + after the upgrade. Also revalidate the theme + in each step. 2006-10-10: - fix time calculation - fix kubuntu upgrade case diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index b2aff8dc..b176e8f0 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -327,6 +327,11 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): # we dont use this currently #self.window_main.set_keep_above(True) self.icontheme = gtk.icon_theme_get_default() + # we keep a reference pngloader around so that its in memory + # -> this avoid the issue that during the dapper->edgy upgrade + # the loaders move from /usr/lib/gtk/2.4.0/loaders to 2.10.0 + self.pngloader = gtk.gdk.PixbufLoader("png") + self.window_main.realize() self.window_main.window.set_functions(gtk.gdk.FUNC_MOVE) self._opCacheProgress = GtkOpProgress(self.progressbar_cache) -- cgit v1.2.3 From d1b8c72ce90713b807bc231b949494e19867b789 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 12 Oct 2006 11:18:07 +0200 Subject: * typo fix --- DistUpgrade/DistUpgradeCache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 2e21d05d..f6e6cad8 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -349,7 +349,7 @@ class MyCache(apt.Cache): self.restore_snapshot() return False except (SystemError,KeyError),e: - loggging.warning("_tryMarkObsoleteForRemoval failed for '%s' (%s)" % (pkgname,e)) + logging.warning("_tryMarkObsoleteForRemoval failed for '%s' (%s)" % (pkgname,e)) self.restore_snapshot() return False return True -- cgit v1.2.3 From 70019d57e2877ea7c3847d13ffea4378d4a8e9ff Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 13 Oct 2006 18:48:59 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - check for existance of cdroms.list before making a backup --- DistUpgrade/Changelog | 2 ++ DistUpgrade/DistUpgradeControler.py | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index d86f520f..36d064d6 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,5 @@ +2006-10-12: + - check if cdrom.lst actually exists before copying it 2006-10-11: - keep pixbuf loader reference around so that we have one after the upgrade when the old diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 7b35f3c8..bd7f64c8 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -60,7 +60,8 @@ class AptCdrom(object): if backup_ext: cdromstate = os.path.join(apt_pkg.Config.FindDir("Dir::State"), apt_pkg.Config.Find("Dir::State::cdroms")) - shutil.copy(cdromstate, cdromstate+backup_ext) + if os.path.exists(cdromstate): + shutil.copy(cdromstate, cdromstate+backup_ext) # do the actual work apt_pkg.Config.Set("Acquire::cdrom::mount",self.cdrompath) apt_pkg.Config.Set("APT::CDROM::NoMount","true") -- cgit v1.2.3 From 5ba90da43968f23845a572f801025a88f344c7b5 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 13 Oct 2006 19:12:33 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - log held-back too --- DistUpgrade/DistUpgradeControler.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index bd7f64c8..f91606f8 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -320,13 +320,17 @@ class DistUpgradeControler(object): inst = [] up = [] rm = [] + held = [] for pkg in self.cache: if pkg.markedInstall: inst.append(pkg.name) elif pkg.markedUpgrade: up.append(pkg.name) elif pkg.markedDelete: rm.append(pkg.name) + elif (pkg.isInstalled and pkg.isUpgradable): held.append(pkg.name) + logging.debug("Held-back: %s" % " ".join(held)) logging.debug("Remove: %s" % " ".join(rm)) logging.debug("Install: %s" % " ".join(inst)) logging.debug("Upgrade: %s" % " ".join(up)) + def doPreUpgrade(self): # FIXME: check out what packages are downloadable etc to -- cgit v1.2.3 From a8d0e42d7bfc302dcd09c41a353b916687a7537c Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 13 Oct 2006 19:13:44 +0200 Subject: * logfile update --- DistUpgrade/Changelog | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 36d064d6..94da18d3 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,5 @@ +2006-10-13: + - log held-back as well 2006-10-12: - check if cdrom.lst actually exists before copying it 2006-10-11: -- cgit v1.2.3 From aa9516dc024de03167135566cd87449e37b62535 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 16 Oct 2006 19:56:05 +0200 Subject: * DistUpgrade/DistUpgrade.cfg: - add ubuntu-standard to the base packages * DistUpgrade/removal_blacklist.cfg: - ubuntu-base is save to remove - ubuntu-minimial and ubuntu-standard shouldn't be removed --- DistUpgrade/Changelog | 4 ++++ DistUpgrade/DistUpgrade.cfg | 2 +- DistUpgrade/removal_blacklist.cfg | 3 ++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 94da18d3..d9176f0b 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,7 @@ +2006-10-16: + - backup cdroms.list only if actually available + - remove leftover references to ubuntu-base and + use ubuntu-minimal and ubuntu-standard instead 2006-10-13: - log held-back as well 2006-10-12: diff --git a/DistUpgrade/DistUpgrade.cfg b/DistUpgrade/DistUpgrade.cfg index f399a1f5..c39cb9e5 100644 --- a/DistUpgrade/DistUpgrade.cfg +++ b/DistUpgrade/DistUpgrade.cfg @@ -7,7 +7,7 @@ View=DistUpgradeViewGtk [Distro] # the meta-pkgs we support MetaPkgs=ubuntu-desktop, kubuntu-desktop, edubuntu-desktop, xubuntu-desktop -BaseMetaPkgs=ubuntu-minimal +BaseMetaPkgs=ubuntu-minimal, ubuntu-standard PostUpgradePurge=xorg-common, libgl1-mesa Demotions=demoted.cfg RemoveEssentialOk=sysvinit diff --git a/DistUpgrade/removal_blacklist.cfg b/DistUpgrade/removal_blacklist.cfg index 773395be..7bfb114b 100644 --- a/DistUpgrade/removal_blacklist.cfg +++ b/DistUpgrade/removal_blacklist.cfg @@ -1,5 +1,6 @@ # blacklist of packages that should never be removed -ubuntu-base +ubuntu-standard +ubuntu-minimal ubuntu-desktop kubuntu-destkop edubuntu-desktop -- cgit v1.2.3 From 9fd03707400fe89899915ff2cb823e237317de15 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 16 Oct 2006 20:13:31 +0200 Subject: * po/*: - updated from rosetta --- DistUpgrade/Changelog | 1 + po/am.po | 132 ++--- po/ar.po | 140 ++--- po/be.po | 139 ++--- po/bg.po | 246 +++------ po/bn.po | 209 +++---- po/br.po | 128 +---- po/ca.po | 236 +++----- po/cs.po | 613 +++++++++------------ po/csb.po | 1443 +++++++++++++++++++++++++++++++++++++++++++++++++ po/da.po | 217 +++----- po/de.po | 302 ++++------- po/el.po | 238 +++----- po/en_AU.po | 253 ++++----- po/en_CA.po | 213 +++----- po/en_GB.po | 199 +++---- po/eo.po | 131 ++--- po/es.po | 271 ++++------ po/et.po | 136 ++--- po/eu.po | 135 ++--- po/fa.po | 136 ++--- po/fi.po | 273 ++++------ po/fr.po | 254 ++++----- po/fur.po | 128 +---- po/gl.po | 342 ++++++------ po/he.po | 304 ++++------- po/hi.po | 128 +---- po/hr.po | 378 +++++-------- po/hu.po | 253 +++------ po/id.po | 197 +++---- po/it.po | 321 +++++------ po/ja.po | 600 ++++++++------------ po/ka.po | 286 +++++----- po/ko.po | 316 ++++------- po/ku.po | 239 +++----- po/lt.po | 328 +++++------ po/lv.po | 132 ++--- po/mk.po | 201 +++---- po/ms.po | 148 ++--- po/nb.po | 260 ++++----- po/ne.po | 253 ++++----- po/nl.po | 554 ++++++++----------- po/nn.po | 136 ++--- po/oc.po | 144 ++--- po/pa.po | 135 ++--- po/pl.po | 421 +++++++-------- po/pt.po | 243 +++------ po/pt_BR.po | 376 ++++++------- po/qu.po | 134 ++--- po/ro.po | 192 +++---- po/ru.po | 195 +++---- po/rw.po | 178 ++---- po/sk.po | 288 ++++------ po/sl.po | 139 ++--- po/sq.po | 132 ++--- po/sr.po | 141 ++--- po/sv.po | 514 ++++++++---------- po/ta.po | 133 ++--- po/th.po | 318 +++++------ po/tr.po | 161 ++---- po/uk.po | 203 +++---- po/ur.po | 128 +---- po/vi.po | 187 ++----- po/xh.po | 132 ++--- po/zh_CN.po | 217 +++----- po/zh_HK.po | 201 +++---- po/zh_TW.po | 262 ++++----- 67 files changed, 6876 insertions(+), 9847 deletions(-) create mode 100644 po/csb.po diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index d9176f0b..23a66450 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -2,6 +2,7 @@ - backup cdroms.list only if actually available - remove leftover references to ubuntu-base and use ubuntu-minimal and ubuntu-standard instead + - updated translations from rosetta 2006-10-13: - log held-back as well 2006-10-12: diff --git a/po/am.po b/po/am.po index 86dfd3b5..d979ff57 100644 --- a/po/am.po +++ b/po/am.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-06-11 10:15+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: Habte \n" "Language-Team: Amharic \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "ከአንድ ወር በሓላ" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -127,7 +124,8 @@ msgstr "ቁለፉን የማጥፋት ሰህተት" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "የመረጡትን ቁለፍ ማጥፋት አይቻልም፣ እባክዎን ይህንን ሰህተት ያመለከቱ" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -164,7 +162,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -177,7 +174,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -200,7 +196,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -260,7 +255,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -317,7 +311,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -380,7 +373,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -391,7 +383,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -442,7 +433,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -458,7 +448,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -470,7 +460,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -486,60 +475,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -547,39 +534,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -605,7 +591,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -625,11 +610,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -696,6 +680,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -731,7 +716,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -821,17 +805,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -844,7 +825,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -866,7 +846,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -901,7 +880,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -923,7 +901,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -935,23 +912,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1048,10 +1021,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1273,229 +1250,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/ar.po b/po/ar.po index a5b1cddc..e9d0bccc 100644 --- a/po/ar.po +++ b/po/ar.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-08-05 12:39+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Saleh Odeh \n" "Language-Team: Arabic \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "بعد شهر" msgid "After %s days" msgstr "بعد %s يوم" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +121,10 @@ msgstr "خطاء في ازالة المفتاح" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "The key you selected could not be removed. Please report this as a bug." -msgstr "إلمفتاح الذي إخترتة لا يمكن إزالتة, الرجاء التبليغ عن هذا كخطأ برمجي." +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" +"إلمفتاح الذي إخترتة لا يمكن إزالتة, الرجاء التبليغ عن هذا كخطأ برمجي." #: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format @@ -165,7 +164,6 @@ msgstr "لا يمكن تحديث الرزم العليا المطلوبة" msgid "A essential package would have to be removed" msgstr "سيكون من الضروري إزالة رزم مهمة" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 #, fuzzy msgid "Could not calculate the upgrade" @@ -179,7 +177,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "Error authenticating some packages" @@ -205,7 +202,6 @@ msgid "" msgstr "" "لم يكن بالإمكان تثبيت إحدى الرزم المطلوبة. الرجاء التبليغ عن هذا كخطأ برمجي. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -266,7 +262,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -326,7 +321,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "هل تريد البدء في عملية التحديث الان؟" @@ -396,7 +390,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -407,7 +400,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -459,9 +451,8 @@ msgstr "جاري عملية البحث عن البرامج الملغية" msgid "System upgrade is complete." msgstr "إنتهت عملية تحديث النظام." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 -#, fuzzy, python-format +#, fuzzy msgid "Please insert '%s' into the drive '%s'" msgstr "الرجاء ادراج '%s' في السوّاقة '%s'" @@ -475,7 +466,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -487,7 +478,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "جاري تطبيق التغييرات" @@ -503,40 +493,38 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "لم يمكن العثور على أمر 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 #, fuzzy msgid "A fatal error occured" msgstr "وقع خطأ شديد" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -544,7 +532,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -552,7 +540,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -560,7 +548,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -568,40 +556,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "لمنع فقدان المعلومات الرجاء إغلاق جميع البرامج و الوثائق المفتوحة." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "إن نظامك الآن محدث" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#, fuzzy msgid "Remove %s" msgstr "إزالة %s " -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "تثبيت %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "تحديث %s" @@ -627,7 +614,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -649,7 +635,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -722,6 +707,7 @@ msgid "_Keep" msgstr "_اترك" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_استبدل" @@ -758,7 +744,6 @@ msgstr "لم يمكن تنزيل ملاحظات الإصدار" msgid "Please check your internet connection." msgstr "الرجاء التأكد من إتصالك بالإنترنت" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "لم يكن ممكنا تشغيل أداة التحديث" @@ -850,17 +835,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -873,7 +855,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -895,9 +876,8 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 -#, fuzzy, python-format +#, fuzzy msgid "Download size: %s" msgstr "حجم التنزيل: %s" @@ -931,7 +911,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -953,7 +932,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "فهرس البرامج تالف" @@ -965,23 +943,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1081,10 +1055,15 @@ msgid "_Install Updates" msgstr "_ثبت التحديثات" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "ت_حديث" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1311,232 +1290,187 @@ msgstr "مساحة النافذة" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "مدعوم بشكل رسمي" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "حقوق نقل محدودة" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " +#~ msgstr " " \ No newline at end of file diff --git a/po/be.po b/po/be.po index 0f693ff0..4047be30 100644 --- a/po/be.po +++ b/po/be.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-07-06 06:10+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:05+0000\n" "Last-Translator: Alexander Nyakhaychyk \n" "Language-Team: Belarusian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,7 +56,6 @@ msgstr "Пасьля аднаго месяца" msgid "After %s days" msgstr "Пасьля %s дзён" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "Памылка выдаленьня ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Выбраны ключ ня можа быць выдалены. Калі ласка, дашліце баг-рэпорт аб гэтым." @@ -165,7 +163,6 @@ msgstr "Немагчыма абнавіць неабходныя мэтапак msgid "A essential package would have to be removed" msgstr "Трэба было-б выдаліць абавязковы пакет" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Немагчыма падлічыць абнаўленьне" @@ -178,7 +175,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Памылка аўтэнтыфікацыі некаторых пакетаў" @@ -206,7 +202,6 @@ msgstr "" "Немагчыма ўсталяваць патрэбны пакет. Калі ласка, паведаміце аб гэтай " "памылцы. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Немагчыма вызначыць мэта-пакет" @@ -266,7 +261,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Стварыць прадвызначаны сьпіс крыніц?" @@ -279,8 +273,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Пасьля агляду вашага файла \"sources.list\" не былі знойдзены запісы для \"%s" -"\".\n" +"Пасьля агляду вашага файла \"sources.list\" не былі знойдзены запісы для " +"\"%s\".\n" "\n" "Ці мусяць быць дададзены прадвызначаныя запісы для \"%s\"? Калі вы вылучыце " "\"Не\", абнаўленьне будзе скасавана." @@ -335,7 +329,6 @@ msgstr "" "на %s. Спусташыце Сьметніцу й выдаліце часовыя пакеты былых усталёвак з " "дапамогай загаду \"sudo apt-get clean\"." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Ці жадаеце пачаць абнаўленьне?" @@ -402,7 +395,6 @@ msgstr "" "Узьніклі нейкія памылкі ў час ачысткі. Калі ласка, паглядзіце зьмешчанае " "ніжэй паведамленьне. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -413,7 +405,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -464,7 +455,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -480,7 +470,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -492,7 +482,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Зьдзяйсьненьне зьменаў" @@ -508,39 +497,37 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Ня знойдзена праграма \"diff\"" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Узьнікла невыправімая памылка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -548,7 +535,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -556,7 +543,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -564,7 +551,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -572,39 +559,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Усталёўка %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Абнаўленьне %s" @@ -630,7 +616,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -652,7 +637,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -727,6 +711,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -762,7 +747,6 @@ msgstr "Немагчыма зпампаваць нататкі рэдакцыі" msgid "Please check your internet connection." msgstr "Калі ласка, праверце вашае далучэньне да інтэрнэту." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Немагчыма запусьціць сродак абнаўленьня" @@ -854,17 +838,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -877,7 +858,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -899,7 +879,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -935,7 +914,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -957,7 +935,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Маецца ў наяўнасьці новая рэдакцыя \"%s\" дыстрыбутыву" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Пашкоджаны індэкс праграм" @@ -969,23 +946,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1082,10 +1055,15 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "Абнаўленьне %s" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1307,229 +1285,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/bg.po b/po/bg.po index 8ca2c38c..af905a75 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:41+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:01+0000\n" "Last-Translator: Nikola Kasabov \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "След един месец" msgid "After %s days" msgstr "След %s дни" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -126,13 +123,14 @@ msgid "Error removing the key" msgstr "Грешка при премахване на ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Ключът, който избрахте не може да бъде премахнат. Докладвайте това като " "грешка." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -171,7 +169,6 @@ msgstr "Не може да бъдат надградени изисквани м msgid "A essential package would have to be removed" msgstr "Ще трябва да бъде премахнат важен пакет" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не може да бъде планирано надграждането" @@ -187,7 +184,6 @@ msgstr "" "Възникна непреодолим проблем при планиране на надграждането. Докладвайте " "това като грешка." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Грешка при удостоверяването автентичността на някои пакети" @@ -215,7 +211,6 @@ msgstr "" "Не можеше да бъде инсталиран нужен пакет. Моля, докладвайте това като " "грешка! " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не могат да бъдат предположени мета-пакети" @@ -288,7 +283,6 @@ msgstr "" "изберете \"Да\", всички записи \"%s \" ще бъдат актуализирани на \"%s\".\n" "Ако изберете \"Не\", актуализирането ще бъде отменено." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Генериране на източници по подразбиране?" @@ -301,8 +295,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"След преглеждане на Вашия \"sources.list\" не бе открит валиден запис за \"%s" -"\".\n" +"След преглеждане на Вашия \"sources.list\" не бе открит валиден запис за " +"\"%s\".\n" "\n" "Да бъдат ли добавени записи по подразбиране за \"%s\"? Ако изберете \"Не\", " "актуализацията ще бъде отменена." @@ -358,7 +352,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Желаете ли да започне надграждането?" @@ -428,7 +421,6 @@ msgstr "" "Имаше проблем при почистването. Моля, вижте съобщението по-долу за повече " "информация! " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Рестартиране на системата" @@ -439,7 +431,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -470,7 +461,7 @@ msgid "Invalid package information" msgstr "Невалидна информация за пакет" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy, python-format +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -498,7 +489,6 @@ msgstr "Търсене на остарял софтуер" msgid "System upgrade is complete." msgstr "Надграждането на системата завърши." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -510,24 +500,23 @@ msgid "Fetching is complete" msgstr "Актуализацията е завършена" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Сваляне на файл %li от %li при %s/сек" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Изтегляне на файл %li от общо %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Прилагане на промените" @@ -543,9 +532,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -553,59 +541,58 @@ msgstr "" "Замяна на конфигурационния файл\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Командата \"diff\" не бе намерена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Възникна фатална грешка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Моля, съобщете това като грешка и включете файловете \"/var/log/dist-upgrade." -"log\" и \"/var/log/dist-upgrade-apt.log\" във Вашия доклад. Надграждането " -"сега ще бъде прекратено.\n" -"Оригиналният \"sources.list\" was saved inбе съхранен в \"/etc/apt/sources." -"list.distUpgrade\"." +"Моля, съобщете това като грешка и включете файловете \"/var/log/dist-" +"upgrade.log\" и \"/var/log/dist-upgrade-apt.log\" във Вашия доклад. " +"Надграждането сега ще бъде прекратено.\n" +"Оригиналният \"sources.list\" was saved inбе съхранен в " +"\"/etc/apt/sources.list.distUpgrade\"." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Пакетът %s ще бъде премахнат." msgstr[1] "Пакетите %s ще бъдат премахнати." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s нов пакет ще бъде инсталиран." msgstr[1] "%s нови пакети ще бъдат инталирани." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s пакет ще бъде надграден." msgstr[1] "%s нови пакети ще бъдат надградени." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -615,7 +602,7 @@ msgstr "" "\n" "Трябва да изтеглите данни общо %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -624,35 +611,34 @@ msgstr "" "Надграждането може да отнеме няколко часа, като не може да бъде отменено по-" "нататък." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "За да предодвратите загуба на данни, затворете всички отворени приложения и " "документи." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Системата Ви е актуална" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Премахване на %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Инсталиране на %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Надграждане на %s" @@ -678,7 +664,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -698,7 +683,6 @@ msgstr "Надграждането е завършено и има нужда о #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -776,6 +760,7 @@ msgid "_Keep" msgstr "_Задържане" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Замяна" @@ -812,7 +797,6 @@ msgstr "Не можеше да бъдат свалени бележките къ msgid "Please check your internet connection." msgstr "Моля, проверете Интернет връзката си!" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Не може да бъде стартирана помощната програма за надграждане." @@ -889,12 +873,12 @@ msgstr "" "мрежата или сървъра. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Сваляне на файл %li от %li при %s/сек" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Сваляне на файл %li от %li при %s/сек" @@ -919,18 +903,15 @@ msgstr "" "Неуспех при изтегляне на списъка с промени. Моля, проверете Интернет " "връзката си." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 актуализации на сигурността" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -946,7 +927,6 @@ msgstr "Ubuntu 5.10 Състарени версии" msgid "Distribution updates" msgstr "_Поднови надграждането" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -971,7 +951,6 @@ msgstr "" msgid "_Check All" msgstr "_Проверка" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -998,16 +977,15 @@ msgid "Checking for updates" msgstr "_Инсталиране на актуализациите" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Нова версия: %s (Размер: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Версия %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1032,7 +1010,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Индексът на софтуера е повреден" @@ -1047,23 +1024,19 @@ msgstr "" "ползвайте диспечера на пакети \"Synaptic\" или първо задействайте \"sudo apt-" "get install -f\" в терминален прозорец, за да поправите този проблем!" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1174,10 +1147,15 @@ msgstr "_Инсталиране на актуализациите" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "_Надграждане" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Промени" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1339,8 +1317,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Добавете пълния APT ред за канала, който искате да добавите\n" +"Добавете пълния APT ред за канала, който искате да " +"добавите\n" "\n" "APT редът съдържа вида, местонахождението и компонентите за даден канал. " "Например „deb http://ftp.debian.org sarge main“." @@ -1436,250 +1414,206 @@ msgstr "Размерът на прозореца" msgid "Configure the sources for installable software and updates" msgstr "Настройка на софтуерните канали и актуализациите по Интернет" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 актуализации" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Поддържани от обществото (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Допринесен софтуер" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Поддържани от обществото (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Поддържани от обществото (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Поддържани от обществото (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Несвободни (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Несвободни (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 актуализации на сигурността" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 актуализации" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Състарени версии" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 „Hoary Hedgehog“" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 „Hoary Hedgehog“" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официално поддържани" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 актуализации на сигурността" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 актуализации" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Състарени версии" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Поддържани от обществото (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Несвободни (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Официално поддържан" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Ограничени авторски права" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 обновления по сигурността" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 обновления" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Състарени версии" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 „Sarge“" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" актуализации на сигурността" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (тестване)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (нестабилен)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-съвместим софтуер с несвободни зависимости" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Софтуер несъвместим с DFSG" @@ -1688,6 +1622,7 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Ограничен за изнасяне от САЩ софтуер" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Сваляне на файл %li от %li при неизвестна скорост" @@ -1708,8 +1643,7 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Надграждане до Ubuntu 6.06 LTS" +#~ "Надграждане до Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1739,13 +1673,13 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Някои актуализации изискват премахването на допълнителен софтуер. " #~ "Използвайте функцията „Маркиране на всички актуализации” на Диспечера на " -#~ "пакети „Synaptic” или задействайте „sudo apt-get dist-upgrade” в " -#~ "терминален прозорец, за да актуализирате напълно системата си." +#~ "пакети „Synaptic” или задействайте „sudo apt-get dist-upgrade” в терминален " +#~ "прозорец, за да актуализирате напълно системата си." #~ msgid "The following updates will be skipped:" #~ msgstr "Следните актуализации ще бъдат пропуснати:" @@ -1766,8 +1700,7 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "Покажи детайлите" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "" -#~ "Позволено е да оперира само един диспечер на софтуера в даден момент" +#~ msgstr "Позволено е да оперира само един диспечер на софтуера в даден момент" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." @@ -1875,16 +1808,16 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "" #~ "Ключове за идентификация\n" #~ "\n" -#~ "Може да добавяте и премахвате ключове за идентификация през този " -#~ "прозорец. Ключът прави възможна проверката на цялостта на софтуера, който " -#~ "сваляте от интернет." +#~ "Може да добавяте и премахвате ключове за идентификация през този прозорец. " +#~ "Ключът прави възможна проверката на цялостта на софтуера, който сваляте от " +#~ "интернет." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Добавяне на нов ключов файл за доверените вериги от ключове. Уверете се, " -#~ "че сте получили ключа по сигурен канал и че можете да се доверите на " +#~ "Добавяне на нов ключов файл за доверените вериги от ключове. Уверете се, че " +#~ "сте получили ключа по сигурен канал и че можете да се доверите на " #~ "собственика. " #~ msgid "Add repository..." @@ -1912,8 +1845,8 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "Максимален размер в Мб:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Възвръщане на стандартните ключове идващи с дистрибуцията. Това няма да " #~ "промени потребителските инсталирани ключове." @@ -1945,13 +1878,13 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Налични обновления\n" #~ "\n" -#~ "Следните пакети могат да бъдат обновени. Може да ги обновите като " -#~ "натиснете бутона „Инсталиране“." +#~ "Следните пакети могат да бъдат обновени. Може да ги обновите като натиснете " +#~ "бутона „Инсталиране“." #~ msgid "Cancel downloading the changelog" #~ msgstr "Отказ на свалянето на дневника на промените" @@ -2027,8 +1960,7 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr[1] "Избрахте всички %s пакета за обновяване, с общ размер %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Избрахте %s от %s пакет за обновяване, с размер %s" #~ msgstr[1] "Избрахте %s от %s пакета за обновяване, с общ размер %s" @@ -2036,11 +1968,11 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "Обновленията се прилагат." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "Може да стартирате само една програма за управление на пакетите. " -#~ "Затворете другата програма първо." +#~ "Може да стартирате само една програма за управление на пакетите. Затворете " +#~ "другата програма първо." #~ msgid "Updating package list..." #~ msgstr "Обновяване на списъка с пакетите..." @@ -2053,25 +1985,25 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Обновете до новата версия на Ubuntu Linux. За версията, която имате ще " -#~ "бъдат спрени поправките по сигурността и други критични обновления. Вижте " +#~ "Обновете до новата версия на Ubuntu Linux. За версията, която имате ще бъдат " +#~ "спрени поправките по сигурността и други критични обновления. Вижте " #~ "http://www.ubuntulinux.org за повече информация." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Има нова версия на Ubuntu!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Излезнала е нова версия с кодовото име „%s“. Вижте http://www.ubuntulinux." -#~ "org за информация по обновяването." +#~ "Излезнала е нова версия с кодовото име „%s“. Вижте " +#~ "http://www.ubuntulinux.org за информация по обновяването." #~ msgid "Never show this message again" #~ msgstr "Без да се показва това съобщение отново" #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Няма открити промени. Сървърът може би не е обновен." +#~ msgstr "Няма открити промени. Сървърът може би не е обновен." \ No newline at end of file diff --git a/po/bn.po b/po/bn.po index edb3c9f2..c1187db5 100644 --- a/po/bn.po +++ b/po/bn.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:37+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: Khandakar Mujahidul Islam \n" "Language-Team: Bengali \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "এক মাস পর" msgid "After %s days" msgstr "%s দিন পর" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,11 +121,12 @@ msgid "Error removing the key" msgstr "কী সরাতে সমস্যা হয়েছে" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -164,7 +162,6 @@ msgstr "দরকারী meta-packages আপগ্রেড করতে প msgid "A essential package would have to be removed" msgstr "একটি প্রয়োজনীয় প্যকেজ অপসারণ করা হতে পারে" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "আপগ্রেড গণনা করতে পারছে না" @@ -177,7 +174,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -199,10 +195,9 @@ msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" -"একটি প্রয়োজনীয় প্যাকেজ ইন্সটল করা অসম্ভব ছিল। অনুগ্রহ করে একে একটি বাগ হিসাবে " -"রিপোর্ট করুন। " +"একটি প্রয়োজনীয় প্যাকেজ ইন্সটল করা অসম্ভব ছিল। অনুগ্রহ করে একে একটি বাগ " +"হিসাবে রিপোর্ট করুন। " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "meta-package অনুমান করা যাচ্ছ না" @@ -263,7 +258,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "ডিফল্ট sources তৈরি করে?" @@ -276,11 +270,11 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"আপনার 'sources.list' স্ক্যান করার পর '%s' এর জন্য কোন সঠিক এন্ট্রি খুজে পাওয়া যায় " -"নি।\n" +"আপনার 'sources.list' স্ক্যান করার পর '%s' এর জন্য কোন সঠিক এন্ট্রি খুজে " +"পাওয়া যায় নি।\n" "\n" -"'%s' জন্য ডিফল্ট যুক্ত করার উচিত? আপনি যদি 'না' নির্বাচন করেন তাহলে আপডেট বাতিল " -"হবে।" +"'%s' জন্য ডিফল্ট যুক্ত করার উচিত? আপনি যদি 'না' নির্বাচন করেন তাহলে আপডেট " +"বাতিল হবে।" #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" @@ -291,8 +285,8 @@ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"রিপোজিটোরি তথ্য আপগ্রেড করার সময় একটি ভুল ফাইল তৈরী হয়েছে। অনুগ্রহ করে এটিকে বাগ " -"হিসাবে রিপোর্ট করুন।" +"রিপোজিটোরি তথ্য আপগ্রেড করার সময় একটি ভুল ফাইল তৈরী হয়েছে। অনুগ্রহ করে এটিকে " +"বাগ হিসাবে রিপোর্ট করুন।" #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" @@ -314,8 +308,8 @@ msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -"আপগ্রেড করার সময় একটি সমস্যা হয়েছে। এটি সাধারনত নেটওয়ার্কের সমস্যা, অনুগ্রহ করে " -"আপনার নেটওয়ার্ক সংযোগ পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন।" +"আপগ্রেড করার সময় একটি সমস্যা হয়েছে। এটি সাধারনত নেটওয়ার্কের সমস্যা, অনুগ্রহ " +"করে আপনার নেটওয়ার্ক সংযোগ পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন।" #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" @@ -329,7 +323,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "আপনি কি আপগ্রেড শুরু করতে চান?" @@ -356,8 +349,8 @@ msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -"আপগ্রেড এখন বন্ধ হবে। দয়া করে আপনার ইন্টারনেট সংযুক্তি বা ইনস্টলেশন মিডিয়া পরীক্ষা " -"করুন এবং আবার চেষ্টা করুন। " +"আপগ্রেড এখন বন্ধ হবে। দয়া করে আপনার ইন্টারনেট সংযুক্তি বা ইনস্টলেশন মিডিয়া " +"পরীক্ষা করুন এবং আবার চেষ্টা করুন। " #: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" @@ -394,7 +387,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "সিস্টেমটি রিস্টার্ট করছি" @@ -405,7 +397,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -457,7 +448,6 @@ msgstr "অপ্রচলিত সফ্টওয়্যার অনুসন msgid "System upgrade is complete." msgstr "সিস্টেম আপগ্রেড সম্পন্ন।" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -469,24 +459,23 @@ msgid "Fetching is complete" msgstr "আপডেট সম্পন্ন" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "%li of %li ফাইল ডাউনলোড করছে" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, fuzzy msgid "About %s remaining" msgstr "%li মিিনিট বাকি আছে" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "%li of %li ফাইল ডাউনলোড করছে" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "পরিবর্তনগুলো প্রয়োগ করছি" @@ -502,9 +491,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -512,53 +500,52 @@ msgstr "" "কনফিগারেশন ফাইল '%s'\n" "কি সরানো হবে?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "'diff' কমান্ডটি পাওয়া যায় নি" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "একটি মারাত্মক সমস্যা সংঘটিত হয়েছে" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s টি প্যাকেজ মোছা হবে।" msgstr[1] "%s টি প্যাকেজ মোছা হবে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -568,51 +555,51 @@ msgstr "" "\n" "আপনাকে সর্বমোট %s ডাউনলোড করতে হবে। " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "আপগ্রেড করতে কয়েক ঘন্টা লেগে যেতে পারে এবং পরে এটি বাতিল করা যাবে না।" +msgstr "" +"আপগ্রেড করতে কয়েক ঘন্টা লেগে যেতে পারে এবং পরে এটি বাতিল করা যাবে না।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "তথ্য হারাতে না চাইলে সকল অ্যাপলিকেশন এবং ডকুমেন্ট বন্ধ রাখুন।" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "আপনার সিস্টেম আপ-টু-ডেট" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "%s মুছো" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "%s ইন্সটল" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "%s আপগ্রেড" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, fuzzy msgid "%li days %li hours %li minutes" msgstr "%li দিন %li ঘন্টা %li মিিনিট বাকি আছে" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, fuzzy msgid "%li hours %li minutes" msgstr "%li ঘন্টা %li মিিনিট বাকি আছে" @@ -627,7 +614,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -642,12 +628,12 @@ msgstr "রিবুট করা প্রয়োজন" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "আপগ্রেডটি সম্পন্ন এবং রিবুট করা প্রয়োজন। আপনি কি এক্ষুনি তা করতে চান?" +msgstr "" +"আপগ্রেডটি সম্পন্ন এবং রিবুট করা প্রয়োজন। আপনি কি এক্ষুনি তা করতে চান?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -720,6 +706,7 @@ msgid "_Keep" msgstr "রাখো (_K)" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "প্রতিস্হাপন (_R)" @@ -756,7 +743,6 @@ msgstr "রিলিজ নোট ডাউনলোড করা যায় ন msgid "Please check your internet connection." msgstr "অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ পরীক্ষা করুন।" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "আপগ্রেড টুলটি চালানো যায় নি" @@ -798,7 +784,9 @@ msgstr "এক্সট্রাক্ট করতে ব্যর্থ" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "আপগ্রেডটি এক্সট্রাক্ট করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা থাকতে পারে। " +msgstr "" +"আপগ্রেডটি এক্সট্রাক্ট করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা থাকতে " +"পারে। " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -810,8 +798,8 @@ msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"আপগ্রেড যথার্থ্য হয়েছে কিনা তা পরীক্ষা করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা " -"থাকতে পারে। " +"আপগ্রেড যথার্থ্য হয়েছে কিনা তা পরীক্ষা করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে " +"সমস্যা থাকতে পারে। " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -851,20 +839,18 @@ msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"পরিবর্তন তালিকা ডাউনলোড করতে ব্যর্থ। অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ পরীক্ষা করুন।" +"পরিবর্তন তালিকা ডাউনলোড করতে ব্যর্থ। অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ " +"পরীক্ষা করুন।" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -880,7 +866,6 @@ msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" msgid "Distribution updates" msgstr "পুনরায় আপগ্রেড শুরু (_R)" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -905,7 +890,6 @@ msgstr "" msgid "_Check All" msgstr "পরীক্ষা করো (_C)" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -932,16 +916,15 @@ msgid "Checking for updates" msgstr "আপডেট ইন্সটল করো (_I)" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "নতুন ভার্সন: %s (আকার: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "ভার্সন %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -963,7 +946,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "সফ্টওয়্যার ইন্ডেক্সটি নস্ট" @@ -975,23 +957,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1095,10 +1073,15 @@ msgstr "আপডেট ইন্সটল করো (_I)" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "আপগ্রেড (_p)" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "পরিবর্তন" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1329,245 +1312,201 @@ msgstr "উইনডোর আকার" msgid "Configure the sources for installable software and updates" msgstr "সফ্টওয়্যার চ্যানেল এবং ইন্টারনেট আপডেট কনফিগার" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "উবুন্টু ৫.১০ আপডেট" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "ফ্রি নয় (মাল্টিভার্স)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "উবুন্টু ৬.০৬ 'ড্যাপার ড্রেক'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "ফ্রি নয় (মাল্টিভার্স)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "ফ্রি নয় (মাল্টিভার্স)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "উবুন্টু ৬.০৬ 'ড্যাপার ড্রেক'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "অফিসিয়াল ভাবে সমর্থিত" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "ফ্রি নয় (মাল্টিভার্স)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "কিছু সফটওয়্যার অফিসিয়ালি আর সমর্থিত নয়" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "ডেবিয়ান ৩.১ \"সার্জ\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "ডেবিয়ান ৩.১ \"Sarge\" নিরাপত্তামুলক আপডেট" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "ডেবিয়ান \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "ডেবিয়ান \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1613,6 +1552,7 @@ msgstr "" #~ msgid "The following updates will be skipped:" #~ msgstr "নিম্নের আপডেটগুলো বাদ দেয়া হবে:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "%li সেকেন্ড বাকি আছে" @@ -1620,7 +1560,8 @@ msgstr "" #~ msgstr "ডাউনলোড সম্পন্ন" #~ msgid "The upgrade aborts now. Please report this bug." -#~ msgstr "আপগ্রেডটি নিস্ফল ভাবে বের হয়ে যাচ্ছ। অনুগ্রহ করে এই বাগটি রিপোর্ট করুন।" +#~ msgstr "" +#~ "আপগ্রেডটি নিস্ফল ভাবে বের হয়ে যাচ্ছ। অনুগ্রহ করে এই বাগটি রিপোর্ট করুন।" #~ msgid "Upgrading Ubuntu" #~ msgstr "উবুন্টু আপগ্রেড করছি" @@ -1637,8 +1578,8 @@ msgstr "" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "অনুগ্রহ করে অন্যান্য অ্যাপলিকেশন যেমন, 'aptitude' অথবা 'Synaptic' প্রথমে বন্ধ " -#~ "করুন।" +#~ "অনুগ্রহ করে অন্যান্য অ্যাপলিকেশন যেমন, 'aptitude' অথবা 'Synaptic' প্রথমে " +#~ "বন্ধ করুন।" #~ msgid "Channels" #~ msgstr "চ্যানেল" @@ -1685,4 +1626,4 @@ msgstr "" #~ msgstr "উবুন্টু ৬.০৬ আপডেট" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "উবুন্টু ৬.০৬ ব্যাকপোর্ট" +#~ msgstr "উবুন্টু ৬.০৬ ব্যাকপোর্ট" \ No newline at end of file diff --git a/po/br.po b/po/br.po index daab1fb3..0295bb13 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" "PO-Revision-Date: 2006-05-19 02:42+0000\n" "Last-Translator: Oublieuse \n" "Language-Team: Breton \n" @@ -55,7 +55,6 @@ msgstr "" msgid "After %s days" msgstr "War-lerc'h %s devezh" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,7 +122,8 @@ msgid "Error removing the key" msgstr "Fazi en ur zilemel an alc'hwezh" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "N'eus ket tu da zilemel an alc'whezh ho peus dibabet. Kelaouit eo ur bug " "marplij." @@ -164,7 +162,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -177,7 +174,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -200,7 +196,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -260,7 +255,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -317,7 +311,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -380,7 +373,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -391,7 +383,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -442,7 +433,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -458,7 +448,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -470,7 +460,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -486,60 +475,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -547,39 +534,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -605,7 +591,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -625,7 +610,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -696,6 +680,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -731,7 +716,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -821,17 +805,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -844,7 +825,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -866,7 +846,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -901,7 +880,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -923,7 +901,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -935,23 +912,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1048,10 +1021,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1274,232 +1251,187 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " +#~ msgstr " " \ No newline at end of file diff --git a/po/ca.po b/po/ca.po index e92100ae..7ef3fe96 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:41+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Jordi Irazuzta \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" @@ -54,7 +54,6 @@ msgstr "Després d'un mes" msgid "After %s days" msgstr "Després de %s dies" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,7 +61,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "" msgid "Main server" msgstr "Servidor principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -127,13 +124,14 @@ msgid "Error removing the key" msgstr "S'ha produït un error en esborrar la clau" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "La clau que heu seleccionat no es pot esborrar. Notifiqueu-ho com a error de " "programació." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -172,7 +170,6 @@ msgstr "No s'han pogut actualitzar els metapaquets sol·licitats" msgid "A essential package would have to be removed" msgstr "S'haurà d'esborrar un paquet essencial" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "No s'ha pogut calcular l'actualització" @@ -188,7 +185,6 @@ msgstr "" "S'ha produït un problema greu alhora de calcular l'actualització. Informeu " "de l'error." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "S'ha produït un error en autenticar alguns paquets" @@ -216,7 +212,6 @@ msgstr "" "No s'ha pogut instal·lar un dels paquets sol·licitats. Envieu un informe amb " "els error. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -283,7 +278,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Voleu generar les fonts per defecte?" @@ -347,12 +341,11 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"L'actualització s'ha cancel·lat. Allibereu almenys %s d'espai de disc a %s." -"\r\n" +"L'actualització s'ha cancel·lat. Allibereu almenys %s d'espai de disc a " +"%s. \n" "Buideu la vostra paperera i esborreu els paquets temporals utilitzant 'sudo " "apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Voleu iniciar l'actualització?" @@ -425,7 +418,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "S'està restaurant l'estat original del sistema" @@ -436,7 +428,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -491,7 +482,6 @@ msgstr "S'està cercant programari obsolet" msgid "System upgrade is complete." msgstr "S'ha completat l'actualització del sistema" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -503,24 +493,23 @@ msgid "Fetching is complete" msgstr "S'ha completat l'actualització" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "S'està descarregant el fitxer %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, fuzzy msgid "About %s remaining" msgstr "Queden uns %li minuts" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "S'està descarregant el fitxer %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "S'estan aplicant els canvis" @@ -536,9 +525,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -546,53 +534,52 @@ msgstr "" "Voleu reemplaçar el fitxer de\n" "configuració '%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "No s'ha trobat l'ordre 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "S'ha produït un error greu" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "S'esborrarà %s paquet" msgstr[1] "S'esborraran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "S'instal·larà %s paquet" msgstr[1] "S'instal·laran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "S'actualitzarà %s paquet" msgstr[1] "S'actualitzaran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -602,7 +589,7 @@ msgstr "" "\n" "Heu de descarregar un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -611,46 +598,45 @@ msgstr "" "L'actualització pot durar algunes hores i no la podreu cancel·lar un cop " "hagi començat." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Per a evitar una possible pèrdua de dades, tanqueu tos els documents i " "aplicacions." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "El vostre sistema està actualitzat" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Esborra %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Instal·la %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Actualitza %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, fuzzy msgid "%li days %li hours %li minutes" msgstr "Queden uns %li dies %li hores %li minuts" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, fuzzy msgid "%li hours %li minutes" msgstr "Queden unes %li hores %li minuts" @@ -665,7 +651,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -687,7 +672,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -707,7 +691,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Reinicieu el sistema per a completar l'actualització" +msgstr "" +"Reinicieu el sistema per a completar l'actualització" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -764,6 +749,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Reemplaça" @@ -800,7 +786,6 @@ msgstr "No s'han pogut descarregar les notes de la versió" msgid "Please check your internet connection." msgstr "Comproveu la vostra connexió a Internet" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "No es pot executar l'eina d'actualització" @@ -866,12 +851,12 @@ msgid "" msgstr "" #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "S'està descarregant el fitxer %li de %li amb %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "S'està descarregant el fitxer %li de %li amb %s/s" @@ -896,18 +881,15 @@ msgstr "" "S'ha produït un error en descarregar els canvis. Comproveu si teniu connexió " "a Internet." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Debian Stable Security Updates" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -923,7 +905,6 @@ msgstr "Actualitzacions d'Ubuntu 6.06 LTS" msgid "Distribution updates" msgstr "_Reprén l'actualització" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -948,7 +929,6 @@ msgstr "" msgid "_Check All" msgstr "_Comprova" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -975,16 +955,15 @@ msgid "Checking for updates" msgstr "S'estan comprovant les actualitzacions..." #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Versió nova: %s (Mida: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Versió %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1009,7 +988,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Ja disposeu de la nova distribució '%s'" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "L'índex de programari s'ha trencat" @@ -1024,23 +1002,19 @@ msgstr "" "utilitzeu el gestor de paquets \"Synaptic\" o executeu \"sudo apt-get " "install -f\" en un terminal." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1152,10 +1126,15 @@ msgstr "_Instal·la les actualitzacions" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "_Actualitza" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Canvis" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1404,251 +1383,207 @@ msgstr "La mida de la finestra" msgid "Configure the sources for installable software and updates" msgstr "Configura els canals de programari i les actualitzacions d'Internet" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Actualitzacions d'Ubuntu 5.10" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Paquets mantinguts per la comunitat (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Programari de la comunitat" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Paquets mantinguts per la comunitat (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Paquets mantinguts per la comunitat (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Paquets mantinguts per la comunitat (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Paquets sense llicència lliure (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Paquets sense llicència lliure (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD amb Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualitzacions d'Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Paquets mantinguts oficialment (Main)" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualitzacions d'Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Paquets mantinguts per la comunitat (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Paquets sense llicència lliure (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Algun programari ja no es mantindrà oficialment" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Paquets amb restriccions per copyright (Restricted)" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualitzacions d'Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualitzacions de seguretat de Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Programari compatible DFSG amb dependències no lliures" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Programari no compatible DFSG" @@ -1657,9 +1592,9 @@ msgstr "Programari no compatible DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Programari amb restriccions d'exportació als EUA" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" -#~ msgstr "" -#~ "S'està descarregant el fitxer %li de %li a una velocitat desconeguda" +#~ msgstr "S'està descarregant el fitxer %li de %li a una velocitat desconeguda" #, fuzzy #~ msgid "Normal updates" @@ -1712,8 +1647,8 @@ msgstr "Programari no compatible DFSG" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algunes actualitzacions requereixen la desinstal·lació de programari " #~ "adicional. Per actualitzar completament el vostre sistema utilitzeu la " @@ -1723,6 +1658,7 @@ msgstr "Programari no compatible DFSG" #~ msgid "The following updates will be skipped:" #~ msgstr "Les següents actualitzacions s'ometran:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Queden uns %li segons" @@ -1833,9 +1769,8 @@ msgstr "Programari no compatible DFSG" #~ msgstr "" #~ "Claus d'autenticació\n" #~ "\n" -#~ "Des d'aquest quadre de diàleg podeu afegir i esborrar claus " -#~ "d'autenticació. Les claus permeten comprovar la integritat del programari " -#~ "que descarregueu." +#~ "Des d'aquest quadre de diàleg podeu afegir i esborrar claus d'autenticació. " +#~ "Les claus permeten comprovar la integritat del programari que descarregueu." #~ msgid "" #~ "Enter the complete APT line of the repository that you want to " @@ -1848,15 +1783,15 @@ msgstr "Programari no compatible DFSG" #~ "Introduïu la línia APT del dipòsit que voleu afegir\n" #~ "\n" #~ "La línia APT conté el tipus, la ubicació i el contingut del dipòsit; per " -#~ "exemple, \"deb http://ftp.debian.org sarge main\". Podeu trobar " -#~ "una descripció més detallada de la sintaxi en la documentació." +#~ "exemple, \"deb http://ftp.debian.org sarge main\". Podeu trobar una " +#~ "descripció més detallada de la sintaxi en la documentació." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner." +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner." #~ msgstr "" -#~ "Afegeix una clau nova a l'anell de confiança. Assegureu-vos que heu rebut " -#~ "la clau per un canal segur i que confieu en el propietari." +#~ "Afegeix una clau nova a l'anell de confiança. Assegureu-vos que heu rebut la " +#~ "clau per un canal segur i que confieu en el propietari." #~ msgid "Add repository..." #~ msgstr "Afegeix un dipòsit..." @@ -1889,11 +1824,11 @@ msgstr "Programari no compatible DFSG" #~ msgstr "Restaura les claus per defecte" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Restaura les claus per defecte de la distribució. Això no afecta les " -#~ "claus instal·lades per l'usuari." +#~ "Restaura les claus per defecte de la distribució. Això no afecta les claus " +#~ "instal·lades per l'usuari." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Fixa la mida _màxima de memòria cau per als paquets descarregats" @@ -1925,8 +1860,8 @@ msgstr "Programari no compatible DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Actualitzacions disponibles\n" #~ "\n" @@ -1938,8 +1873,8 @@ msgstr "Programari no compatible DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "S'estan descarregant els canvis\n" +#~ "S'estan descarregant els " +#~ "canvis\n" #~ "\n" #~ "Es necessita obtenir els canvis des del servidor central" @@ -2028,8 +1963,7 @@ msgstr "Programari no compatible DFSG" #~ "Heu seleccionat els %s paquets actualitzats, la mida total és de %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Heu seleccionat %s paquet actualitzat de %s, la mida és de $s" #~ msgstr[1] "" #~ "Heu seleccionat %s paquets actualitzats de %s, la mida total és de %s" @@ -2044,8 +1978,8 @@ msgstr "Programari no compatible DFSG" #~ msgstr "S'està executant un altre gestor de paquets" #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Només podeu executar un gestor de paquets a la vegada. Tanqueu l'altra " #~ "aplicació." @@ -2067,24 +2001,24 @@ msgstr "Programari no compatible DFSG" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Actualitzeu el sistema amb una versió més nova d'Ubuntu Linux. La vostra " #~ "versió ja no disposarà de més actualitzacions de seguretat ni d'altres " -#~ "actualitzacions crítiques. Si voleu més informació, visiteu http://www." -#~ "ubuntulinux.org/." +#~ "actualitzacions crítiques. Si voleu més informació, visiteu " +#~ "http://www.ubuntulinux.org/." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ja disposeu del nou llançament d'Ubuntu" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Ja disposeu del nou llançament d'Ubuntu amb el nom en clau '%s'. Si " -#~ "necessiteu instruccions per a actualitzar el sistema, visiteu http://www." -#~ "ubuntulinux.org/." +#~ "necessiteu instruccions per a actualitzar el sistema, visiteu " +#~ "http://www.ubuntulinux.org/." #~ msgid "Never show this message again" #~ msgstr "No tornis a mostrar aquest missatge" @@ -2092,4 +2026,4 @@ msgstr "Programari no compatible DFSG" #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" #~ "No s'han trobat els canvis. Pot ser que el servidor encara no s'hagi " -#~ "actualitzat." +#~ "actualitzat." \ No newline at end of file diff --git a/po/cs.po b/po/cs.po index b2d57499..6ec03ae8 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:41+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Tomáš Hála \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,15 +56,13 @@ msgstr "Po měsíci" msgid "After %s days" msgstr "Po %s dnech" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" -msgstr "%s aktualizace" +msgstr "Aktualizace %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,12 +72,11 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Hlavní server" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "Server pro %s" +msgstr "Server pro zemi \"%s\"" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" @@ -114,22 +111,23 @@ msgstr "Importovat klíč" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" -msgstr "Chyba při importování vybraného souboru" +msgstr "Chyba při importu vybraného souboru" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "Vybraný soubor nemusí obsahovat GPG klíč nebo může být porušen." +msgstr "Vybraný soubor asi není klíč GPG, anebo může být poškozen." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Chyba při odstraňování klíče" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný klíč nemohl být odstraněn. Prosím oznamte to jako chybu." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -156,7 +154,7 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"Váš systém obsahuje poškozené balíčky, které nemohou být tímto programem " +"Váš systém obsahuje poškozené balíky, které nemohou být tímto programem " "opraveny. Před pokračováním je prosím opravte použitím programu synaptic " "nebo apt-get." @@ -166,31 +164,27 @@ msgstr "Nemohu aktualizovat požadované meta-balíky" #: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" -msgstr "Základní balík by musel být odstraněn" +msgstr "Toto by vedlo k odstranění základního balíku" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nemohu vypočítat aktualizaci" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Při výpočtu aktualizace nastal neřešitelný problém. Prosím oznamte to jako " -"chybu.\n" +"Při výpočtu aktualizace nastal neřešitelný problém.\n" "\n" -"Prosím oznamte tuto chybu jako problém balíčku 'update-manager' a přiložte " -"soubory v adresáři /var/log/dist-upgrade/ k vašemu chybovému hlášení." +"Prosím nahlaste tuto chybu jako chybu balíčku 'update-manager' a přiložte " +"soubory z adresáře /var/log/dist-upgrade/ k hlášení o chybě." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" -msgstr "Chyba při ověření některých balíků" +msgstr "Chyba při ověřování některých balíků" #: ../DistUpgrade/DistUpgradeCache.py:247 msgid "" @@ -214,7 +208,6 @@ msgid "" msgstr "" "Nebylo možné nainstalovat požadovaný balík. Prosím oznamte to jako chybu. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nemohu odhadnout meta-balík" @@ -297,10 +290,9 @@ msgstr "" "všechny položky '%s' aktualizovány na '%s'.\n" "Zvolíte-li 'Ne', aktualizace bude zrušena." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" -msgstr "Vytvořit standardní zdroje?" +msgstr "Vygenerovat výchozí zdroje?" #: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format @@ -310,7 +302,7 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Po prohledání vašeho 'sources.list' nebyla pro '%s' nalezena žádná " +"Po prohledání souboru 'sources.list' nebyla pro '%s' nalezena žádná " "odpovídající položka.\n" "\n" "Chcete přidat výchozí položky pro '%s'? Zvolíte-li 'Ne', aktualizace bude " @@ -318,15 +310,15 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" -msgstr "Neplatná informace zdroje" +msgstr "Neplatná informace o zdroji" #: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"Upgrade informací o úložišti vrátil neplatný soubor. Prosím oznamte to jako " -"chybu." +"Aktualizace informací o repozitáři vyústila v neplatný soubor. Prosím " +"oznamte to jako chybu." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" @@ -338,9 +330,9 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"Některé položky třetích stran ve vašem sources.list byly vyřazeny. Tyto " +"Některé položky třetích stran v souboru sources.list byly vyřazeny. Tyto " "položky můžete opět povolit po přechodu na novou verzi za pomocí nástroje " -"'software-propertie' nebo pomocí synaptic." +"'software-properties' nebo nástroje synaptic." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -369,7 +361,6 @@ msgstr "" "Vyprázdněte váš koš a odstraňte dočasné balíčky z dřívějších instalací " "pomocí 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Chcete spustit aktualizaci?" @@ -379,7 +370,6 @@ msgid "Could not install the upgrades" msgstr "Nelze nainstalovat aktualizace" #: ../DistUpgrade/DistUpgradeControler.py:461 -#, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -388,11 +378,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Aktualizace byla předčasně ukončena. Váš systém může být v nepoužitelném " -"stavu. Zkuste ho prosím opravit pomocí 'sudo apt-get install -f' nebo " -"Synaptic.\n" +"stavu. Pokus o nápravu (dpkg --configure -a) byl proveden. Zkuste prosím " +"napravit situaci pomocí 'sudo apt-get install -f' nebo pomocí Synaptic.\n" "\n" -"Prosím nahlaste tuto chybu balíčku 'update-manager' a přiložte soubory z " -"adresáře /var/log/dist-upgrade/ k hlášení o chybě." +"Prosím nahlaste tuto chybu jako chybu balíčku 'update-manager' a přiložte " +"soubory z adresáře /var/log/dist-upgrade/ k hlášení o chybě." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -418,11 +408,11 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Canonical Ltd. již dále neposkytuje podporu pro následující balíčky " -"softwaru. Stále můžete získat podporu komunity.\n" +"Společnost Canonical Ltd. již neposkytuje podporu pro následující softwarové " +"balíky. Je možné, že tyto balíčky jsou stále spravovány komunitou.\n" "\n" "Pokud nemáte povolen software spravovaný komunitou (universe), tyto balíčky " -"budou navrhnuty k odstranění v dalším kroku." +"budou v dalším kroku navrhnuty k odstranění." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -438,17 +428,16 @@ msgstr "_Odebrat" #: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" -msgstr "Chyba při zaznamenávání" +msgstr "Chyba při potvrzování" #: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -"Během čištění nastal nějaký problém. Pro více informací si prosím " -"prohléhněte níže uvedenou zprávu. " +"Během čištění nastal problém. Podrobnější informace jsou obsaženy v " +"následující zprávě: " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Obnovuje se původní stav systému" @@ -456,37 +445,35 @@ msgstr "Obnovuje se původní stav systému" #: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "Stahuji backport '%s'" +msgstr "Stahuji verzi '%s' přenesenou z vyšší verze distribuce" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" -msgstr "Kontroluje se manažer balíků" +msgstr "Kontroluji správce balíků" #: ../DistUpgrade/DistUpgradeControler.py:671 -#, fuzzy msgid "Preparing the upgrade failed" -msgstr "Připravuje se upgrade" +msgstr "Příprava přechodu na vyšší verzi selhala" #: ../DistUpgrade/DistUpgradeControler.py:672 -#, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -"Při výpočtu aktualizace nastal neřešitelný problém. Prosím oznamte to jako " -"chybu." +"Příprava systému na přechod na vyšší verzi selhala. Prosím nahlaste tuto " +"chybu jako chybu balíčku 'update-manager' a přiložte soubory z adresáře " +"/var/log/dist-upgrade/ k hlášení o chybě." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" -msgstr "Aktualizují se informace o úložišti" +msgstr "Aktualizují se informace o repozitáři" #: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" -msgstr "Neplatná informace o balíčcích" +msgstr "Neplatná informace o balících" #: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format @@ -497,58 +484,55 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Poté co byly aktualizovány informaco o balíčcích, nebyl nalezen nezbytný " +"Poté co byly aktualizovány informace o balících, nebyl nalezen nezbytný " "balík '%s'.\n" "Toto ukazuje na závažný problém, prosím nahlašte toto jako chybu balíku " -"'update-manager' a přiložte k hlášení o chybě soubory v adresáři /var/log/" -"dist-upgrade/." +"'update-manager' a přiložte k hlášení o chybě soubory v adresáři " +"/var/log/dist-upgrade/." #: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" -msgstr "Požaduje se potvrzení" +msgstr "Vyžaduji potvrzení" #: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" -msgstr "Probíhá upgrade" +msgstr "Probíhá přechod na vyšší verzi" #: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" -msgstr "Vyhledáván zastaralý software" +msgstr "Vyhledávám zastaralý software" #: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." -msgstr "Upgrade systému je dokončen." +msgstr "Přechod na vyšší verzi systému je dokončen." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Prosím vložte '%s' do mechaniky '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "Aktualizace je dokončena" +msgstr "Stahování je dokončeno" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Stahuji soubor %li z %li rychlostí %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, python-format msgid "About %s remaining" -msgstr "Zhruba %li minut zbývá" +msgstr "Zhruba %s zbývá" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Stahuji soubor %li z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Provádím změny" @@ -563,75 +547,74 @@ msgid "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Aktualizace se přerušila. Nahlašte prosím tuto chybu jako chybu balíku " -"'update-manager' a přiložte k chybovému hlášení soubory z adresáře /var/log/" -"dist-upgrade/." +"Aktualizace byla předčasně ukončena. Nahlašte prosím tuto chybu jako chybu " +"balíku 'update-manager' a přiložte k chybovému hlášení soubory z adresáře " +"/var/log/dist-upgrade/." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"Nahradit soubor s nastavením\n" +"Nahradit upravený soubor s nastavením\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Pokud zvolíte nahrazení novější verzí, ztratíte veškeré změny tohoto " +"konfiguračního souboru." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Příkaz \"diff\" nebyl nalezen" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" -msgstr "Nastala fatální chyba" +msgstr "Nastala kritická chyba" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Prosím oznamte toto jako chybu a do zprávy připojte soubory /var/log/dist-" -"upgrade.log a /var/log/dist-upgrade-apt.log. Přechod na novou verzi bbude " -"nyní předčasně ukončen. Váš původní sources.list byl uložen do /etc/apt/" -"sources.list.distUpgrade." +"upgrade/main.log a /var/log/dist-upgrade/apt.log. Přechod na novou verzi " +"bude nyní předčasně ukončen. Váš původní soubor sources.list byl uložen do " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s balík bude odstraněn." -msgstr[1] "%s balíky budou odstraněny." -msgstr[2] "%s balíků bude odstraněno." +msgstr[0] "%d balík bude odstraněn." +msgstr[1] "%d balíky budou odstraněny." +msgstr[2] "%d balíků bude odstraněno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s nový balík bude nainstalován." -msgstr[1] "%s nové balíky budou nainstalovány." -msgstr[2] "%s nových balíků bude nainstalováno." +msgstr[0] "%d nový balík bude nainstalován." +msgstr[1] "%d nové balíky budou nainstalovány." +msgstr[2] "%d nových balíků bude nainstalováno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s balík bude nahrazen vyšší verzí." -msgstr[1] "%s balíky budou nahrazeny vyšší verzí." -msgstr[2] "%s balíky bude nahrazeno vyšší verzí." +msgstr[0] "%d balík bude nahrazen vyšší verzí." +msgstr[1] "%d balíky budou nahrazeny vyšší verzí." +msgstr[2] "%d balíky bude nahrazeno vyšší verzí." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -641,55 +624,55 @@ msgstr "" "\n" "Bude staženo celkem %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "Upgrade může trvat několik hodin a nesmí být později přerušen." +msgstr "" +"Přechod na vyšší verzi může trvat několik hodin a nelze jej v budoucnu " +"zrušit." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." -msgstr "Pro zamezení ztráty dat, uzavřete všechny aplikace a dokumenty." +msgstr "Uzavřete všechny aplikace a dokumenty pro zamezení ztrátě dat." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Váš systém je aktuální" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -"Pro váš počítač nejsou k dispozici žádné aktualizace. Aktualizace bude nyní " -"ukončena." +"Pro váš systém nejsou k dispozici žádné aktualizace. Aktualizace bude nyní " +"zrušena." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" -msgstr "Odstranit %s" +msgstr "Odebrat %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Nainstalovat %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Aktualizovat %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "Zhruba %li hodin %li minut zbývá" +msgstr "%li days %li hodin %li minut" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "Zbývá zhruba %li hodin %li minut" +msgstr "%li hodin %li minut" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format @@ -702,29 +685,29 @@ msgid "%li seconds" msgstr "%li sekund" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Toto stahování bude trvat asi %s linkou o rychlosti linky 1Mbit DSL a asi %s " +"modemem 56kbit." #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" -msgstr "Vyžadován restartovat" +msgstr "Vyžadován restart" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" -"Aktualizace byla dokončena a je třeba restartovat systém. Chcete restartovat " -"nyní?" +"Přechod na vyšší verzi byl dokončen a je nutné restartovat systém. Chcete " +"jej restartovat nyní?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -737,22 +720,22 @@ msgid "" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" -"Zrušit probíhající upgrade?\n" +"Zrušit probíhající aktualizaci?\n" "\n" -"Systém muže být v nepoužitelném stavu jestliže upgrade zrušíte. Je silně " -"doporučeno pokračovat v upgrade." +"Zrušení aktualizace může systém zanechat v nepoužitelném stavu. Je " +"důrazně doporučeno v aktualizaci pokračovat." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Pro dokončení upgradu restartujte systém" +msgstr "Pro dokončení aktualizace restartujte systém" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "Spustit upgrade?" +msgstr "Spustit aktualizaci?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Aktualizuji systém Ubuntu na verzi 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -760,47 +743,46 @@ msgstr "Probíhá čištění" #: ../DistUpgrade/DistUpgrade.glade.h:9 msgid "Details" -msgstr "Detaily" +msgstr "Podrobnosti" #: ../DistUpgrade/DistUpgrade.glade.h:10 msgid "Difference between the files" msgstr "Rozdíl mezi soubory" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "Stahují a instalují se upgrady" +msgstr "Stahuji a instaluji balíky potřebné pro přechod na vyšší verzi" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" -msgstr "Modifikují se programové kanály." +msgstr "Modifikuji softwarové kanály." #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "Připravuje se upgrade" +msgstr "Připravuji přechod na vyšší verzi" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" -msgstr "Systém se restartuje" +msgstr "Restartuji systém" #: ../DistUpgrade/DistUpgrade.glade.h:15 msgid "Terminal" msgstr "Terminál" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Pokračovat v upgradu" +msgstr "_Zrušit přechod na vyšší verzi" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Pokračovat" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Ponechat" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Nahradit" @@ -814,12 +796,11 @@ msgstr "_Restartovat nyní" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "_Pokračovat v upgradu" +msgstr "_Pokračovat v aktualizaci" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_Pokračovat v upgradu" +msgstr "_Začít aktualizaci" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -831,13 +812,12 @@ msgstr "Server může být přetížen. " #: ../UpdateManager/DistUpgradeFetcher.py:79 msgid "Could not download the release notes" -msgstr "Nelze stáhnout poznámky k vydání." +msgstr "Nemohu stáhnout poznámky k vydání." #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." msgstr "Prosím zkontrolujte své internetové připojení." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nemohu spustit aktualizační nástroj" @@ -846,60 +826,54 @@ msgstr "Nemohu spustit aktualizační nástroj" msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" msgstr "" -"Toto je s největší pravděpodobností chyba v nástroji pro přechod na novou " -"verzi systému. Oznamte to jako chybu, prosím." +"Toto je s největší pravděpodobností chyba v aktualizačním nástroji. Oznamte " +"to jako chybu, prosím." #: ../UpdateManager/DistUpgradeFetcher.py:171 msgid "Downloading the upgrade tool" -msgstr "Stahuji nástroj pro přechod na novou verzi systému" +msgstr "Stahuji aktualizační nástroj" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" -"Nástroj pro přechod na novou verzi systému vás provede aktualizačním " -"procesem." +msgstr "Aktualizační nástroj vás provede procesem aktualizace." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" -msgstr "Podpis nástroje pro přechod na novou verzi systému" +msgstr "Podpis aktualizačního nástroje" #: ../UpdateManager/DistUpgradeFetcher.py:183 msgid "Upgrade tool" -msgstr "Aktualizační utilita" +msgstr "Aktualizační nástroj" #: ../UpdateManager/DistUpgradeFetcher.py:208 msgid "Failed to fetch" -msgstr "Chyba stahování" +msgstr "Stahování selhalo" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" -"Stažení nástroje pro přechod na novou verzi systému se nepodařilo. " -"Pravděpodobně je problém se sítí. " +msgstr "Stažení aktualizace selhalo. Pravděpodobně je problém se sítí. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "Nezdařilo se rozbalení" +msgstr "Rozbalení selhalo" #: ../UpdateManager/DistUpgradeFetcher.py:215 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"Rozbalování aktualizace selhalo. Může být problém se sítí nebo serverem. " +"Rozbalení aktualizace selhalo. Může být problém se sítí nebo se serverem. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" -msgstr "Ověření selhalo." +msgstr "Ověření selhalo" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"Stažení nástroje pro přechod na novou verzi systému se nepodařilo. " -"Pravděpodobně je problém se sítí. " +"Ověření aktualizace selhalo. Může jít o problém se sítí nebo se serverem. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -910,64 +884,59 @@ msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" -"Autentizace aktualizace selhala. Může být problém se sítí nebo serverem. " +"Autentizace aktualizace selhala. Může jít o problém se sítí nebo se " +"serverem. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Stahuji %li. soubor z %li rychlostí %s/s" +msgstr "Stahuji %(current)li. soubor z %(total)li rychlostí %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Stahuji %li. soubor z %li rychlostí %s/s" +msgstr "Stahuji %(current)li. soubor of %(total)li" #: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" msgstr "Seznam změn není dostupný." #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "Seznam změn ještě není dostupný. Prosím, zkuste to později znovu." +msgstr "" +"Seznam změn ještě není dostupný.\n" +"Prosím, zkuste to později znovu." #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Selhalo stažení seznamu změn. Prosím zkontrolujte své internetové připojení." +"Stažení seznamu změn selhalo. \n" +"Prosím zkontrolujte své internetové připojení." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Důležité bezpečnostní aktualizace" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Doporučené aktualizace" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 -#, fuzzy msgid "Proposed updates" -msgstr "Navrhnuté aktualizace" +msgstr "Navržené aktualizace" #: ../UpdateManager/UpdateManager.py:241 -#, fuzzy msgid "Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Aplikace přenesené z novějších verzí distribuce" #: ../UpdateManager/UpdateManager.py:242 -#, fuzzy msgid "Distribution updates" -msgstr "_Pokračovat v upgradu" +msgstr "Aktualizace distribuce" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Ostatní aktualizace" @@ -984,14 +953,12 @@ msgstr "Stahuji seznam změn ..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" -msgstr "" +msgstr "_Odznačit vše" #: ../UpdateManager/UpdateManager.py:572 -#, fuzzy msgid "_Check All" -msgstr "_Zkontrolovat" +msgstr "_Zkontrolovat vše" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1014,21 +981,19 @@ msgid "Update is complete" msgstr "Aktualizace je dokončena" #: ../UpdateManager/UpdateManager.py:719 -#, fuzzy msgid "Checking for updates" -msgstr "Zkontrolovat dostupné aktualizace" +msgstr "Kontroluji dostupné aktualizace" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "Nová verze: %s (Velikost: %s)" +msgstr "Z verze %(old_version)s na verzi %(new_version)s" #: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Verze %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1036,7 +1001,7 @@ msgstr "(Velikost: %s)" #: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" -msgstr "Vaše distribude už není podporovaná" +msgstr "Vaše distribude již není podporovaná" #: ../UpdateManager/UpdateManager.py:844 msgid "" @@ -1044,16 +1009,16 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"Nedostanete žádné další bezpečnostní opravy nebo velmi důležité aktualizace. " -"Přejděte na další verzi Ubuntu Linuxu. Pro více informací o přechodu na " -"vyšší verzi se podívejte na http://www.ubuntu.com." +"Pro vaší verzi Ubuntu Linux již nejsou dostupné žádné další bezpečnostní " +"opravy ani velmi důležité aktualizace. Přejděte na vyšší verzi Ubuntu Linux. " +"Pro více informací o přechodu na vyšší verzi se podívejte na " +"http://www.ubuntu.com." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" -msgstr "Nové vydání distribuce '%s' je k dispozici" +msgstr "Nové vydání distribuce (%s) je k dispozici" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Seznam softwaru je poškozen" @@ -1064,61 +1029,51 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"Není možné nainstalovat nebo odinstalovat žádný program. Prosím použijte " -"správce balíčků \"Synaptic\" nebo nejdříve spusťe v terminálu \"sudo apt-get " -"install -f\" pro opravu tohoto problému." +"Není možné instalovat ani odebírat programy. Prosím použijte správce balíčků " +"\"Synaptic\" nebo nejdříve spusťe v terminálu \"sudo apt-get install -f\" " +"pro nápravu tohoto problému." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Prázdný" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Musíte zkontrolovat aktualizace manuálně\n" +"Je nutné zkontrolovat aktualizace ručně\n" "\n" -"Váš systéme nezjišťuje nové aktualizace automaticky. Nastavení můžete změnit " -"v \"Systém\" -> \"Správa\" -> \"Vlastnosti Software\"" +"Váš systém nezjišťuje nové aktualizace automaticky. Toto nastavení můžete " +"změnit v \"Systém\" -> \"Správa\" -> \"Vlastnosti Software\"" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" -msgstr "Udržujte Váš systém aktuální" +msgstr "Udržujte svůj systém aktuální" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" -msgstr "" -"Chyba při načítání CD\n" -"\n" -"%s" +msgstr "Není možné nainstalovat všechny aktualizace" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Spustit upgrade?" +msgstr "Spouštím správce aktualizací" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1130,7 +1085,7 @@ msgstr "Změny a popis aktualizace" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" -msgstr "Z_kontrolovat" +msgstr "Zaš_krtnout" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" @@ -1151,6 +1106,11 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Spusťte přechod na vyšší verzi distribuce - tím nainstalujete maximální " +"možný počet aktualizací. \n" +"\n" +"Toto může být způsobeno nedokončeným přechodem na vyšší verzi, neoficiálními " +"balíky se software anebo použitím vývojové verze." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1158,7 +1118,7 @@ msgstr "Zobrazit průběh stahování jednotlivých souborů" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" -msgstr "Aktualizace softwaru" +msgstr "Aktualizace software" #: ../data/glade/UpdateManager.glade.h:18 msgid "" @@ -1170,34 +1130,38 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" -msgstr "U_pgrade" +msgstr "_Přejít na vyšší verzi" #: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" -msgstr "Upgradovat na poslední verzi Ubuntu" +msgstr "Přejít na nejnovější verzi Ubuntu" #: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" -msgstr "_Zkontrolovat" +msgstr "_Zaškrtnout" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "_Pokračovat v upgradu" +msgstr "_Přechod na vyšší verzi distribuce" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" -msgstr "_Nezobrazovat příště tyto informace" +msgstr "Nadále tyto informace _nezobrazovat" #: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" -msgstr "Na_instalovat Aktualizace" +msgstr "Na_instalovat aktualizace" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "U_pgrade" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "změny" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "aktualizace" @@ -1211,14 +1175,13 @@ msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" -msgstr "Síťové aktualizace" +msgstr "Aktualizace z internetu" #: ../data/glade/SoftwareProperties.glade.h:5 msgid "Internet" msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 -#, fuzzy msgid "" "To improve the user experience of Ubuntu please take part in the " "popularity contest. If you do so the list of installed software and how " @@ -1228,17 +1191,17 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"Zúčastněte se, prosím, utkání oblíbenosti aby Ubuntu lépe poznalo zvyky " -"uživatelů. Pokud tak učiníte, seznam nainstalovaného software a četnost " -"použití bude každý týden anonymně odesílána projektu Ubuntu.\n" +"Zúčastněte se, prosím, ankety oblíbenosti, jejímž účelem je lépe poznat " +"zvyky uživatelů Ubuntu. Pokud tak učiníte, seznam nainstalovaného software a " +"četnost jeho použití bude každý týden anonymně odesílána projektu " +"Ubuntu.\n" "\n" -"Výsledky jsou použity ke zlepšení podpory pro oblíbené aplikace a řazení ve " -"výsledcích vyhledávání." +"Výsledky jsou používány ke zlepšení podpory pro oblíbené aplikace a pro " +"určování pořadí aplikací ve výsledcích vyhledávání." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "Přidat _Cdrom" +msgstr "Přidat CD-ROM" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1246,7 +1209,7 @@ msgstr "Ověření" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" -msgstr "_Smazat stažené soubory programů:" +msgstr "_Smazat stažené balíky:" #: ../data/glade/SoftwareProperties.glade.h:12 msgid "Download from:" @@ -1258,23 +1221,23 @@ msgstr "Importovat veřejný klíč od důvěryhodného poskytovate softwaru" #: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" -msgstr "Síťové aktualizace" +msgstr "Aktualizace z Internetu" #: ../data/glade/SoftwareProperties.glade.h:15 msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -"Automaticky instalovány budou pouze bezpečností aktualizace z oficiálních " -"serverů Ubuntu." +"Pouze bezpečností aktualizace z oficiálních serverů Ubuntu budou instalovány " +"automaticky" #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" -msgstr "Obnovit _Původní" +msgstr "Obnovit _výchozí" #: ../data/glade/SoftwareProperties.glade.h:17 msgid "Restore the default keys of your distribution" -msgstr "Obnovit původní klíče vaší distribuce" +msgstr "Obnovit výchozí klíče vaší distribuce" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 @@ -1307,14 +1270,13 @@ msgstr "Stá_hnout aktualizace automaticky, ale neinstalovat je" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" -msgstr "_Importovat klíč" +msgstr "_Importovat soubor s klíči" #: ../data/glade/SoftwareProperties.glade.h:26 msgid "_Install security updates without confirmation" msgstr "_Instalovat bezpečnostní aktualizace bez potvrzení" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1323,12 +1285,12 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Informace ze zdroje jsou zastaralé\n" +"Informace o dostupném software jsou zastaralé\n" "\n" -"K instalaci software a aktualizací je třeba obnovit informace zdroje z nově " -"přidaných nebo změněných zdrojů. \n" +"Pro instalaci software a aktualizací z nových nebo pozměněných zdrojů je " +"nutné obnovit informace o dostupném softwaru.\n" "\n" -"Pro pokračování je třeba funkční připojení k internetu." +"K tomu je nutné funkční připojení k Internetu." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" @@ -1351,7 +1313,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1359,23 +1320,23 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Zadejte úplný řádek pro cestu APT kanálu, který chcete přidat\n" +"Zadejte úplnou specifikaci APT kanálu, který chcete " +"přidat\n" "\n" -"Řádek pro APT obsahuje typ, umístění a součásti kanálu, např. \"deb " +"Řádek pro APT kanál obsahuje typ, umístění a součásti kanálu, např. \"deb " "http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" -msgstr "APT řádek:" +msgstr "Řádka APT:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 msgid "" "Binary\n" "Source" msgstr "" -"Binární\n" -"Zdroj" +"Binární balíky\n" +"Balíky se zdrojovými kódy" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" @@ -1399,7 +1360,7 @@ msgstr "Zobrazit a nainstalovat dostupné aktualizace" #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" -msgstr "Správce Aktualizací" +msgstr "Správce aktualizací" #: ../data/update-manager.schemas.in.h:1 msgid "" @@ -1407,22 +1368,21 @@ msgid "" "available and offer to upgrade (if possible)." msgstr "" "Automaticky kontrolovat, zda je dostupná nová verze současné distribuce a " -"nabídnou přechod na vyšší verzi (pokud je to možné)." +"nabídnout přechod na vyšší verzi, je-li to možné." #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" msgstr "Zkontrolovat nová vydání distribuce" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy msgid "" "If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"Pokud je automatická kontrola aktualizací zakázána, musíte obnovit seznam " -"zdrojů ručne. Tato volba umožní ukrytí upomínky zobrazované v takovém " -"případě." +"Tato volba umožňuje skrytí upomínky na nutnost ručního obnovení seznamu " +"zdrojů zobrazované v případě, že automatická kontrola aktualizací je " +"zakázána." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1434,13 +1394,13 @@ msgstr "Zobrazit detaily aktualizace" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "Uchovává velikost dialogu update-manageru" +msgstr "Uchovává velikost dialogu spřávce aktualizací" #: ../data/update-manager.schemas.in.h:7 msgid "" "Stores the state of the expander that contains the list of changes and the " "description" -msgstr "" +msgstr "Uchovává stav prvku obsahujícího seznam změn a popisů" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" @@ -1450,240 +1410,192 @@ msgstr "Velikost okna" msgid "Configure the sources for installable software and updates" msgstr "Konfigurovat zdroje pro instalovatelný software a aktualizace" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Udržováno komunitou (Universe)" +msgstr "Udržováno komunitou" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Patentované (proprietární) ovladače zařízení" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Nesvobodný (Multiverse)" +msgstr "Nesvobodný software" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom s Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Udržováno komunitou (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Udržováno komunitou (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Udržováno komunitou (Universe)" +msgstr "Software s otevřeným zdrojovým kódem, který je udržován komunitou" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Nesvobodné ovladače" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Patentované (proprietární) ovladače pro zařízení " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" -msgstr "Omezený software (Multiverse)" +msgstr "Software s omezující licencí (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "Software omezený ochrannou známkou nebo jinými právními prostředky" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom s Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Aktualizace přenesené z vyšších verzí distribuce" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom s Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" -msgstr "Ubuntu 5.10 Bezpečnostní Aktualizace" +msgstr "Bezpečnostní aktualizace Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" -msgstr "Ubuntu 5.10 Aktualizace" +msgstr "Aktualizace Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" -msgstr "Ubuntu 5.10 Backports" +msgstr "Software přenesený z vyšší verze distribuce na Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom s Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiálně podporováno" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.04 Bezpečnostní aktualizace" +msgstr "Bezpečnostní aktualizace Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.04 Aktualizace" +msgstr "Aktualizace Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.04 Backports" +msgstr "Aplikace přenesené z vyšších verzí distribuce na Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Udržováno komunitou (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nesvobodný (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom s Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Oficiálně podporované" +msgstr "Již není oficiálně podporováno" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" -msgstr "Omezeno copyrightem" +msgstr "Omezený copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 4.10 Bezpečnostní aktualizace" +msgstr "Bezpečnostní aktualizace Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 4.10 Aktualizace" +msgstr "Aktualizace Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 4.10 Backports" +msgstr "Aplikace přenesené z vyšších verzí distribuce na Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" -msgstr "Debian 3.1 \"Sarge\" Bezpoečnostní Aktualizace" +msgstr "Bezpečnostní Aktualizace Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "DFSG-kompatibilní software s Non-free závislostmi" +msgstr "" +"Software kompatibilní s DFSG, ale závisející na nesvobodných balících" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "Žádný DFSG kompatibilní Software" +msgstr "Software nekompatibilní s DFSG" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Stahuji %li. soubor z %li neznámou rychlostí" @@ -1722,8 +1634,8 @@ msgstr "Žádný DFSG kompatibilní Software" #~ msgstr "" #~ "Prozkoumává se systém\n" #~ "\n" -#~ "Aktualizace softwaru opravují chyby, eliminují bezpečnostní zranitelnosti " -#~ "a poskytují nové funkce." +#~ "Aktualizace softwaru opravují chyby, eliminují bezpečnostní zranitelnosti a " +#~ "poskytují nové funkce." #~ msgid "Oficially supported" #~ msgstr "Oficiálně podporované" @@ -1731,6 +1643,7 @@ msgstr "Žádný DFSG kompatibilní Software" #~ msgid "The following updates will be skipped:" #~ msgstr "Následující aktualizace budou přeskočeny:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Zhruba %li sekund zbývá" @@ -1807,14 +1720,14 @@ msgstr "Žádný DFSG kompatibilní Software" #~ msgstr "Ubuntu 6.06 LTS backporty" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" -#~ "Během prozkoumávání vašich zdrojů nebyla nalezený žádná platná položka " -#~ "pro upgrade.\n" +#~ "Během prozkoumávání vašich zdrojů nebyla nalezený žádná platná položka pro " +#~ "upgrade.\n" #~ msgid "Sections" #~ msgstr "Sekce" #~ msgid "Sections:" -#~ msgstr "Sekce:" +#~ msgstr "Sekce:" \ No newline at end of file diff --git a/po/csb.po b/po/csb.po new file mode 100644 index 00000000..cb3d3943 --- /dev/null +++ b/po/csb.po @@ -0,0 +1,1443 @@ +# Kashubian translation for update-manager +# Copyright (c) 2006 Rosetta Contributors and Canonical Ltd 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-08 04:10+0000\n" +"Last-Translator: Michôł Òstrowsczi \n" +"Language-Team: Kashubian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "Codniowò" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "Co dwa dni" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "Co tidzeń" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "Co dwa tidzenie" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "Co %s dni" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "Pò tidzeniu" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "Pò dwóch tidzeniach" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "Pò miesącu" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "P %s dniach" + +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "%s aktualizacëji" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "%s (%s)" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "Przédny serwera" + +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "Serwera dlô kraju %s" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "Nôblëższi serwera" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "Jine serwerë" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "Kanal òprogramòwania" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "Aktiwny" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "(zdrojowi kòd)" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "Zdrojowi kòd" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +msgid "Import key" +msgstr "Impòrtëjë klucz" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +msgid "Error importing selected file" +msgstr "Fela òbczas impòrtowania wëbrónegò lopkù" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "Wëbróny lopk może nie bëc kluczã abò mòże bëc pòpsëti." + +#: ../SoftwareProperties/SoftwareProperties.py:992 +msgid "Error removing the key" +msgstr "Fela òbczas rëmaniô klucza" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "Nie mòżna bëło rëmnąc klucza. Proszã zgłoszëc to jakno felã." + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" +"Wëstśpiła fela òbczas skanowania platë CD\n" +"\n" +"%s" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "Proszã dac miono dlô platë" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "Paczétë są zmiłkòwé" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:213 +msgid "Can't upgrade required meta-packages" +msgstr "Nie je mòżno zaktualizowac wëmôgónëch meta-paczétów" + +#: ../DistUpgrade/DistUpgradeCache.py:217 +msgid "A essential package would have to be removed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:220 +msgid "Could not calculate the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:221 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "Error authenticating some packages" +msgstr "Fela òbczas ùdowierzaniô niechtërnëch paczétów" + +#: ../DistUpgrade/DistUpgradeCache.py:247 +msgid "" +"It was not possible to authenticate some packages. This may be a transient " +"network problem. You may want to try again later. See below for a list of " +"unauthenticated packages." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:312 +#, python-format +msgid "Can't install '%s'" +msgstr "Nie je mòżno zainstalowac '%s'" + +#: ../DistUpgrade/DistUpgradeCache.py:313 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" +"Nie bëło mòżna zainstalowac wëmôgónegò paczétu. Proszã zgłoszëc to jakno " +"felã. " + +#: ../DistUpgrade/DistUpgradeCache.py:320 +msgid "Can't guess meta-package" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:321 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:74 +msgid "Failed to add the CD" +msgstr "Nie je mòżno dodac platë CD" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +#, python-format +msgid "" +"There was a error adding the CD, the upgrade will abort. Please report this " +"as a bug if this is a valid Ubuntu CD.\n" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:107 +msgid "Reading cache" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:155 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:248 +msgid "No valid mirror found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +#, python-format +msgid "" +"While scaning your repository information no mirror entry for the upgrade " +"was found.This cam happen if you run a internal mirror or if the mirror " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:266 +msgid "Generate default sources?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:267 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:301 +msgid "Repository information invalid" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:308 +msgid "Third party sources disabled" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:309 +msgid "" +"Some third party entries in your sources.list were disabled. You can re-" +"enable them after the upgrade with the 'software-properties' tool or with " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:358 +msgid "Error during update" +msgstr "Fela òbczas aktualizacëji" + +#: ../DistUpgrade/DistUpgradeControler.py:359 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:368 +msgid "Not enough free disk space" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:369 +#, python-format +msgid "" +"The upgrade aborts now. Please free at least %s of disk space on %s. Empty " +"your trash and remove temporary packages of former installations using 'sudo " +"apt-get clean'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:440 +msgid "Do you want to start the upgrade?" +msgstr "CZë chcesz zrëszëc aktualizacëjã?" + +#: ../DistUpgrade/DistUpgradeControler.py:460 +msgid "Could not install the upgrades" +msgstr "Instalacëja aktualizacëji nie darzëła sã." + +#: ../DistUpgrade/DistUpgradeControler.py:461 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:479 +msgid "Could not download the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:480 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:516 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:517 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:552 +msgid "Remove obsolete packages?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Skip This Step" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:553 +msgid "_Remove" +msgstr "_Rëmôj" + +#: ../DistUpgrade/DistUpgradeControler.py:563 +msgid "Error during commit" +msgstr "Fela òbczas zacwierdzaniô" + +#: ../DistUpgrade/DistUpgradeControler.py:564 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:576 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:632 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 +msgid "Checking package manager" +msgstr "Sprôwdzanié menadżera paczétów" + +#: ../DistUpgrade/DistUpgradeControler.py:671 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:672 +msgid "" +"Preparing the system for the upgrade failed. Please report this as a bug " +"against the 'update-manager' package and include the files in /var/log/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:695 +msgid "Updating repository information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:720 +msgid "Invalid package information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:721 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:733 +msgid "Asking for confirmation" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:737 +msgid "Upgrading" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:744 +msgid "Searching for obsolete software" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:749 +msgid "System upgrade is complete." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, python-format +msgid "About %s remaining" +msgstr "Òsta kòl %s" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "Zacwierdzanié zmianów" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "Nie bëło mòżno zainstalowac '%s'" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +msgid "" +"The upgrade aborts now. Please report this bug against the 'update-manager' " +"package and include the files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" +"Zastãpic swójny lopk kònfigùracëji\n" +"'%s'?" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 +msgid "The 'diff' command was not found" +msgstr "Pòlét 'diff' nie òsta nalazłé" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +msgid "A fatal error occured" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +msgid "" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "%d paczét òstanié rëmniãty." +msgstr[1] "%d paczétë òstaną rëmniãte." +msgstr[2] "%d paczétów òstaną rëmniãtëch." + +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "%d nowi paczétë òstaną zainstalowóne." +msgstr[1] "%d nowi paczét òstanie zainstalowóny." +msgstr[2] "%d nowëch paczétów òstanie zainstalowónëch." + +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "%d paczét òstanié zaktualizowóny." +msgstr[1] "%d paczétë òstaną zaktualizowóne." +msgstr[2] "%d paczétów òstanie zaktualizowónëch." + +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +msgid "To prevent data loss close all open applications and documents." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../UpdateManager/UpdateManager.py:622 +msgid "Your system is up-to-date" +msgstr "Twojô systema je fùl zaktualizowónô" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" +"Felëjë przistãpnëch aktualizacëjów. Aktualizacëjô òstanié òprzestónô." + +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#, python-format +msgid "Remove %s" +msgstr "Rëmôj %s" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#, python-format +msgid "Install %s" +msgstr "Instalëjë %s" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#, python-format +msgid "Upgrade %s" +msgstr "Aktualizëjë %s" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "%li dni %li gòdzin %li minut" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "%li gòdzin %li minut" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "%li minut" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "%li sekùnd" + +#. 56 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:109 +msgid "Reboot required" +msgstr "Wëmògóne je zrëszenié kòmpùtra znowa" + +#: ../DistUpgrade/DistUpgradeView.py:110 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" +"Aktualizacëjô òsta zakùńczonô ë nót je zrëszëc kòmpùtr znowa. Zrobic to terô?" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr " " + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "Zrëszë kòpmùtr znowa, żebë zakùńczëc aktualizacëjã" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "Aktualizacëjô Ubuntu do wersëji 6.10" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "Zjinaczi midze lopkama" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "Zrëszanié znowa systemë" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "Terminal" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "Ò_przestanié aktualizacëji" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 +msgid "_Replace" +msgstr "_Zastãpi" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "_Zrëszë znowa" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "_Startëjë aktualizacëjã" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "" + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:478 +#, python-format +msgid "Version %s: \n" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:539 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:566 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:572 +msgid "_Check All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 +#, python-format +msgid "Download size: %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:633 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ../UpdateManager/UpdateManager.py:666 +msgid "Please wait, this can take some time." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:668 +msgid "Update is complete" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:719 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:826 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:830 +#, python-format +msgid "Version %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:832 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:843 +msgid "Your distribution is not supported anymore" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:844 +msgid "" +"You will not get any further security fixes or critical updates. Upgrade to " +"a later version of Ubuntu Linux. See http://www.ubuntu.com for more " +"information on upgrading." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:863 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:902 +msgid "Software index is broken" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:903 +msgid "" +"It is impossible to install or remove any software. Please use the package " +"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " +"this issue at first." +msgstr "" + +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"To improve the user experience of Ubuntu please take part in the " +"popularity contest. If you do so the list of installed software and how " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "" +"If automatic checking for updates is disabled, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "" + +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "" + +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "" + +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "" + +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "" + +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "" + +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "" + +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "" \ No newline at end of file diff --git a/po/da.po b/po/da.po index 1d1b4a93..9d21e317 100644 --- a/po/da.po +++ b/po/da.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:41+0000\n" -"Last-Translator: Mathias-K \n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 15:55+0000\n" +"Last-Translator: Lasse Bang Mikkelsen \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,7 +34,7 @@ msgid "Every two weeks" msgstr "Hver anden uge" #: ../SoftwareProperties/SoftwareProperties.py:144 -#, fuzzy, python-format +#, python-format msgid "Every %s days" msgstr "Hver %s. dag" @@ -55,7 +55,6 @@ msgstr "Efter en måned" msgid "After %s days" msgstr "Efter %s dage" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "%s opdateringer" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Hovedserver" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "Fejl ved fjernelse af nøgle" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Den valgte nøgle kunne ikke fjernes. Rapportér venligst dette som en fejl." @@ -166,7 +164,6 @@ msgstr "Kan ikke opgradere de krævede metapakker" msgid "A essential package would have to be removed" msgstr "Det ville være nødvendigt at fjerne en vital pakke" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunne ikke beregne opgraderingen" @@ -183,7 +180,6 @@ msgstr "" "Rapportér venligst denne fejl mod \"update-manager\"-pakken og inkludér " "filerne i /var/log/dist-upgrade/ i fejlrapporten." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fejl ved godkendelse af nogle pakker" @@ -211,7 +207,6 @@ msgstr "" "Det var umuligt at installere en påkrævet pakke. Rapportér venligst dette " "som en fejl. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan ikke gætte metapakke" @@ -294,7 +289,6 @@ msgstr "" "her, vil alle linjer \"%s\" blive erstattet af \"%s\".\n" "Hvis du vælger \"Nej\", vil opdateringen blive annulleret." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generér standardkilder?" @@ -366,7 +360,6 @@ msgstr "" "papirkurv og fjern midlertidige pakker fra tidligere installationer ved at " "køre 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Vil du starte opgraderingen?" @@ -424,7 +417,6 @@ msgid "Remove obsolete packages?" msgstr "Fjern forældede pakker?" #: ../DistUpgrade/DistUpgradeControler.py:553 -#, fuzzy msgid "_Skip This Step" msgstr "_Spring dette trin over" @@ -444,7 +436,6 @@ msgstr "" "Et problem opstod under oprydningen. Se venligst længere nede for mere " "information. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Genskaber oprindelig systemtilstand" @@ -455,26 +446,24 @@ msgid "Fetching backport of '%s'" msgstr "Henter tilbageportering af \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Undersøger pakkehåndtering" #: ../DistUpgrade/DistUpgradeControler.py:671 -#, fuzzy msgid "Preparing the upgrade failed" -msgstr "Klargør opgraderingen" +msgstr "Klargøring af opgraderingen fejlede" #: ../DistUpgrade/DistUpgradeControler.py:672 -#, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -"Der forekom et uløseligt problem under beregningen af opgraderingen. " -"Rapportér venligst dette som en fejl." +"Klargøring af systemet til opgraderingen fejlede. Rapportér venligst denne " +"fejl mod \"update-manager\"-pakken og inkludér filerne i /var/log/dist-" +"upgrade/ i fejlrapporten." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -515,7 +504,6 @@ msgstr "Søger efter forældet software" msgid "System upgrade is complete." msgstr "Systemopgradering er fuldført" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -531,19 +519,18 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Henter fil %li af %li med %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Omkring %s tilbage" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" msgstr "Henter fil %li af %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Anvender ændringer" @@ -558,11 +545,11 @@ msgid "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Opgraderingen afbrydes nu. Rapportér venligst denne fejl mod \"update-manager" -"\"-pakken og inkludér filerne i /var/log/dist-upgrade/ i fejlrapporten." +"Opgraderingen afbrydes nu. Rapportér venligst denne fejl mod \"update-" +"manager\"-pakken og inkludér filerne i /var/log/dist-upgrade/ i " +"fejlrapporten." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -571,25 +558,27 @@ msgstr "" "Udskift den tilpassede konfigurationsfil\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Du mister alle ændringer du har lavet til denne konfigurationsfil, hvis du " +"vælger at erstatte den med en nyere version." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Kommandoen \"diff\" blev ikke fundet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Der opstod en alvorlig fejl" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Rapportér venligst dette som en fejl og inkludér filerne /var/log/dist-" @@ -598,29 +587,28 @@ msgstr "" "Din oprindelige sources.list blev gemt i /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakke vil blive fjernet." msgstr[1] "%d pakker vil blive fjernet." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d ny pakke vil blive installeret." msgstr[1] "%d nye pakker vil blive installeret." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pakke vil blive opgraderet." msgstr[1] "%d pakker vil blive opgraderet." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -631,7 +619,7 @@ msgstr "" "\n" "Du skal hente i alt %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -639,17 +627,16 @@ msgstr "" "Hentning og installation af opgraderingen kan tage flere timer og kan ikke " "afbrydes senere." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "Luk alle åbne programmer og dokumenter for at undgå tab af data." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Dit system er opdateret" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -657,17 +644,17 @@ msgstr "" "Der er ingen opgraderinger tilgængelige for dit system. Opgraderingen vil nu " "blive afbrudt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Fjern %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Installér %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Opgradér %s" @@ -693,13 +680,14 @@ msgid "%li seconds" msgstr "%li sekunder" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Denne hentning vil tage omkring %s med en 1 Mbit DSL-forbindelse og omkring " +"%s med et 56k modem" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -715,7 +703,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -758,7 +745,6 @@ msgid "Difference between the files" msgstr "Forskel mellem filerne" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" msgstr "Henter og installerer opgraderingerne" @@ -779,19 +765,19 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Genoptag opgradering" +msgstr "_Afbryd opgradering" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Fortsæt" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Behold" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Erstat" @@ -808,9 +794,8 @@ msgid "_Resume Upgrade" msgstr "_Genoptag opgradering" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_Genoptag opgradering" +msgstr "_Begynd opgradering" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -828,7 +813,6 @@ msgstr "Kunne ikke hente udgivelsesnoterne" msgid "Please check your internet connection." msgstr "Undersøg venligst din internetforbindelse" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Kunne ikke køre opgraderingsværktøjet" @@ -917,32 +901,29 @@ msgid "The list of changes is not available" msgstr "Listen med ændringer er ikke tilgængelig" #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "Listen med ændringer er ikke klar endnu. Prøv venligst igen senere." +msgstr "" +"Listen med ændringer er ikke klar endnu.\n" +"Prøv venligst igen senere." #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Fejl ved hentning af ændringslisten. Undersøg venligst din " -"internetforbindelse." +"Fejl ved hentning af ændringslisten.\n" +"Undersøg venligst din internetforbindelse." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Vigtige sikkerhedsopdateringer" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Anbefalede opdateringer" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Foreslåede opdateringer" @@ -955,7 +936,6 @@ msgstr "Tilbageporteringer" msgid "Distribution updates" msgstr "Distributionsopdateringer" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Andre opdateringer" @@ -966,7 +946,6 @@ msgid "Version %s: \n" msgstr "Version %s: \n" #: ../UpdateManager/UpdateManager.py:539 -#, fuzzy msgid "Downloading list of changes..." msgstr "Henter listen med ændringer..." @@ -978,7 +957,6 @@ msgstr "_Fjern alle afkrydsninger" msgid "_Check All" msgstr "_Afkryds alle" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1013,7 +991,6 @@ msgstr "Fra version %(old_version)s til %(new_version)s" msgid "Version %s" msgstr "Version %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1030,15 +1007,14 @@ msgid "" "information on upgrading." msgstr "" "Du vil ikke modtage yderligere sikkerhedrettelser eller kritiske " -"opdateringer. Opgradér til en senere version af Ubuntu Linux. Se http://www." -"ubuntu.com (engelsk) for mere information om opgradering." +"opdateringer. Opgradér til en senere version af Ubuntu Linux. Se " +"http://www.ubuntu.com (engelsk) for mere information om opgradering." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Ny distributionsudgivelse \"%s\" er tilgængelig" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Softwareindekset er ødelagt" @@ -1050,26 +1026,22 @@ msgid "" "this issue at first." msgstr "" "Det er ikke muligt at installere eller fjerne software. Brug venligst " -"pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo apt-get install -f" -"\" i en terminal for at fikse dette problem først." +"pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo apt-get install -" +"f\" i en terminal for at fikse dette problem først." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Intet" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1095,8 +1067,8 @@ msgstr "Hold dit system opdateret" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Ikke alle opdateringer kan installeres\r\n" -"\r\n" +"Ikke alle opdateringer kan installeres \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1124,7 +1096,6 @@ msgid "Description" msgstr "Beskrivelse" #: ../data/glade/UpdateManager.glade.h:12 -#, fuzzy msgid "Release Notes" msgstr "Udgivelsesnoter" @@ -1182,10 +1153,14 @@ msgid "_Install Updates" msgstr "_Installér opdateringer" #: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "_Opgradér" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "ændringer" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "opdateringer" @@ -1322,7 +1297,6 @@ msgid "Comment:" msgstr "Kommentar:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 -#, fuzzy msgid "Components:" msgstr "Komponenter:" @@ -1357,7 +1331,6 @@ msgid "APT line:" msgstr "APT-linje:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 -#, fuzzy msgid "" "Binary\n" "Source" @@ -1386,7 +1359,6 @@ msgid "Show and install available updates" msgstr "Vis og installér tilgængelige opdateringer" #: ../data/update-manager.desktop.in.h:2 -#, fuzzy msgid "Update Manager" msgstr "Opdateringshåndtering" @@ -1413,7 +1385,6 @@ msgstr "" "påmindelsen skjules i det tilfælde." #: ../data/update-manager.schemas.in.h:4 -#, fuzzy msgid "Remind to reload the channel list" msgstr "Påmind om at genopfriske kanallisten" @@ -1433,7 +1404,6 @@ msgstr "" "Tilstanden for udfolderen der indeholder listen med ændringer og beskrivelser" #: ../data/update-manager.schemas.in.h:8 -#, fuzzy msgid "The window size" msgstr "Vinduesstørrelsen" @@ -1441,234 +1411,190 @@ msgstr "Vinduesstørrelsen" msgid "Configure the sources for installable software and updates" msgstr "Konfigurér kilderne for installérbar software og opdateringer" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Vedligeholdt af fællesskabet" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietære drivere til enheder" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Ikke-frit software" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cd-rom med Ubuntu 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -#, fuzzy msgid "Canonical supported Open Source software" -msgstr "Vedligeholdt af fællesskabet (Universe)" +msgstr "Fri software understøttet af Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Vedligeholdt af fællesskabet (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Fri software vedligeholdt af fællesskabet" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Proprietære drivere" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietære drivere til enheder " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Ikke-frit software (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "Software begrænset af ophavsret eller legale problemer" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cd-rom med Ubuntu 6.06 LTS \"Dapper Drake\"" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Tilbageporterede opdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cd-rom med Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 sikkerhedsopdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 opdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 tilbageporteringer" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cd-rom med Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Understøttet officielt" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 sikkerhedsopdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 opdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 tilbageporteringer" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Vedligeholdt af fællesskabet (universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ikke-frit (multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cd-rom med Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Ikke længere officielt supporteret" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begrænset ophavsret" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 sikkerhedsopdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 opdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 tilbageporteringer" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" sikkerhedsopdateringer" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibel software med ikke-frie afhængigheder" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Ikke-DFSG-kompatibel software" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Henter fil %li af %li med ukendt hastighed" @@ -1691,8 +1617,7 @@ msgstr "Ikke-DFSG-kompatibel software" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Opgraderer til Ubuntu 6.06 LTS" +#~ "Opgraderer til Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1711,17 +1636,17 @@ msgstr "Ikke-DFSG-kompatibel software" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Nogle opdateringer kræver yderligere software. Brug funktionen \"Vælg " -#~ "alle opgraderinger\" i pakkehåndteringsprogrammet \"Synaptic\" eller kør " -#~ "\"sudo apt-get dist-upgrade\" i en terminal for at opdatere dit system " -#~ "fuldstændigt." +#~ "Nogle opdateringer kræver yderligere software. Brug funktionen \"Vælg alle " +#~ "opgraderinger\" i pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo " +#~ "apt-get dist-upgrade\" i en terminal for at opdatere dit system fuldstændigt." #~ msgid "The following updates will be skipped:" #~ msgstr "Følgende opdateringer vil blive sprunget over:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Tid tilbage(ca.): %li sekunder" @@ -1798,4 +1723,4 @@ msgstr "Ikke-DFSG-kompatibel software" #~ msgstr "Ubuntu 6.06 LTS Opdateringer" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Backports" +#~ msgstr "Ubuntu 6.06 LTS Backports" \ No newline at end of file diff --git a/po/de.po b/po/de.po index 66fd6195..f528a482 100644 --- a/po/de.po +++ b/po/de.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:37+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: Sebastian Heinlein \n" "Language-Team: German GNOME Translations \n" "MIME-Version: 1.0\n" @@ -56,7 +56,6 @@ msgstr "Nach einem Monat" msgid "After %s days" msgstr "Nach %s Tagen" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "%s Aktualisierungen" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Haupt-Server" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -127,13 +124,14 @@ msgid "Error removing the key" msgstr "Fehler beim Entfernen des Schlüssels" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Der gewählte Schlüssel konnte nicht entfernt werden. Bitte erstellen Sie " "hierfür einen Fehlerbericht." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -172,7 +170,6 @@ msgstr "Die erforderlichen Metapakete können nicht aktualisiert werden" msgid "A essential package would have to be removed" msgstr "Ein grundlegendes Paket müsste entfernt werden" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Die Aktualisierung konnte nicht berechnet werden" @@ -188,7 +185,6 @@ msgstr "" "Ein unlösbares Problem trat beim Berechnen der Aktualisierung auf. Bitte " "erstellen Sie hierfür einen Fehlerbericht." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fehler bei der Echtheitsbestätigung einiger Pakete" @@ -217,7 +213,6 @@ msgstr "" "Ein erforderliches Paket konnte nicht installiert werden. Bitte erstellen " "Sie hierfür einen Fehlerbericht. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Metapaket konnte nicht bestimmt werden" @@ -263,7 +258,8 @@ msgstr "Zwischenspeicher wird ausgelesen" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "Sollen die Daten für die Systemerweiterung aus dem Netz geholt werden?" +msgstr "" +"Sollen die Daten für die Systemerweiterung aus dem Netz geholt werden?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -301,7 +297,6 @@ msgstr "" "wählen, werden alle Einträge von '%s' bis '%s' aktualisiert.\n" "Wenn Sie 'Nein' wählen, wird das Update abgebrochen." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Standardquellen generieren?" @@ -314,8 +309,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Nach dem Überprüfen Ihrer 'sources.list' wurde kein gültiger Eintrag für '%" -"s' gefunden.\n" +"Nach dem Überprüfen Ihrer 'sources.list' wurde kein gültiger Eintrag für " +"'%s' gefunden.\n" "\n" "Sollen Standardeinträge für '%s' hinzugefügt werden? Wenn Sie 'Nein' " "auswählen, wird das Update abgebrochen." @@ -375,7 +370,6 @@ msgstr "" "Plattenplatz auf %s frei. Leeren Sie Ihren Mülleimer und entfernen die " "temporäre Pakete von frühreren Installation mit 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Möchten Sie die Aktualisierung starten?" @@ -456,7 +450,6 @@ msgstr "" "Ein Problem trat beim Aufräumen auf. Bitte lesen Sie die unten stehende " "Nachricht für nähere Informationen. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Wiederherstellen des alten Systemzustandes" @@ -464,10 +457,9 @@ msgstr "Wiederherstellen des alten Systemzustandes" #: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Lade Rückportierung von '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -527,7 +519,6 @@ msgstr "Nach veralteter Software wird gesucht" msgid "System upgrade is complete." msgstr "Aktualisierung ist abgeschlossen." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -543,7 +534,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Datei %li von %li wir mit %s/s heruntergeladen" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Es verbleiben ungefähr %s" @@ -555,7 +546,6 @@ msgstr "Datei %li von %li wird heruntergeladen" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Änderungen werden angewendet" @@ -574,9 +564,8 @@ msgstr "" "als einen Fehler des Pakets 'update-manager' und fügen Sie die Dateien in " "dem Verzeichnis '/var/log/dist-upgrade/' Ihrer Fehlermeldung hinzu." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -584,26 +573,29 @@ msgstr "" "Die Konfigurationsdatei\n" "»%s« ersetzen?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Sie werden alle von Ihnen in der Konfigurationsdatei vorgenommenen " +"Veränderungen verlieren, wenn Sie die Datei durch eine neuere Version " +"ersetzen." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Das 'diff'-Kommando konnte nicht gefunden werden" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Ein fataler Fehler ist aufgetreten" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Bitte melden Sie dies als Bug und fügen Sie die Dateien /var/log/dist-" @@ -613,30 +605,29 @@ msgstr "" "gespeichert." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s Paket wird entfernt." msgstr[1] "%s Pakete werden entfernt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s neues Paket wird installiert." msgstr[1] "%s neue Pakete werden installiert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s Paket wird aktualisiert." msgstr[1] "%s Pakete werden aktualisiert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -646,7 +637,7 @@ msgstr "" "\n" "Insgesamt müssen %s heruntergeladen werden. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -654,35 +645,34 @@ msgstr "" "Die Aktualisierung kann mehrere Stunden in Anspruch nehmen. Desweiteren kann " "sie zu keinem späteren Zeitpunkt mehr abgebrochen werden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Um Datenverlust zu vermeiden, schließen Sie alle offenen Anwendungen und " "Dokumente." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Ihr System ist auf dem aktuellen Stand" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "%s wird entfernt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "%s wird installiert" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "%s wird aktualisiert" @@ -708,13 +698,14 @@ msgid "%li seconds" msgstr "%li Sekunden" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Das Herunterladen wird ungefähr %s mit einer 1Mbit DSL-Verbindung und " +"ungefähr %s mit einer 56k Modemverbindung dauern" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -730,7 +721,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -801,13 +791,14 @@ msgstr "_Aktualisierung fortsetzen" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Fortsetzen" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Beibehalten" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Ersetzen" @@ -844,7 +835,6 @@ msgstr "Freigabemitteilungen konnten nicht heruntergeladen werden" msgid "Please check your internet connection." msgstr "Bitte überprüfen Sie Ihre Internet-Verbindung." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Konnte die Anwendung zur Aktualisierung nicht starten" @@ -922,12 +912,12 @@ msgstr "" "Möglicherweise gibt es Probleme im Netzwerk oder am Server. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Datei %li von %li wird mit %s/s heruntergeladen" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Datei %li von %li wird mit %s/s heruntergeladen" @@ -953,17 +943,14 @@ msgstr "" "Die Liste mit Änderungen konnte nicht heruntergeladen werden. Bitte " "überprüfen Sie Ihre Internet-Verbindung." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Wichtige Sicherheitsaktualisierungen" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Empfohlene Updates" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Vorgeschlagene Aktualisierungen" @@ -978,7 +965,6 @@ msgstr "Ubuntu 5.10 Backports" msgid "Distribution updates" msgstr "_Aktualisierung fortsetzen" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Andere Aktualisierungen" @@ -1002,7 +988,6 @@ msgstr "" msgid "_Check All" msgstr "_Prüfen" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1029,7 +1014,7 @@ msgid "Checking for updates" msgstr "Nach verfügbaren Aktualisierungen suchen" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Neue Version: %s (Größe: %s)" @@ -1038,7 +1023,6 @@ msgstr "Neue Version: %s (Größe: %s)" msgid "Version %s" msgstr "Version %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1056,15 +1040,15 @@ msgid "" msgstr "" "Sie werden keine weiteren Aktualisierungen zur Behebung von " "Sicherheitslücken oder kritischen Fehlern erhalten. Aktualisieren Sie Ihr " -"System auf eine neuere Version von Ubuntu Linux. Auf http://www.ubuntuusers." -"de oder http://www.ubuntu.com finden Sie weitere Informationen hierzu." +"System auf eine neuere Version von Ubuntu Linux. Auf " +"http://www.ubuntuusers.de oder http://www.ubuntu.com finden Sie weitere " +"Informationen hierzu." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Neue Version '%s' der Distribution ist freigegeben" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Der Software-Index ist beschädigt" @@ -1079,23 +1063,19 @@ msgstr "" "verwenden Sie zuerst die Synaptic Paketverwaltung oder führen Sie »sudo apt-" "get install -f« im Terminal aus, um dieses Problem zu beheben." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Keine" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1112,8 +1092,8 @@ msgstr "" "Sie müssen manuell auf Aktualisierungen prüfen\n" "\n" "Ihr System prüft nicht automatisch auf verfügbare Aktualisierungen. Sie " -"können dieses Verhalten über die Menüpunkte \"System\" -> \"Systemverwaltung" -"\" -> \"Software Eigenschaften\" ändern." +"können dieses Verhalten über die Menüpunkte \"System\" -> " +"\"Systemverwaltung\" -> \"Software Eigenschaften\" ändern." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1207,10 +1187,15 @@ msgstr "Aktualisierungen _installieren" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "_Aktualisieren" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Änderungen" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "Aktualisierungen" @@ -1473,231 +1458,187 @@ msgstr "" "Software-Kanäle und Einstellungen für die automatische Aktualisierung " "festlegen" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Von der Ubuntu-Gemeinde betreut" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietäre Gerätetreiber" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Eingeschränkte Software" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM mit Ubuntu 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Von der Gemeinschaft betreut (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Von der Gemeinschaft betreut (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Von der Ubuntu-Gemeinde betreute Open Source-Software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Proprietäre Treiber" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietäre Gerätetreiber " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Eingeschränkte Software (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM mit Ubuntu 6.06 LTS »Dapper Drake«" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Zurückportierte Aktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM mit Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Aktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM mit Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Offiziell unterstützt" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Sicherheitsaktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Aktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Von der Gemeinschaft verwaltet (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Unfrei (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM mit Ubuntu 4.10 »Warty Warthog«" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Einige Programme werden nicht mehr länger offiziell unterstützt" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Eingeschränktes Copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Sicherheitsaktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Aktualisierungen" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Sicherheitsaktualisierungen" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatible Software mit unfreien Abhängigkeiten" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Nicht DFSG-kompatible Software" @@ -1705,6 +1646,7 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Urheberrechtlich oder gesetzlich eingeschränkte Software" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "" #~ "Datei %li von %li wird mit unbekannter Geschwindigkeit heruntergeladen" @@ -1728,8 +1670,7 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Auf Ubuntu 6.10 aktualisieren" +#~ "Auf Ubuntu 6.10 aktualisieren" #~ msgid "Important security updates of Ubuntu" #~ msgstr "Wichtige Sicherheitsaktualisierungen von Ubuntu" @@ -1756,8 +1697,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Einige Aktualisierungen erfordern das Entfernen von anderen Anwendungen. " #~ "Verwenden Sie die Funktion »Aktualisierungen vormerken« in der Synaptic " @@ -1767,6 +1708,7 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "The following updates will be skipped:" #~ msgstr "Die folgenden Aktualisierungen werden ausgelassen:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Ungefähr %li Sekunden verbleibend" @@ -1775,8 +1717,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte erstellen Sie hierfür " -#~ "einen Fehlerbericht." +#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte erstellen Sie hierfür einen " +#~ "Fehlerbericht." #~ msgid "Upgrading Ubuntu" #~ msgstr "Ubuntu aktualisieren" @@ -1795,8 +1737,7 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Bitte schließen Sie zuerst andere Anwendungen wie 'aptitude' oder " -#~ "'Synaptic'." +#~ "Bitte schließen Sie zuerst andere Anwendungen wie 'aptitude' oder 'Synaptic'." #~ msgid "Channels" #~ msgstr "Kanäle" @@ -1847,12 +1788,12 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "The upgrade aborts now. Please free at least %s of disk space. Empty your " -#~ "trash and remove temporary packages of former installations using 'sudo " -#~ "apt-get clean'." +#~ "trash and remove temporary packages of former installations using 'sudo apt-" +#~ "get clean'." #~ msgstr "" -#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte schaffen Sie mindestens %" -#~ "s an freien Festplattenspeicher. Leeren Sie ihren Mülleimer und entfernen " -#~ "Sie temporäre Pakete von früheren Installationen mit »sudo apt-get clean«." +#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte schaffen Sie mindestens %s " +#~ "an freien Festplattenspeicher. Leeren Sie ihren Mülleimer und entfernen Sie " +#~ "temporäre Pakete von früheren Installationen mit »sudo apt-get clean«." #~ msgid "%s remaining" #~ msgstr "%s verbleiben" @@ -1861,27 +1802,27 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgstr "Keinen gültigen Eintrag gefunden" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Beim Lesen Ihrer Kanalliste konnte kein gültiger Eintrag für die " #~ "Aktualisierung gefunden werden.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "is now run (dpkg --configure -a)." #~ msgstr "" #~ "Die Aktualisierung wird jetzt abgebrochen. Ihr System könnte in einem " #~ "unbenutzbaren Zustand sein. Ein Wiederherstellungsversuch wird nun " #~ "unternommen (dpkg --configure -a)." #~ msgid "" -#~ "Please report this as a bug and include the files '/var/log/dist-upgrade." -#~ "log' and '/var/log/dist-upgrade-apt.log' in your report. The upgrade " +#~ "Please report this as a bug and include the files '/var/log/dist-" +#~ "upgrade.log' and '/var/log/dist-upgrade-apt.log' in your report. The upgrade " #~ "aborts now. " #~ msgstr "" -#~ "Bitte füllen Sie einen Fehlerbericht hierzu aus und legen Sie die Dateien " -#~ "» »/var/log/dist-upgrade.log« und »/var/log/dist-upgrade-apt.log« Ihren " +#~ "Bitte füllen Sie einen Fehlerbericht hierzu aus und legen Sie die Dateien » " +#~ "»/var/log/dist-upgrade.log« und »/var/log/dist-upgrade-apt.log« Ihren " #~ "Bericht bei. Die Aktualisierung wird jetzt abgebrochen. " #~ msgid "" @@ -1926,14 +1867,13 @@ msgstr "Nicht DFSG-kompatible Software" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Änderungen werden heruntergeladen\n" +#~ "Änderungen werden " +#~ "heruntergeladen\n" #~ "\n" #~ "Die Änderungen müssen vom zentralen Server abgerufen werden" #~ msgid "Show available updates and choose which to install" -#~ msgstr "" -#~ "Verfügbare Aktualisierungen anzeigen und zu installierende auswählen" +#~ msgstr "Verfügbare Aktualisierungen anzeigen und zu installierende auswählen" #, fuzzy #~ msgid "Error fetching the packages" @@ -1960,14 +1900,13 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Verfügbare Aktualisierungen\n" #~ "\n" -#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung " -#~ "kann durch einen Klick auf die Schaltfläche »Installieren« vorgenommen " -#~ "werden." +#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung kann " +#~ "durch einen Klick auf die Schaltfläche »Installieren« vorgenommen werden." #~ msgid "Repository" #~ msgstr "Repository" @@ -1996,12 +1935,12 @@ msgstr "Nicht DFSG-kompatible Software" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Hinzufügen einer neuen Schlüsseldatei zum vertrauenswürdigen " -#~ "Schlüsselbund. Stellen Sie sicher, dass der Schlüssel über eine sichere " -#~ "Verbindung bezogen wurde und dass der Besitzer vertrauenswürdig ist. " +#~ "Hinzufügen einer neuen Schlüsseldatei zum vertrauenswürdigen Schlüsselbund. " +#~ "Stellen Sie sicher, dass der Schlüssel über eine sichere Verbindung bezogen " +#~ "wurde und dass der Besitzer vertrauenswürdig ist. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "_Temporäre Paketdateien automatisch löschen" @@ -2023,12 +1962,11 @@ msgstr "Nicht DFSG-kompatible Software" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Zurücksetzen der Vorgabeschlüssel, welche mit der Distribution " -#~ "ausgeliefert wurden. Vom Benutzer installierte Schlüssel werden dadurch " -#~ "nicht geändert." +#~ "Zurücksetzen der Vorgabeschlüssel, welche mit der Distribution ausgeliefert " +#~ "wurden. Vom Benutzer installierte Schlüssel werden dadurch nicht geändert." #~ msgid "Set _maximum size for the package cache" #~ msgstr "_Begrenzen der Größe des Paketzwischenspeichers" @@ -2053,8 +1991,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" #~ "Dies bedeutet, dass einige Abhängigkeiten der installierten Pakete nicht " -#~ "aufgelöst sind. Verwenden Sie bitte »Synaptic« oder »apt-get« zur " -#~ "Behebung des Problems." +#~ "aufgelöst sind. Verwenden Sie bitte »Synaptic« oder »apt-get« zur Behebung " +#~ "des Problems." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "Es ist nicht möglich, alle Pakete zu aktualisieren." @@ -2062,13 +2000,12 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" -#~ "Dies bedeutet, dass neben der momentanen Aktualisierung der Pakete " -#~ "weitere Aktionen, wie das Installieren oder Entfernen von Paketen, " -#~ "notwendig sind. Verwenden Sie bitte die »Intelligente Aktualisierung« von " -#~ "Synaptic oder »apt-get dist-upgrade« zur Behebung des Problems." +#~ "Dies bedeutet, dass neben der momentanen Aktualisierung der Pakete weitere " +#~ "Aktionen, wie das Installieren oder Entfernen von Paketen, notwendig sind. " +#~ "Verwenden Sie bitte die »Intelligente Aktualisierung« von Synaptic oder »apt-" +#~ "get dist-upgrade« zur Behebung des Problems." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" @@ -2079,8 +2016,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgstr "Die Aktualisierungen werden ausgeführt." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Es kann immer nur eine Anwendung zur Paketverwaltung zur gleichen Zeit " #~ "ausgeführt werden. Bitte beenden Sie zuerst die andere Anwendung." @@ -2093,20 +2030,20 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Verwenden Sie bitte eine aktuellere Version von Ubuntu-Linux. Für die " #~ "momentan laufende Version werden keine Sicherheits- und andere kritische " -#~ "Aktualisierungen mehr bereitgestellt. Informationen zur " -#~ "Systemaktualisierung finden Sie unter http://www.ubuntulinux.org." +#~ "Aktualisierungen mehr bereitgestellt. Informationen zur Systemaktualisierung " +#~ "finden Sie unter http://www.ubuntulinux.org." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Eine neue Version von Ubuntu ist verfügbar!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Eine neue Version mit dem Codenamen »%s« ist verfügbar. Informationen zur " #~ "Aktualisierung des Systems erhalten Sie unter http://www.ubuntulinux.org." @@ -2116,8 +2053,8 @@ msgstr "Nicht DFSG-kompatible Software" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Es kann immer nur eine Anwendung zur Paketverwaltung zur gleichen Zeit " #~ "ausgeführt werden. Bitte beenden Sie zuerst die andere Anwendung." @@ -2126,8 +2063,7 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgstr "Initialisierung und Abrufen der Aktualisierungsliste..." #~ msgid "You need to be root to run this program" -#~ msgstr "" -#~ "Sie benötigen Administrationsrechte, um diese Anwendung auszuführen." +#~ msgstr "Sie benötigen Administrationsrechte, um diese Anwendung auszuführen." #~ msgid "Edit software sources and settings" #~ msgstr "Bearbeiten der Software-Quellen und Einstellungen" @@ -2150,17 +2086,15 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "Ubuntu CD Image Automatic Signing Key " #~ msgstr "" -#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image " +#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image " #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Verfügbare Aktualisierungen\n" #~ "\n" -#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung " -#~ "kann durch einen Klick auf die Schaltfläche »Installieren« vorgenommen " -#~ "werden." +#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung kann " +#~ "durch einen Klick auf die Schaltfläche »Installieren« vorgenommen werden." \ No newline at end of file diff --git a/po/el.po b/po/el.po index bd4c7c91..0ac6d8ab 100644 --- a/po/el.po +++ b/po/el.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:37+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" @@ -54,7 +54,6 @@ msgstr "Μετά από ένα μήνα" msgid "After %s days" msgstr "Μετά από %s ημέρες" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,7 +61,6 @@ msgstr "%s ενημερώσεις" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Κύριος εξυπηρετητής" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "Σφάλμα απομάκρυνσης κλειδιού" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Το κλειδί που επιλέξατε δεν μπορεί να απομακρυνθεί. Παρακαλώ αναφέρετε αυτό " "ως σφάλμα." @@ -169,7 +167,6 @@ msgstr "Αδυναμία αναβάθμισης απαιτούμενων μετ msgid "A essential package would have to be removed" msgstr "Ένα απαραίτητο πακέτα θα πρέπει να απομακρυνθεί" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Αδυναμία υπολογισμού της αναβάθμισης" @@ -186,7 +183,6 @@ msgstr "" "Παρακαλώ αναφέρετε το ως σφάλμα στο πακέτο 'update-manager' και επισυνάψτε " "στην αναφορά σφάλματος τα αρχεία στο /var/log/dist-upgrade/." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Σφάλμα πιστοποίησης κάποιων πακέτων" @@ -214,7 +210,6 @@ msgstr "" "Δεν ήταν δυνατή η αναβάθμιση του απαιτούμενου πακέτου. Παρακαλώ αναφέρετε το " "ως σφάλμα. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Αδυναμία εύρεσης μετα-πακέτου" @@ -297,7 +292,6 @@ msgstr "" "εδώ 'Ναι' θα ενημερωθούν όλες οι '%s' καταχωρίσεις σε '%s'.\n" " Αν επιλέξετε 'Όχι' η ενημέρωση θα ακυρωθεί." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Δημιουργία προεπιλεγμένων πηγών;" @@ -310,8 +304,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Μετά τον έλεγχο του 'sources.list' δεν βρέθηκε έγκυρη καταχώριση για το '%" -"s'.\n" +"Μετά τον έλεγχο του 'sources.list' δεν βρέθηκε έγκυρη καταχώριση για το " +"'%s'.\n" "\n" "Να προστεθούν οι προεπιλεγμένες καταχωρίσεις για το '%s'; Αν απαντήσετε " "'Όχι' η ενημέρωση θα ακυρωθεί." @@ -370,7 +364,6 @@ msgstr "" "στο %s. Αδειάστε τα απορρίμματα σας και απομακρύνετε τα προσωρινά πακέτα " "προηγούμενων εγκαταστάσεων με την εντολή 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Θέλετε να ξεκινήσετε την αναβάθμιση;" @@ -448,7 +441,6 @@ msgstr "" "Δημιουργήθηκαν ορισμένα προβλήματα κατά την εκκαθάριση. Παρακαλώ δείτε το " "παρακάτω μήνυμα για περισσότερες πληροφορίες. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Γίνεται επαναφορά αρχικής κατάστασης συστήματος" @@ -459,26 +451,24 @@ msgid "Fetching backport of '%s'" msgstr "Λήψη backport του '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Έλεγχος διαχειριστή πακέτων" #: ../DistUpgrade/DistUpgradeControler.py:671 -#, fuzzy msgid "Preparing the upgrade failed" -msgstr "Προετοιμασία της αναβάθμισης" +msgstr "Απέτυχε η προετοιμασία της αναβάθμισης" #: ../DistUpgrade/DistUpgradeControler.py:672 -#, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" "Συνέβηκε ένα ανεπίλυτο πρόβλημα κατά τον υπολογισμό της αναβάθμισης. " -"Παρακαλώ αναφέρετε το ως σφάλμα." +"Παρακαλώ αναφέρετε το ως σφάλμα στο πακέτο 'update-manager' και επισυνάψτε " +"στην αναφορά τα αρχεία του /var/log/dist-upgrade/." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -519,7 +509,6 @@ msgstr "Γίνεται αναζήτηση για παρωχημένο λογισ msgid "System upgrade is complete." msgstr "Η αναβάθμιση συστήματος ολοκληρώθηκε." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -530,24 +519,23 @@ msgid "Fetching is complete" msgstr "Η λήψη ολοκληρώθηκε" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Λήψη αρχείου %li από %li με %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Απομένουν περίπου %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Λήψη αρχείου %li από %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Γίνεται εφαρμογή αλλαγών" @@ -566,8 +554,7 @@ msgstr "" "'update-manager' και συμπεριλάβετε και τα αρχεία του /var/log/dist-upgrade/ " "στην αναφορά σφάλματος." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -576,57 +563,58 @@ msgstr "" "Αντικατάσταση προσαρμοσμένου αρχείου ρύθμισης\n" "'%s';" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Οι αλλαγές που έχετε κάνει σε αυτό το αρχείο ρυθμίσεων θα χαθούν αν " +"επιλέξετε να το αντικαταστήσετε με μια νεότερη έκδοση." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Η εντολή 'diff' δεν βρέθηκε" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Προέκυψε μοιραίο σφάλμα" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Παρακαλώ αναφέρετε το ως σφάλμα και επισυνάψτε τα αρχεία /var/log/dist-" "upgrade/main.log και /var/log/dist-upgrade/apt.log στην αναφορά σας. Η " "αναβάθμιση τώρα θα τερματιστεί. \n" -"Το αρχικό αρχείο sources.list αποθηκεύτηκε στο /etc/apt/sources.list." -"distUpgrade." +"Το αρχικό αρχείο sources.list αποθηκεύτηκε στο " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d πακέτο πρόκειται να απομακρυνθεί." msgstr[1] "%d πακέτα πρόκειται να απομακρυνθούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d νέο πακέτο πρόκειται να εγκατασταθεί." msgstr[1] "%d νέα πακέτα πρόκειται να εγκατασταθούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d πακέτο πρόκειται να αναβαθμιστεί." msgstr[1] "%d πακέτα πρόκειται να αναβαθμιστούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -637,7 +625,7 @@ msgstr "" "\n" "Θα πρέπει να κάνετε συνολική λήψη %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -646,19 +634,18 @@ msgstr "" "Η αναβάθμιση μπορεί να διαρκέσει αρκετές ώρες και δεν είναι δυνατή η ακύρωση " "της αργότερα." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Για να αποφύγετε απώλεια δεδομένων, κλείστε όλες τις ανοικτές εφαρμογές και " "έγγραφα." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Το σύστημα σας είναι ενημερωμένο" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -666,17 +653,17 @@ msgstr "" "Δεν υπάρχουν διαθέσιμες αναβαθμίσεις για το σύστημα σας. Η αναβάθμιση θα " "ακυρωθεί." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Απομάκρυνση %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Εγκατάσταση %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Αναβάθμιση %s" @@ -702,13 +689,14 @@ msgid "%li seconds" msgstr "%li δευτερόλεπτα" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Η λήψη θα διαρκέσει περίπου %s με σύνδεση 1Mbit DSL και περίπου %s με ένα " +"56K μόντεμ." #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -724,7 +712,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -789,19 +776,19 @@ msgid "Terminal" msgstr "Τερματικό" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Συνέχεια αναβάθμισης" +msgstr "Α_κύρωση αναβάθμισης" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Συνέχεια" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Διατήρηση" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "Αντικατά_σταση" @@ -818,9 +805,8 @@ msgid "_Resume Upgrade" msgstr "_Συνέχεια αναβάθμισης" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_Συνέχεια αναβάθμισης" +msgstr "Έναρ_ξη αναβάθμισης" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -838,7 +824,6 @@ msgstr "Αδυναμία λήψης των σημειώσεων έκδοσης" msgid "Please check your internet connection." msgstr "Παρακαλώ ελέγξτε τη σύνδεση σας με το διαδίκτυο." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Αδυναμία εκτέλεσης του εργαλείου αναβαθμίσεων" @@ -856,7 +841,8 @@ msgstr "Λήψη του εργαλείου αναβάθμισης" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "Το εργαλείο αναβάθμισης θα σας καθοδηγήσει στην διαδικασία ενημέρωσης" +msgstr "" +"Το εργαλείο αναβάθμισης θα σας καθοδηγήσει στην διαδικασία ενημέρωσης" #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -872,7 +858,8 @@ msgstr "Αποτυχία λήψης" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "Η λήψη της αναβάθμισης απέτυχε. Πιθανόν να υπάρχει πρόβλημα δικτύου. " +msgstr "" +"Η λήψη της αναβάθμισης απέτυχε. Πιθανόν να υπάρχει πρόβλημα δικτύου. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -926,33 +913,29 @@ msgid "The list of changes is not available" msgstr "Η λίστα των αλλαγών δεν είναι ακόμα διαθέσιμη." #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -"Η λίστα των αλλαγών δεν είναι ακόμα διαθέσιμη. Προσπαθήστε ξανά αργότερα." +"Η λίστα των αλλαγών δεν είναι ακόμα διαθέσιμη.\n" +"Προσπαθήστε ξανά αργότερα." #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Αποτυχία λήψης της λίστας των αλλαγών. Παρακαλώ ελέγξτε τη σύνδεση σας στο " -"διαδίκτυο." +"Αποτυχία λήψης της λίστας των αλλαγών.\n" +"Παρακαλώ ελέγξτε τη σύνδεση σας στο διαδίκτυο." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Σημαντικές ενημερώσεις ασφαλείας" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Συνιστώμενες ενημερώσεις" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Προτεινόμενες ενημερώσεις" @@ -965,7 +948,6 @@ msgstr "Backports" msgid "Distribution updates" msgstr "Αναβαθμίσεις διανομής" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Άλλες ενημερώσεις" @@ -988,7 +970,6 @@ msgstr "Α_ποεπιλογή όλων" msgid "_Check All" msgstr "Έλε_γχος όλων" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1023,7 +1004,6 @@ msgstr "Από έκδοση: %(old_version)s σε %(new_version)s" msgid "Version %s" msgstr "Έκδοση %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1049,7 +1029,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Είναι διαθέσιμη νέα έκδοση διανομής '%s'" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Ο κατάλογος λογισμικού είναι κατεστραμμένος" @@ -1064,23 +1043,19 @@ msgstr "" "το διαχειριστή πακέτων \"Synaptic\" η εκτελέστε την εντολή \"sudo apt-get " "install -f\" σε ένα τερματικό για να διορθώσετε το πρόβλημα πρώτα." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Καμία" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1105,7 +1080,8 @@ msgstr "Διατηρήστε το σύστημα σας ενημερωμ #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "Δεν είναι δυνατή η εγκατάσταση όλων των ενημερώσεων" +msgstr "" +"Δεν είναι δυνατή η εγκατάσταση όλων των ενημερώσεων" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" @@ -1189,10 +1165,15 @@ msgid "_Install Updates" msgstr "Ε_γκατάσταση ενημερώσεων" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "Ανα_βάθμιση" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "αλλαγές" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "ενημερώσεις" @@ -1309,7 +1290,6 @@ msgid "_Install security updates without confirmation" msgstr "Ε_γκατάσταση ενημερώσεων ασφαλείας χωρίς επιβεβαίωση" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1318,7 +1298,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Οι πληροφορίες καναλιού δεν είναι ενημερωμένες\n" +"Οι πληροφορίες για το διαθέσιμο λογισμικό δεν είναι " +"ενημερωμένες\n" "\n" "Θα πρέπει να ανανεώσετε τις πληροφορίες καναλιού για να εγκαταστήσετε " "λογισμικό και ενημερώσεις από τα τα νέα κανάλια που προσθέσατε ή " @@ -1447,236 +1428,191 @@ msgstr "Το μέγεθος του παραθύρου" msgid "Configure the sources for installable software and updates" msgstr "Ρύθμιση των πηγών για λογισμικό και ενημερώσεις" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Community maintained" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Οδηγοί με κλειστό κώδικα για συσκευές" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Λογισμικό με περιορισμούς" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom με το Ubuntu 6.10 'Edgy Eft" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 TLS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -#, fuzzy msgid "Canonical supported Open Source software" -msgstr "Community maintained (Universe)" +msgstr "Λογισμικό ανοικτού κώδικα υποστηριζόμενο από την Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Υποστηριζόμενα από την κοινότητα (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Community maintained Open Source software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Όχι-ελεύθεροι οδηγοί" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Οδηγοί με κλειστό κώδικα για συσκευές " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Όχι-ελεύθερα (Multiverse)" +msgstr "Όχι-ελεύθερο (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "Λογισμικό με περιορισμούς από πνευματικά δικαιώματα και νόμους" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom με Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported ενημερώσεις" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom με Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Αναβαθμίσεις Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom με Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ενημερώσεις Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Όχι-ελεύθερα (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom με το Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Δεν υποστηρίζονται πια επίσημα" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Περιορισμένα πνευματικά δικαιώματα" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ενημερώσεις ασφαλείας Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ενημερώσεις Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Λογισμικό συμβατό με DFSG με μη Ελεύθερες Εξαρτήσεις" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Λογισμικό μη συμβατό με DFSG" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Λήψη αρχείου %li από %li με άγνωστη ταχύτητα" @@ -1717,16 +1653,16 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "" #~ "Γίνεται ανάλυση του συστήματος σας\n" #~ "\n" -#~ "Οι ενημερώσεις λογισμικού μπορούν να διορθώνουν σφάλματα, κενά ασφαλείας " -#~ "και να παρέχουν νέες λειτουργίες." +#~ "Οι ενημερώσεις λογισμικού μπορούν να διορθώνουν σφάλματα, κενά ασφαλείας και " +#~ "να παρέχουν νέες λειτουργίες." #~ msgid "Oficially supported" #~ msgstr "Oficially supported" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Μερικές ενημερώσεις απαιτούν την απομάκρυνση επιπρόσθετου λογισμικού. " #~ "Χρησιμοποιήστε την λειτουργία \"Σημείωση όλων των αναβαθμίσεων\" από το " @@ -1736,6 +1672,7 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgid "The following updates will be skipped:" #~ msgstr "Οι παρακάτω ενημερώσεις θα παρακαμφθούν:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Απομένουν περίπου %li δευτερόλεπτα" @@ -1760,8 +1697,7 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Παρακαλώ κλείστε την άλλη εφαρμογή πρώτα π.χ. το 'aptitude' ή το " -#~ "'Synaptic'." +#~ "Παρακαλώ κλείστε την άλλη εφαρμογή πρώτα π.χ. το 'aptitude' ή το 'Synaptic'." #~ msgid "Channels" #~ msgstr "Κανάλια" @@ -1814,14 +1750,13 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Μη έγκυρες πληροφορίες πακέτου" #~ msgid "" -#~ "Failed to download the listof changes. Please check your internet " -#~ "connection." +#~ "Failed to download the listof changes. Please check your internet connection." #~ msgstr "" #~ "Αποτυχία λήψης της λίστας των αλλαγών. Παρακαλώ ελέγξτε τη σύνδεση σας." #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Κατά τον έλεγχο των πληροφοριών του repository δεν βρέθηκαν έγκυρες " #~ "καταχωρίσεις αναβάθμισης.\n" @@ -1852,25 +1787,24 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Το αρχείο '%s' δεν περιέχει έγκυρα κανάλια λογισμικού." #~ msgid "" -#~ "The upgrade is finished now. A reboot is required to now, do you want to " -#~ "do this now?" +#~ "The upgrade is finished now. A reboot is required to now, do you want to do " +#~ "this now?" #~ msgstr "" #~ "Η αναβάθμιση ολοκληρώθηκε. Απαιτείται επανεκκίνηση, θέλετε να γίνει τώρα;" #~ msgid "" -#~ "You need to manually reload the latest information about updates\n" +#~ "You need to manually reload the latest information about " +#~ "updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" -#~ "Πρέπει να ανανεώσετε χειροκίνητα τις τελευταίες πληροφορίες για " -#~ "τις ενημερώσεις\n" +#~ "Πρέπει να ανανεώσετε χειροκίνητα τις τελευταίες πληροφορίες για τις " +#~ "ενημερώσεις\n" #~ "\n" -#~ "Το σύστημα σας δεν έχει ρυθμιστεί να κάνει αυτόματο έλεγχο για " -#~ "ενημερώσεις. Μπορείτε να ρυθμίσετε αυτή τη συμπεριφορά μέσω του μενού " -#~ "\"Σύστημα\" -> \"Διαχείριση συστήματος\" -> \"Ιδιότητες λογισμικού\"." +#~ "Το σύστημα σας δεν έχει ρυθμιστεί να κάνει αυτόματο έλεγχο για ενημερώσεις. " +#~ "Μπορείτε να ρυθμίσετε αυτή τη συμπεριφορά μέσω του μενού \"Σύστημα\" -> " +#~ "\"Διαχείριση συστήματος\" -> \"Ιδιότητες λογισμικού\"." #~ msgid "" #~ "Downloading changes\n" @@ -1892,4 +1826,4 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Ubuntu 6.04 \"Dapper Drake\"" #~ msgid "Ubuntu 5.10 \"Breezy Badger\"" -#~ msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#~ msgstr "Ubuntu 5.10 \"Breezy Badger\"" \ No newline at end of file diff --git a/po/en_AU.po b/po/en_AU.po index a4122117..163b19fe 100644 --- a/po/en_AU.po +++ b/po/en_AU.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-09-11 09:53+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:01+0000\n" "Last-Translator: David Satchell \n" "Language-Team: English (Australia) \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "After one month" msgid "After %s days" msgstr "After %s days" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "%s updates" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Main server" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "Error removing the key" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." @@ -163,7 +161,6 @@ msgstr "Can't upgrade required meta-packages" msgid "A essential package would have to be removed" msgstr "An essential package would have to be removed" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" @@ -176,7 +173,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" @@ -204,7 +200,6 @@ msgstr "" "It was impossible to install a required package. Please report this as a " "bug. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Can't guess meta-packag" @@ -280,7 +275,6 @@ msgstr "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generate default sources?" @@ -348,7 +342,6 @@ msgstr "" "your Garbage Bin and remove temporary packages of former installations using " "'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" @@ -420,7 +413,6 @@ msgstr "" "A problem occured during the clean-up. Please see the below message for more " "information. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Restoring original system state" @@ -431,7 +423,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -487,7 +478,6 @@ msgstr "Searching for obsolete software" msgid "System upgrade is complete." msgstr "System upgrade is complete." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -503,7 +493,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Fetching file %li of %li at %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "About %s remaining" @@ -515,7 +505,6 @@ msgstr "Fetching file %li of %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Applying changes" @@ -533,64 +522,62 @@ msgstr "" "The upgrade has aborted. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "The 'diff' command was not found" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "A fatal error occured" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade has " -"aborted.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -601,7 +588,7 @@ msgstr "" "\n" "You have to download a total of %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -609,33 +596,32 @@ msgstr "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time during the process." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Your system is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Remove %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Install %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" @@ -661,7 +647,6 @@ msgid "%li seconds" msgstr "%li seconds" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -683,7 +668,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -758,6 +742,7 @@ msgid "_Keep" msgstr "_Keep" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Replace" @@ -793,7 +778,6 @@ msgstr "Could not download the release notes" msgid "Please check your internet connection." msgstr "Please check your internet connection." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Could not run the upgrade tool" @@ -888,17 +872,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Important security updates" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Recommended updates" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Proposed updates" @@ -911,7 +892,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Other updates" @@ -933,7 +913,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -968,7 +947,6 @@ msgstr "" msgid "Version %s" msgstr "Version %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -993,7 +971,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Software index is broken" @@ -1008,23 +985,19 @@ msgstr "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "None" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1123,10 +1096,15 @@ msgid "_Install Updates" msgstr "_Install Updates" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "U_pgrade" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "changes" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "updates" @@ -1361,233 +1339,190 @@ msgstr "The window size" msgid "Configure the sources for installable software and updates" msgstr "Configure the sources for installable software and updates" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Community maintained" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietary drivers for devices" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Restricted software" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM with Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Community maintained (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Community maintained Open Source software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Non-free drivers" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietary drivers for devices " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Restricted software (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM with Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported updates" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM with Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM with Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM with Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Security Updates" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-compatible Software with Non-Free Dependencies" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Non-DFSG-compatible Software" +#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1598,22 +1533,22 @@ msgstr "Non-DFSG-compatible Software" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please " -#~ "report this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " #~ msgstr "" -#~ "An unresolvable problem occured while calculating the upgrade. Please " -#~ "report this as a bug. " +#~ "An unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " -#~ "edubuntu-desktop package and it was not possible to detect which version " -#~ "of ubuntu you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " -#~ "edubuntu-desktop package and it was not possible to detect which version " -#~ "of ubuntu you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." @@ -1627,11 +1562,11 @@ msgstr "Non-DFSG-compatible Software" #~ "synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." #~ msgstr "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." #~ msgid "Some software no longer officially supported" #~ msgstr "Some software no longer officially supported" @@ -1652,6 +1587,7 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "Restoring originale system state" #~ msgstr "Restoring original system state" +#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1661,30 +1597,37 @@ msgstr "Non-DFSG-compatible Software" #~ "not be found anymore.\n" #~ "This indicates a serious error, please report this as a bug." +#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "About %li days %li hours %li minutes remaining" +#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "About %li hours %li minutes remaining" +#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "About %li minutes remaining" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "About %li seconds remaining" #~ msgid "Download is complete" #~ msgstr "Download is complete" +#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Downloading file %li of %li at %s/s" +#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Downloading file %li of %li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "The upgrade aborts now. Please report this bug." +#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1694,41 +1637,41 @@ msgstr "Non-DFSG-compatible Software" #~ "'%s'?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade." -#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " -#~ "now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade." -#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " -#~ "now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" #~ "\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s package is going to be removed." #~ msgstr[1] "%s packages are going to be removed." +#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s new package is going to be installed." #~ msgstr[1] "%s new packages are going to be installed." +#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s package is going to be upgraded." #~ msgstr[1] "%s packages are going to be upgraded." +#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "You have to download a total of %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time " -#~ "later." +#~ "The upgrade can take several hours and cannot be canceled at any time later." #~ msgstr "" -#~ "The upgrade can take several hours and cannot be canceled at any time " -#~ "later." +#~ "The upgrade can take several hours and cannot be canceled at any time later." #~ msgid "Could not find any upgrades" #~ msgstr "Could not find any upgrades" @@ -1748,15 +1691,17 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "Upgrading Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or " -#~ "with the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " #~ msgstr "" #~ "Verifying the upgrade failed. There may be a problem with the network or " #~ "with the server. " +#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Downloading file %li of %li with %s/s" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Downloading file %li of %li with unknown speed" @@ -1775,12 +1720,12 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgid "The following updates will be skipped:" #~ msgstr "The following updates will be skipped:" @@ -1794,12 +1739,12 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "Show details" #~ msgstr "Show details" +#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "New version: %s (Size: %s)" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "" -#~ "Only one software management tool is allowed to run at the same time" +#~ msgstr "Only one software management tool is allowed to run at the same time" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." @@ -1809,16 +1754,14 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" #~ "You must check for updates manually\n" #~ "\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behaviour in \"System\" -> \"Administration\" -> \"Software " -#~ "Properties\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behaviour in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgid "" #~ "Examining your system\n" @@ -1859,16 +1802,16 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and " -#~ "updates from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" #~ "The channel information is out-of-date\n" #~ "\n" #~ "\n" -#~ "You have to reload the channel information to install software and " -#~ "updates from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" #~ "\n" #~ "\n" #~ "You need a working internet connection to continue." @@ -1880,14 +1823,14 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "Components" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1908,19 +1851,19 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in " -#~ "this case." +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." #~ msgstr "" #~ "If automatic checking for updates is disabled, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in " -#~ "this case." +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " #~ "description" #~ msgstr "" -#~ "Stores the state of the expander that contains the list of changes and " -#~ "the description" +#~ "Stores the state of the expander that contains the list of changes and the " +#~ "description" #~ msgid "Configure software channels and internet updates" #~ msgstr "Configure software channels and internet updates" @@ -1938,4 +1881,4 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "Ubuntu 6.06 LTS Updates" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Backports" +#~ msgstr "Ubuntu 6.06 LTS Backports" \ No newline at end of file diff --git a/po/en_CA.po b/po/en_CA.po index 85c1ba9d..69c1edf6 100644 --- a/po/en_CA.po +++ b/po/en_CA.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:42+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" "MIME-Version: 1.0\n" @@ -56,15 +56,13 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "_Install" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -127,7 +124,8 @@ msgid "Error removing the key" msgstr "Error removing the key" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." @@ -165,7 +163,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -180,7 +177,6 @@ msgid "" msgstr "" "The key you selected could not be removed. Please report this as a bug." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -205,7 +201,6 @@ msgid "" msgstr "" "The key you selected could not be removed. Please report this as a bug. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -265,7 +260,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -323,7 +317,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -386,7 +379,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -397,7 +389,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy @@ -452,7 +443,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -468,7 +458,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -480,7 +470,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -497,60 +486,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -558,40 +545,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Your system is up-to-date!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -617,7 +603,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -637,7 +622,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -710,6 +694,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 #, fuzzy msgid "_Replace" msgstr "Reload" @@ -748,7 +733,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -847,18 +831,15 @@ msgstr "" "Failed to download changes. Please check if there is an active internet " "connection." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -874,7 +855,6 @@ msgstr "Ubuntu 5.04 Updates" msgid "Distribution updates" msgstr "Upgrade finished" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -898,14 +878,13 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy, python-format +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installing updates..." @@ -930,11 +909,10 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Version %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -957,7 +935,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -969,23 +946,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1086,10 +1059,15 @@ msgstr "_Install" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "Upgrade finished" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Changes" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1245,8 +1223,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Enter the complete APT line of the repository that you want to add\n" +"Enter the complete APT line of the repository that you want to " +"add\n" "\n" "The APT line contains the type, location and content of a repository, for " "example \"deb http://ftp.debian.org sarge main\". You can find a " @@ -1334,255 +1312,210 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.04 Updates" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Community maintained (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Contributed software" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Security Updates" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Community maintained (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Security Updates" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Officially supported" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.04 Security Updates" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Officially supported" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.04 Updates" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian Stable Security Updates" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1673,8 +1606,8 @@ msgstr "" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "The repository information has changes. A backup copy of your sources." -#~ "list is stored in %s.save. \n" +#~ "The repository information has changes. A backup copy of your sources.list " +#~ "is stored in %s.save. \n" #~ "\n" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" @@ -1723,13 +1656,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgid "Repository" #~ msgstr "Repository" @@ -1749,16 +1682,16 @@ msgstr "" #~ msgstr "" #~ "Authentication keys\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes " -#~ "it possible to check verify the integrity of the software you download." +#~ "You can add and remove authentication keys in this dialogue. A key makes it " +#~ "possible to check verify the integrity of the software you download." #~ msgid "A_uthentication" #~ msgstr "A_uthentication" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " @@ -1783,11 +1716,11 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not " -#~ "change user-installed keys." +#~ "Restore the default keys shiped with the distribution. This will not change " +#~ "user-installed keys." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Set _maximum size for the package cache" @@ -1820,13 +1753,11 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Changes not found, the server may not be updated yet." @@ -1835,11 +1766,11 @@ msgstr "" #~ msgstr "The updates are being applied." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgid "Updating package list..." #~ msgstr "Updating package list..." @@ -1849,30 +1780,30 @@ msgstr "" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgid "Never show this message again" #~ msgstr "Never show this message again" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Initializing and getting list of updates..." @@ -1904,10 +1835,10 @@ msgstr "" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." \ No newline at end of file diff --git a/po/en_GB.po b/po/en_GB.po index 7c3c08e1..5faf17e3 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-06 04:33+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Jeff Bailes \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -54,7 +54,6 @@ msgstr "After one month" msgid "After %s days" msgstr "After %s days" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,7 +61,6 @@ msgstr "%s updates" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Main server" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,7 +119,8 @@ msgid "Error removing the key" msgstr "Error removing the key" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." @@ -165,7 +163,6 @@ msgstr "Can't upgrade required meta-packages" msgid "A essential package would have to be removed" msgstr "An essential package would have to be removed" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" @@ -182,7 +179,6 @@ msgstr "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" @@ -210,7 +206,6 @@ msgstr "" "It was impossible to install a required package. Please report this as a " "bug. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Can't guess meta-package" @@ -291,7 +286,6 @@ msgstr "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generate default sources?" @@ -362,7 +356,6 @@ msgstr "" "your Deleted Items folder and remove temporary packages of former " "installations using 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" @@ -439,7 +432,6 @@ msgstr "" "Some problem occurred during the clean-up. Please see the below message for " "more information. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Restoring original system state" @@ -450,7 +442,6 @@ msgid "Fetching backport of '%s'" msgstr "Fetching backport of '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -509,7 +500,6 @@ msgstr "Searching for obsolete software" msgid "System upgrade is complete." msgstr "System upgrade is complete." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -525,7 +515,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Fetching file %li of %li at %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "About %s remaining" @@ -537,7 +527,6 @@ msgstr "Fetching file %li of %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Applying changes" @@ -555,8 +544,7 @@ msgstr "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -565,7 +553,7 @@ msgstr "" "Replace the customised configuration file\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." @@ -573,50 +561,49 @@ msgstr "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "The 'diff' command was not found" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "A fatal error occured" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d package is going to be removed." msgstr[1] "%d packages are going to be removed." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d new package is going to be installed." msgstr[1] "%d new packages are going to be installed." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d package is going to be upgraded." msgstr[1] "%d packages are going to be upgraded." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -627,7 +614,7 @@ msgstr "" "\n" "You have to download a total of %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -635,17 +622,16 @@ msgstr "" "Fetching and installing the upgrade can take several hours and cannot be " "cancelled at any time later." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Your system is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -653,17 +639,17 @@ msgstr "" "There are no upgrades available for your system. The upgrade will now be " "cancelled." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Remove %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Install %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" @@ -689,7 +675,6 @@ msgid "%li seconds" msgstr "%li seconds" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -712,7 +697,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -787,6 +771,7 @@ msgid "_Keep" msgstr "_Keep" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Replace" @@ -822,7 +807,6 @@ msgstr "Could not download the release notes" msgid "Please check your internet connection." msgstr "Please check your Internet connection." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Could not run the upgrade tool" @@ -923,17 +907,14 @@ msgstr "" "Failed to download the list of changes. \n" "Please check your Internet connection." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Important security updates" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Recommended updates" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Proposed updates" @@ -946,7 +927,6 @@ msgstr "Backports" msgid "Distribution updates" msgstr "Distribution updates" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Other updates" @@ -968,7 +948,6 @@ msgstr "_Untick All" msgid "_Check All" msgstr "_Tick All" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1003,7 +982,6 @@ msgstr "From version %(old_version)s to %(new_version)s" msgid "Version %s" msgstr "Version %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1028,7 +1006,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Software index is broken" @@ -1043,23 +1020,19 @@ msgstr "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "None" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1166,10 +1139,15 @@ msgid "_Install Updates" msgstr "_Install Updates" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "U_pgrade" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "changes" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "updates" @@ -1420,229 +1398,185 @@ msgstr "The window size" msgid "Configure the sources for installable software and updates" msgstr "Configure the sources for installable software and updates" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Community maintained" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietary drivers for devices" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Restricted software" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom with Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Canonical supported Open Source software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Community maintained (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Community maintained Open Source software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Non-free drivers" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietary drivers for devices " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Restricted software (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restricted by copyright or legal issues" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported updates" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom with Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom with Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "No longer officially supported" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Security Updates" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-compatible Software with Non-Free Dependencies" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Non-DFSG-compatible Software" @@ -1717,8 +1651,8 @@ msgstr "Non-DFSG-compatible Software" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "The repository information has changes. A backup copy of your sources." -#~ "list is stored in %s.save. \n" +#~ "The repository information has changes. A backup copy of your sources.list " +#~ "is stored in %s.save. \n" #~ "\n" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" @@ -1775,13 +1709,13 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "" #~ "Authentication keys\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes " -#~ "it possible to check verify the integrity of the software you download." +#~ "You can add and remove authentication keys in this dialogue. A key makes it " +#~ "possible to check verify the integrity of the software you download." #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " @@ -1813,11 +1747,11 @@ msgstr "Non-DFSG-compatible Software" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shiped with the distribution. This will not change " +#~ "user installed keys." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Set _maximum size for the package cache" @@ -1847,13 +1781,13 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgid "Cancel downloading the changelog" #~ msgstr "Cancel downloading the changelog" @@ -1929,8 +1863,7 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr[1] "You have selected all %s updated packages, total size %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "You have selected %s out of %s updated package, size %s" #~ msgstr[1] "You have selected %s out of %s updated packages, total size %s" @@ -1938,11 +1871,11 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "The updates are being applied." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgid "Updating package list..." #~ msgstr "Updating package list..." @@ -1955,19 +1888,19 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgid "Never show this message again" #~ msgstr "Never show this message again" @@ -1997,10 +1930,8 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." \ No newline at end of file diff --git a/po/eo.po b/po/eo.po index 5bc93b67..07d4b608 100644 --- a/po/eo.po +++ b/po/eo.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-07-24 21:11+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:05+0000\n" "Last-Translator: Ed Glez \n" "Language-Team: Esperanto \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Post unu monato" msgid "After %s days" msgstr "Post %s tagoj" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "Eraro dum forigo de sxlosilo" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "La sxlosilo elektita ne povis esti forigata. Bonvolu raporti cxi tion kiel " "cimon." @@ -162,7 +160,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -175,7 +172,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -200,7 +196,6 @@ msgstr "" "Estis neebla instalo de bezonata pakajxo. Bonvolu raporti cxi tion kiel " "cimo. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -260,7 +255,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -322,7 +316,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Cxu vi volas komenci la promociadon?" @@ -387,7 +380,6 @@ msgstr "" "Kelkaj problemoj okazis dum la purigado. Bonvolu vidi suban mesagxon por " "pliaj informoj. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -398,7 +390,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -449,7 +440,6 @@ msgstr "Sercxado de ne plu uzata programaro" msgid "System upgrade is complete." msgstr "Sistema promocio estas kompleta." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -465,7 +455,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -477,7 +467,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplikado de sxangxoj" @@ -493,60 +482,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "La komando 'diff' ne estis trovata" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -554,39 +541,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Via sistemo estas gxisdatigita" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -612,7 +598,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -632,7 +617,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -707,6 +691,7 @@ msgid "_Keep" msgstr "Konservi" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "Anstatauxigi" @@ -742,7 +727,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "Bonvolu kontroli vian interretan konekton." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Ne eblis ruli la promocian ilon" @@ -834,17 +818,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -857,7 +838,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -879,7 +859,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -914,7 +893,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -936,7 +914,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Nova distribua eldono '%s' estas disponebla" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -948,23 +925,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1061,10 +1034,15 @@ msgid "_Install Updates" msgstr "Instali Gxisdatigojn" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "Promocii" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1290,229 +1268,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiale subtenata" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/es.po b/po/es.po index 746fbaa7..4505048c 100644 --- a/po/es.po +++ b/po/es.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 21:00+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Ricardo Pérez López \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" @@ -57,7 +57,6 @@ msgstr "Después de un mes" msgid "After %s days" msgstr "Después de %s días" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -65,7 +64,6 @@ msgstr "Actualizaciones de %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -75,7 +73,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -127,7 +124,8 @@ msgid "Error removing the key" msgstr "Hubo un error al quitar la clave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "No se puede quitar la clave que ha seleccionado. Por favor, avise de esto " "como un fallo." @@ -172,7 +170,6 @@ msgstr "No se han podido actualizar los meta-paquetes requeridos" msgid "A essential package would have to be removed" msgstr "Se ha tenido que desinstalar un paquete esencial" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "No se ha podido calcular la actualización" @@ -187,7 +184,6 @@ msgstr "" "Ha ocurrido un problema imposible de corregir cuando se calculaba la " "actualización. Por favor, informe de ésto como un fallo." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error autenticando algunos paquetes" @@ -215,7 +211,6 @@ msgstr "" "No ha sido posible instalar un paquete requerido. Por favor, informe de ésto " "como un fallo. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "No se ha podido determinar el meta-paquete" @@ -298,7 +293,6 @@ msgstr "" "«Sí», se actualizarán todas las entradas «%s» a «%s».\n" "Si selecciona «No» se cancelará la actualización." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "¿Generar orígenes predeterminados?" @@ -339,9 +333,9 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"Se han desactivado algunas entradas de terceros proveedores en su «sources." -"list». Puede volver a activarlas tras la actualización con la herramienta " -"«Propiedades del software», o con Synaptic." +"Se han desactivado algunas entradas de terceros proveedores en su " +"«sources.list». Puede volver a activarlas tras la actualización con la " +"herramienta «Propiedades del software», o con Synaptic." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -371,7 +365,6 @@ msgstr "" "espacio en disco en %s. Vacíe su papelera, y elimine los paquetes temporales " "de instalaciones anteriores tecleando «sudo apt-get clean» en una terminal." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "¿Desea comenzar la actualización?" @@ -450,7 +443,6 @@ msgstr "" "Ha ocurrido algún problema durante el limpiado. por favor, vea el mensaje " "inferior para más información. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Restaurando el estado original del sistema" @@ -461,7 +453,6 @@ msgid "Fetching backport of '%s'" msgstr "Descargando «backport» de '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -521,7 +512,6 @@ msgstr "Buscando paquetes obsoletos" msgid "System upgrade is complete." msgstr "La actualización del sistema se ha completado." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -537,7 +527,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Descargando archivo %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Faltan alrededor de %s" @@ -549,7 +539,6 @@ msgstr "Descargando archivo %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando los cambios" @@ -568,8 +557,7 @@ msgstr "" "fallo en el paquete «update-manager» e incluya en el informe de error los " "archivos contenidos en /var/log/dist-upgrade/." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -578,7 +566,7 @@ msgstr "" "¿Desea sustituir el archivo de configuración modificado\n" "«%s»?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." @@ -586,51 +574,50 @@ msgstr "" "Perderá todos los cambios que haya realizado en este archivo de " "configuración si decide sustituirlo por una nueva versión." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "No se ha encontrado el comando «diff»" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Ha ocurrido un error fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Por favor, informe de esto como un fallo e incluya los archivos /var/log/" -"dist-upgrade.log y /var/log/dist-upgrade-apt.log en su informe. La " +"Por favor, informe de esto como un fallo e incluya los archivos " +"/var/log/dist-upgrade.log y /var/log/dist-upgrade-apt.log en su informe. La " "actualización se cancelará ahora.\n" -"Su archivo «sources.list» original se ha guardado en /etc/apt/sources.list." -"distUpgrade." +"Su archivo «sources.list» original se ha guardado en " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Se va a desinstalar %d paquete." msgstr[1] "Se van a desinstalar %d paquetes." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Se va a instalar %d paquete nuevo." msgstr[1] "Se van a instalar %d paquetes nuevos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Se va a actualizar %d paquete." msgstr[1] "Se van a actualizar %d paquetes." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -641,7 +628,7 @@ msgstr "" "\n" "Debe descargar un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -649,19 +636,18 @@ msgstr "" "Descargar e instalar la actualización puede llevar varias horas, y no se " "podrá cancelar después en ningún momento." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Para prevenir la pérdida de datos, cierre todas las aplicaciones y " "documentos." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Su sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -669,17 +655,17 @@ msgstr "" "No hay actualizaciones disponibles para su sistema. Se ha cancelado la " "actualización." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Desinstalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" @@ -705,7 +691,6 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -729,7 +714,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -749,7 +733,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Reinicie el sistema para completar la actualización" +msgstr "" +"Reinicie el sistema para completar la actualización" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -804,6 +789,7 @@ msgid "_Keep" msgstr "_Conservar" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Sustituir" @@ -839,7 +825,6 @@ msgstr "No se han podido descargar las notas de publicación" msgid "Please check your internet connection." msgstr "Por favor, compruebe su conexión a Internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "No se ha podido ejecutar la herramienta de actualización" @@ -945,17 +930,14 @@ msgstr "" "Hubo un fallo al descargar la lista de cambios. \n" "Por favor, compruebe su conexión a Internet." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizaciones importantes de seguridad" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizaciones recomendadas" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Actualizaciones propuestas" @@ -968,7 +950,6 @@ msgstr "«Backports»" msgid "Distribution updates" msgstr "Actualizaciones de la distribución" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Otras actualizaciones" @@ -990,7 +971,6 @@ msgstr "_Desmarcar todo" msgid "_Check All" msgstr "_Marcar todo" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1025,7 +1005,6 @@ msgstr "De la versión %(old_version)s a la %(new_version)s" msgid "Version %s" msgstr "Versión %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1042,15 +1021,14 @@ msgid "" "information on upgrading." msgstr "" "No podrá obtener nuevas correcciones de seguridad ni actualizaciones " -"críticas. Actualícese a una versión posterior de Ubuntu Linux. Visite http://" -"www.ubuntu.com para más información sobre la actualización." +"críticas. Actualícese a una versión posterior de Ubuntu Linux. Visite " +"http://www.ubuntu.com para más información sobre la actualización." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Está disponible la nueva versión «%s» de la distribución" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "El índice de software está dañado" @@ -1065,23 +1043,19 @@ msgstr "" "gestor de paquetes «Synaptic», o ejecute «sudo apt-get install -f» en una " "terminal, para corregir este problema primero." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ninguno" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1106,7 +1080,8 @@ msgstr "Mantenga su sistema actualizado" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "No se han podido instalar todas las actualizaciones" +msgstr "" +"No se han podido instalar todas las actualizaciones" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" @@ -1190,10 +1165,15 @@ msgid "_Install Updates" msgstr "_Instalar actualizaciones" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "A_ctualizar" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "cambios" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "actualizaciones" @@ -1229,8 +1209,8 @@ msgstr "" "enviará de forma anónima al proyecto Ubuntu todas las semanas.\n" "\n" "Los resultados se usarán para mejorar el soporte de las aplicaciones " -"populares y para ordenar las aplicaciones en los resultados de las búsquedas." -"" +"populares y para ordenar las aplicaciones en los resultados de las " +"búsquedas." #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" @@ -1318,8 +1298,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"La información acerca del software disponible está obsoleta\n" +"La información acerca del software disponible está " +"obsoleta\n" "\n" "Para poder instalar software y actualizaciones a partir de los orígenes que " "se hayan añadido o cambiado recientemente, es necesario recargar la " @@ -1448,229 +1428,185 @@ msgid "Configure the sources for installable software and updates" msgstr "" "Configura los orígenes para el software instalable y las actualizaciones" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 «Edgy Eft»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantenido por la comunidad" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Controladores privativos para dispositivos" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software restringido" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM con Ubuntu 6.10 «Edgy Eft»" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS «Dapper Drake»" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Software libre soportado por Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantenido por la comunidad (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software libre mantenido por la comunidad" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Controladores no libres" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Controladores privativos para dispositivos " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software restringido (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restringido por copyright o cuestiones legales" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM con Ubuntu 6.06 LTS «Dapper Drake»" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Actualizaciones «backport»" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 «Breezy Badger»" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizaciones de seguridad de Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualizaciones de Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "«Backports» de Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 «Hoary Hedgehog»" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM con Ubuntu 5.04 «Hoary Hedgehog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Soportado oficialmente" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizaciones de seguridad de Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizaciones de Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "«Backports» de Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 «Warty Warthog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantenido por la comunidad (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Software no libre (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM con Ubuntu 4.10 «Warty Warthog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Sin más soporte oficial" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restringido" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Actualizaciones de seguridad" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizaciones de Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "«Backports» de Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 «Sarge»" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualizaciones de seguridad de Debian 3.1 «Sarge»" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian «Etch» (pruebas)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian «Sid» (inestable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatible con la DFSG con dependencias no libres" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software no compatible con la DFSG" @@ -1678,6 +1614,7 @@ msgstr "Software no compatible con la DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Software restringido por copyright o cuestiones legales" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Descargando archivo %li de %li a velocidad desconocida" @@ -1726,17 +1663,18 @@ msgstr "Software no compatible con la DFSG" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Algunas actualizaciones requieren la desinstalación de software. Utilice " -#~ "la función «Marcar todas las actualizaciones» del gestor de paquetes " +#~ "Algunas actualizaciones requieren la desinstalación de software. Utilice la " +#~ "función «Marcar todas las actualizaciones» del gestor de paquetes " #~ "«Synaptic», o ejecute «sudo apt-get dist-upgrade» en una terminal, para " #~ "actualizar completamente su sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "Se pasarán por alto las siguientes actualizaciones:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Faltan %li segundos" @@ -1759,14 +1697,13 @@ msgstr "Software no compatible con la DFSG" #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "" -#~ "Sólo se permite la ejecución simultánea de una única herramienta de " -#~ "gestión de software" +#~ "Sólo se permite la ejecución simultánea de una única herramienta de gestión " +#~ "de software" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Por favor, cierre primero la otra aplicación (ej: «aptitude» o " -#~ "«Synaptic»)." +#~ "Por favor, cierre primero la otra aplicación (ej: «aptitude» o «Synaptic»)." #~ msgid "Channels" #~ msgstr "Canales" @@ -1816,8 +1753,8 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "«Backports» de Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Cuando se exploraba la información de su repositorio, se encontró una " #~ "entrada no válida para la actualización.\n" @@ -1846,8 +1783,7 @@ msgstr "Software no compatible con la DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Descargando informe de cambios\n" +#~ "Descargando informe de cambios\n" #~ "\n" #~ "Se necesita descargar los cambios del servidor central" @@ -1879,13 +1815,13 @@ msgstr "Software no compatible con la DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Actualizaciones disponibles\n" #~ "\n" -#~ "El gestor de actualizaciones encontró los siguientes paquetes " -#~ "actualizables. Puede actualizarlos usando el botón Instalar." +#~ "El gestor de actualizaciones encontró los siguientes paquetes actualizables. " +#~ "Puede actualizarlos usando el botón Instalar." #~ msgid "Repository" #~ msgstr "Repositorio" @@ -1905,20 +1841,19 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "" #~ "Claves de autenticación\n" #~ "\n" -#~ "Puede añadir y quitar claves de autenticación desde este diálogo. Una " -#~ "clave hace posible verificar la integridad del software que descarga." +#~ "Puede añadir y quitar claves de autenticación desde este diálogo. Una clave " +#~ "hace posible verificar la integridad del software que descarga." #~ msgid "A_uthentication" #~ msgstr "A_utenticación" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Añadir un nuevo archivo de clave al anillo de confianza. Asegúrese de que " -#~ "obtuvo la clave a través de un canal seguro y que confía en el " -#~ "propietario. " +#~ "obtuvo la clave a través de un canal seguro y que confía en el propietario. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "Limpiar _temporalmente los archivos de paquetes" @@ -1940,8 +1875,8 @@ msgstr "Software no compatible con la DFSG" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Recupera las claves entregadas originalmente con la distribución. Esto no " #~ "cambia las claves instaladas por el usuario." @@ -1969,8 +1904,8 @@ msgstr "Software no compatible con la DFSG" #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" #~ "Ésto significa que no se satisfacen algunas dependencias de los paquetes " -#~ "instalados. Utilice la \"Actualización inteligente\" de synaptic o \"apt-" -#~ "get dist-upgrade\" para arreglar la situación." +#~ "instalados. Utilice la \"Actualización inteligente\" de synaptic o \"apt-get " +#~ "dist-upgrade\" para arreglar la situación." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "No es posible actualizar todos los paquetes." @@ -1978,13 +1913,12 @@ msgstr "Software no compatible con la DFSG" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" -#~ "Ésto significa que además de la actualización de los paquetes será " -#~ "necesaria alguna acción adicional (como instalar o quitar paquetes). " -#~ "Utilice la \"Actualización inteligente\" de synaptic o \"apt-get dist-" -#~ "upgrade\" para arreglar la situación." +#~ "Ésto significa que además de la actualización de los paquetes será necesaria " +#~ "alguna acción adicional (como instalar o quitar paquetes). Utilice la " +#~ "\"Actualización inteligente\" de synaptic o \"apt-get dist-upgrade\" para " +#~ "arreglar la situación." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" @@ -1995,11 +1929,11 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "Se están aplicando las actualizaciones." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo " -#~ "tiempo. Cierre la otra aplicación primero." +#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo tiempo. " +#~ "Cierre la otra aplicación primero." #~ msgid "Updating package list..." #~ msgstr "Actualizando lista de paquetes..." @@ -2009,34 +1943,35 @@ msgstr "Software no compatible con la DFSG" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Actualícese a una nueva versión de Ubuntu Linux. La versión que está " -#~ "usando no obtendrá más actualizaciones de seguridad ni otras " -#~ "actualizaciones críticas. Visite http://www.ubuntulinux.org para " -#~ "información acerca de cómo actualizar." +#~ "Actualícese a una nueva versión de Ubuntu Linux. La versión que está usando " +#~ "no obtendrá más actualizaciones de seguridad ni otras actualizaciones " +#~ "críticas. Visite http://www.ubuntulinux.org para información acerca de cómo " +#~ "actualizar." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Hay una nueva versión de Ubuntu disponible" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Está disponible una nueva versión con el nombre '%s'. Visite http://www." -#~ "ubuntulinux.org/ para recibir instrucciones acerca de cómo actualizar." +#~ "Está disponible una nueva versión con el nombre '%s'. Visite " +#~ "http://www.ubuntulinux.org/ para recibir instrucciones acerca de cómo " +#~ "actualizar." #~ msgid "Never show this message again" #~ msgstr "No mostrar más este mensaje" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo " -#~ "tiempo. Cierre la otra aplicación primero." +#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo tiempo. " +#~ "Cierre la otra aplicación primero." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Inicializando y obteniendo lista de actualizaciones..." @@ -2071,10 +2006,10 @@ msgstr "Software no compatible con la DFSG" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Actualizaciones disponibles\n" #~ "\n" -#~ "El gestor de actualizaciones encontró los siguientes paquetes " -#~ "actualizables. Puede actualizarlos usando el botón Instalar." +#~ "El gestor de actualizaciones encontró los siguientes paquetes actualizables. " +#~ "Puede actualizarlos usando el botón Instalar." \ No newline at end of file diff --git a/po/et.po b/po/et.po index 3feaf17f..b7acdb10 100644 --- a/po/et.po +++ b/po/et.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-06-10 17:42+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: margus723 \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Peale ühte kuud" msgid "After %s days" msgstr "Peale %s päeva" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "Võtme eemaldamisel tekkis viga" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Valitud võtit pole võimalik eemaldada" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -152,8 +150,8 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Sinu süsteem sisaldab katkiseid pakette mida pole võimalik antud tarkvaraga " -"parandada. Palun paranda need kasutades rakendust \"synaptic\" või \"apt-get" -"\" enne jätkamist." +"parandada. Palun paranda need kasutades rakendust \"synaptic\" või \"apt-" +"get\" enne jätkamist." #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -163,7 +161,6 @@ msgstr "Ei suuda uuendada nõutud metapakette" msgid "A essential package would have to be removed" msgstr "Hädavajalik pakett tuleks eemaldada" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Ei suuda uuendusi ette valmistada" @@ -176,7 +173,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Mõnede pakettide tuvastamisel tekkis viga." @@ -202,7 +198,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -262,7 +257,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -321,7 +315,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -384,7 +377,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -395,7 +387,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -446,7 +437,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -462,7 +452,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -474,7 +464,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -490,60 +479,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -551,39 +538,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -609,7 +595,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -629,11 +614,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -700,6 +684,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -735,7 +720,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -825,17 +809,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -848,7 +829,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -870,7 +850,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -905,7 +884,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -927,7 +905,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -939,23 +916,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1052,10 +1025,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1277,229 +1254,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/eu.po b/po/eu.po index 0a434468..9d5bbe5f 100644 --- a/po/eu.po +++ b/po/eu.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-08-08 23:53+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: Xabi Ezpeleta \n" "Language-Team: Basque \n" "MIME-Version: 1.0\n" @@ -57,7 +57,6 @@ msgstr "HIlabete bat eta gero" msgid "After %s days" msgstr "%s egun eta gero" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -65,7 +64,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -75,7 +73,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,7 +117,8 @@ msgstr "Errore bat suertatu da aukeratutako fitxategiak inportatzerakoan" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "Aukeratutako fitxategia ez da GPG giltza bat edo egoera txarrean dago." +msgstr "" +"Aukeratutako fitxategia ez da GPG giltza bat edo egoera txarrean dago." #: ../SoftwareProperties/SoftwareProperties.py:992 #, fuzzy @@ -129,7 +127,8 @@ msgstr "Errorea giltza ezabatzerakoan" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Aukeratutako giltza ezin izan da ezabatu. Mesedez adierazi akatsa." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -174,7 +173,6 @@ msgstr "Ezin izan dira berritu beharrezko meta-paketeak" msgid "A essential package would have to be removed" msgstr "Ezinbesteko pakete bat ezabatu beharko da" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -187,7 +185,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -212,7 +209,6 @@ msgstr "" "Ezin izan da beharrezko pakete bat instalatzea. Mesedez akats honen berri " "eman. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -272,7 +268,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -329,7 +324,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -392,7 +386,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -403,7 +396,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -454,7 +446,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -470,7 +461,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -482,7 +473,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -498,60 +488,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -559,39 +547,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -617,7 +604,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -637,11 +623,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -708,6 +693,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -743,7 +729,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -833,17 +818,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -856,7 +838,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -878,7 +859,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -913,7 +893,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -935,7 +914,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -947,23 +925,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1060,10 +1034,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1285,229 +1263,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/fa.po b/po/fa.po index 838bf5ef..6d8f353d 100644 --- a/po/fa.po +++ b/po/fa.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-06-08 13:47+0000\n" -"Last-Translator: Pedram Ganjeh Hadidi \n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-09 15:49+0000\n" +"Last-Translator: Pedram Ganjeh Hadidi \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +56,6 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -161,7 +159,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -174,7 +171,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -197,7 +193,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -257,7 +252,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -314,7 +308,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -377,7 +370,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -388,7 +380,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -439,7 +430,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -455,7 +445,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -467,7 +457,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -483,57 +472,55 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -541,39 +528,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -599,7 +585,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -619,11 +604,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -690,6 +674,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -725,7 +710,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -815,17 +799,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -838,7 +819,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -860,7 +840,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -894,7 +873,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -916,7 +894,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -928,23 +905,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1041,10 +1014,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1266,229 +1243,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/fi.po b/po/fi.po index 7e1cb3cc..a79069bc 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-06 07:42+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" @@ -54,15 +54,13 @@ msgstr "Kuukauden jälkeen" msgid "After %s days" msgstr "%s päivän jälkeen" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" -msgstr "%s päivitystä" +msgstr "%s-päivitykset" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Pääpalvelin" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "Virhe poistettaessa avainta" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Valitsemaasi avainta ei voitu poistaa. Ole hyvä ja luo tästä virheilmoitus." @@ -168,7 +166,6 @@ msgstr "Tarvittavia metapaketteja ei voi päivittää" msgid "A essential package would have to be removed" msgstr "Välttämätön paketti jouduttaisiin poistamaan" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tarvittavia päivitykseen liittyviä tarkistuksia ei voitu tehdä" @@ -186,7 +183,6 @@ msgstr "" "Ilmoita tästä ohjelmavirheestä paketille \"update-manager\" ja sisällytä " "tiedostot hakemistosta /var/log/dist-upgrade raporttiin." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Joitain paketteja varmennettaessa tapahtui virhe" @@ -213,7 +209,6 @@ msgid "" msgstr "" "Vaadittua pakettia ei voitu asentaa. Ole hyvä ja luo tästä virheraportti. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Ei voitu arvata metapakettia" @@ -294,7 +289,6 @@ msgstr "" "\"Kyllä'\", kaikki \"%s\"-merkinnät muutetaan \"%s\"-merkinnöiksi.\n" "Jos valitset \"Ei\", päivitys keskeytyy." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Lisätäänkö oletusohjelmalähteet?" @@ -365,7 +359,6 @@ msgstr "" "roskakori ja poista väliaikaistiedostot aiemmista asennuksista käyttämällä " "komentoa 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Haluatko aloittaa päivityksen?" @@ -442,7 +435,6 @@ msgid "" msgstr "" "Siistimisvaiheessa ilmeni ongelma. Lisätietoja allaolevassa viestissä. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Palautetaan alkuperäistä järjestelmän tilaa" @@ -453,7 +445,6 @@ msgid "Fetching backport of '%s'" msgstr "Noudetaan paketin \"%s\" takaisinsovitusta" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -512,7 +503,6 @@ msgstr "Etsitään vanhentuneita ohjelmistoja" msgid "System upgrade is complete." msgstr "Järjestelmän päivitys on valmis." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -528,7 +518,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Noudetaan tiedostoa %li/%li nopeudella %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Noin %s jäljellä" @@ -540,7 +530,6 @@ msgstr "Noudetaan tiedostoa %li/%li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Muutoksia toteutetaan" @@ -558,8 +547,7 @@ msgstr "" "Päivitys keskeytyy. Tee tästä virheraportti paketille \"update-manager\" ja " "sisällytä raporttiin tiedostot hakemistosta /var/log/dist-upgrade/." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -568,7 +556,7 @@ msgstr "" "Korvataanko alkuperäisestä muutettu asetustiedosto\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." @@ -576,50 +564,49 @@ msgstr "" "Tähän asetustiedostoon tehdyt muutokset menetetään, jos se korvataan " "uudemmalla versiolla." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Komentoa 'diff' ei löytynyt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Tapahtui vakava virhe" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Ilmoita tästä virheraportilla ja sisällytä siihen tiedostot /var/log/dist-" "upgrade/main.log ja /var/log/dist-upgrade/apt.log. Päivitys keskeytyy nyt.\n" -"Alkuperäinen sources.list tallennettiin nimellä /etc/apt/sources.list." -"distUpgrade." +"Alkuperäinen sources.list tallennettiin nimellä " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paketti poistetaan." msgstr[1] "%d pakettia poistetaan." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d uusi paketti asennetaan." msgstr[1] "%d uutta pakettia asennetaan." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paketti päivitetään." msgstr[1] "%d pakettia päivitetään." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -630,7 +617,7 @@ msgstr "" "\n" "Noudettavaa yhteensä %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -638,34 +625,33 @@ msgstr "" "Päivityksen noutaminen ja asennus voi kestää useita tunteja, eikä sitä voi " "keskeyttää enää myöhemmin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Jottei tietoja häviäisi, sulje kaikki avoinna olevat ohjelmat ja dokumentit." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Järjestelmäsi on ajan tasalla" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Päivityksiä ei ole saatavilla järjestelmälle. Päivitys keskeytyy." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Poista %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Asenna %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Päivitä %s" @@ -691,13 +677,13 @@ msgid "%li seconds" msgstr "%li sekuntia" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" -msgstr "Nouto kestää noin %s 1Mbit-DSL-yhteydellä ja noin %s 56kbit-modeemilla" +msgstr "" +"Nouto kestää noin %s 1Mbit-DSL-yhteydellä ja noin %s 56kbit-modeemilla" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -712,7 +698,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -733,8 +718,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Käynnistä järjestelmä uudelleen saattaaksesi päivityksen loppuun" +"Käynnistä järjestelmä uudelleen saattaaksesi päivityksen " +"loppuun" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -789,6 +774,7 @@ msgid "_Keep" msgstr "_Pidä" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Korvaa" @@ -824,7 +810,6 @@ msgstr "Ei voitu noutaa julkaisutietoja" msgid "Please check your internet connection." msgstr "Tarkista Internet-yhteytesi toimivuus." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Päivitystyökalua ei voitu suorittaa" @@ -927,17 +912,14 @@ msgstr "" "Muutosluettelon nouto epäonnistui. \n" "Tarkista Internet-yhteytesi toimivuus." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Tärkeät turvallisuuspäivitykset" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Suositellut päivitykset" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Ehdotetut päivitykset" @@ -950,7 +932,6 @@ msgstr "Takaisinsovitukset" msgid "Distribution updates" msgstr "Jakelupäivitykset" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Muut päivitykset" @@ -972,7 +953,6 @@ msgstr "Poista _valinnat" msgid "_Check All" msgstr "_Tarkista kaikki" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1007,7 +987,6 @@ msgstr "Versiosta %(old_version)s versioon %(new_version)s" msgid "Version %s" msgstr "Versio %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1032,7 +1011,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Uusi jakelujulkaisu \"%s\" on saatavilla" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Ohjelmaluettelo on rikkinäinen" @@ -1047,23 +1025,19 @@ msgstr "" "Synaptic-pakettienhallintaa tai komentoa \"sudo apt-get install -f\" " "päätteessä." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ei mitään" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 kB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f kB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1088,8 +1062,8 @@ msgstr "Pidä järjestelmäsi ajan tasalla" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Kaikkia päivityksiä ei voi asentaa\r\n" -"\r\n" +"Kaikkia päivityksiä ei voi asentaa \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1174,10 +1148,14 @@ msgid "_Install Updates" msgstr "_Asenna päivitykset" #: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "_Päivitä" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "muutokset" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "päivitykset" @@ -1337,8 +1315,8 @@ msgid "" msgstr "" "Kirjoita haluamasi ohjelmalähteen koko APT-rivi\n" "\n" -"APT-rivi sisältää kanavan tyypin, sijainnin ja sisällön, esimerkiksi " -"\"deb http://ftp.debian.org sarge main\"." +"APT-rivi sisältää kanavan tyypin, sijainnin ja sisällön, esimerkiksi " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1425,230 +1403,186 @@ msgstr "Ikkunan koko" msgid "Configure the sources for installable software and updates" msgstr "Muokkaa asennettavien ohjelmien ja päivitysten lähteitä" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Yhteisön ylläpitämät" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Suljetut laiteajurit" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Rajoitetut ohjelmistot" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\" -CD-levy" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Canonicalin tukemat avoimen lähdekoodin ohjelmat" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Yhteisön ylläpitämät (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Yhteisön ylläpitämät avoimen lähdekoodin ohjelmistot" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Ei-vapaat ajurit" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Suljetut laiteajurit " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Rajoitetut ohjelmat (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Tekijänoikeus- tai lakiasioilla rajoitetut ohjelmistot" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\" -CD-levy" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Takaisinsovitetut päivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\" -CD-levy" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 turvallisuuspäivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 päivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 takaisinsovitukset" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\" -CD-levy" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Virallisesti tuettu" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 turvallisuuspäivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 päivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 takaisinsovitukset" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Yhteisön ylläpitämät (universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ei-vapaat ohjelmat (multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\" -CD-levy" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Ei enää virallisesti tuettu" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Rajoitettu tekijänoikeus" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 turvallisuuspäivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 päivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 takaisinsovitukset" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" turvallisuuspäivitykset" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testattava)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (epävakaa)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" "DFSG-yhteensopivat ohjelmat joilla riippuvuuksia epävapaisiin ohjelmiin" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG-epäyhteensopivat ohjelmat" @@ -1656,6 +1590,7 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Tekijänoikeus- tai lakiasioilla käyttörajoitetut ohjelmistot" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Noudetaan tiedostoa %li/%li tuntemattomalla nopeudella" @@ -1677,8 +1612,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Päivitetään jakeluun Ubuntu 6.10" +#~ "Päivitetään jakeluun Ubuntu " +#~ "6.10" #~ msgid "Important security updates of Ubuntu" #~ msgstr "Ubuntun tärkeät turvallisuuspäivitykset" @@ -1697,16 +1632,16 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "" #~ "Tarkistetaan järjestelmää\n" #~ "\n" -#~ "Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat " -#~ "uusia ominaisuuksia." +#~ "Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat uusia " +#~ "ominaisuuksia." #~ msgid "Oficially supported" #~ msgstr "Virallisesti tuettu" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Jotkut päivitykset vaativat muiden ohjelmien poistoa. Käytä \"Merkitse " #~ "kaikki päivitykset\"-toimintoa Synaptic-pakettienhallintaojhelmassa, tai " @@ -1715,6 +1650,7 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "The following updates will be skipped:" #~ msgstr "Seuraavat päivitykset ohitetaan:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Noin %li sekuntia jäljellä" @@ -1794,8 +1730,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Ubuntu 6.06 LTS takaisinsovitukset" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Luettaessa varastotietoja ei löydetty kelvollisia ohjelmavarastoja " #~ "päivittämistä varten.\n" @@ -1837,12 +1773,11 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Tiedosto '%s' ei sisällä sopivia ohjelmistokanavia." #~ msgid "" -#~ "You need to manually reload the latest information about updates\n" +#~ "You need to manually reload the latest information about " +#~ "updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" #~ "Sinun pitää ladata päivitystiedot uudelleen käsin\n" #~ "\n" @@ -1891,20 +1826,19 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "" #~ "Kirjoita haluamasi varaston koko APT-rivi\n" #~ "\n" -#~ "APT-rivi sisältää varaston tyypin, sijainnin ja sisällön, esimerkiksi " -#~ "\"deb http://ftp.debian.org sarge main\". Lisätietoja aiheesta löydät " +#~ "APT-rivi sisältää varaston tyypin, sijainnin ja sisällön, esimerkiksi " +#~ "\"deb http://ftp.debian.org sarge main\". Lisätietoja aiheesta löydät " #~ "dokumentaatiosta." #~ msgid "A_uthentication" #~ msgstr "Varmenn_us" #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että " -#~ "vastaanotit avaimen luotettavaa kanavaa pitkin, ja että luotat sen " -#~ "omistajaan. " +#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että vastaanotit " +#~ "avaimen luotettavaa kanavaa pitkin, ja että luotat sen omistajaan. " #~ msgid "Automatically check for software _updates." #~ msgstr "Tarkista ohjelma_päivitykset automaattisesti." @@ -1928,8 +1862,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Maksimikoko megatavuissa:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Palauta jakelun mukana toimitetut oletusavaimet. Tämä ei muuta tai poista " #~ "itse asennettuja avaimia." @@ -1958,8 +1892,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Saatavilla olevat päivitykset\n" #~ "\n" @@ -1972,17 +1906,17 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Reload the package information from the server. \n" #~ "\n" -#~ "If you have a permanent internet connection this is done automatically. " -#~ "If you are behind an internet connection that needs to be started by hand " -#~ "(e.g. a modem) you should use this button so that update-manager knows " -#~ "about new updates." +#~ "If you have a permanent internet connection this is done automatically. If " +#~ "you are behind an internet connection that needs to be started by hand (e.g. " +#~ "a modem) you should use this button so that update-manager knows about new " +#~ "updates." #~ msgstr "" #~ "Lataa pakettitiedot palvelimelta uudelleen. \n" #~ "\n" #~ "Jos sinulla on kiinteä Internet-yhteys, tämä tehdään automaattisesti. Jos " #~ "olet käsin muodostettavan Internet-yhteyden (esim. modeemi) takana, sinun " -#~ "täytyy käyttää tätä valintaa jotta päivitystenhallinta saisi tiedon " -#~ "uusista päivityksistä." +#~ "täytyy käyttää tätä valintaa jotta päivitystenhallinta saisi tiedon uusista " +#~ "päivityksistä." #~ msgid "Binary" #~ msgstr "Binääri" @@ -2008,8 +1942,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "Jotkut asennettujen pakettien riippuvuuksista ovat siis täyttämättä. " -#~ "Käytä \"Synaptic\"- tai \"apt-get\"-ohjelmia korjataksesi ongelman." +#~ "Jotkut asennettujen pakettien riippuvuuksista ovat siis täyttämättä. Käytä " +#~ "\"Synaptic\"- tai \"apt-get\"-ohjelmia korjataksesi ongelman." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "Kaikkia paketteja ei voida päivittää." @@ -2017,13 +1951,12 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" -#~ "Pakettien päivittämisen lisäksi tarvitaan siis joitain muita " -#~ "toimenpiteitä (kuten pakettien asentamista tai poistamista). Käytä " -#~ "Synaptic-ohjelman \"Smart Upgrade\"-toimintoa tai \"apt-get dist-upgrade" -#~ "\"-komentoa korjataksesi ongelman." +#~ "Pakettien päivittämisen lisäksi tarvitaan siis joitain muita toimenpiteitä " +#~ "(kuten pakettien asentamista tai poistamista). Käytä Synaptic-ohjelman " +#~ "\"Smart Upgrade\"-toimintoa tai \"apt-get dist-upgrade\"-komentoa " +#~ "korjataksesi ongelman." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Muutoksia ei löytynyt, palvelinta ei ole ehkä vielä päivitetty." @@ -2032,8 +1965,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Päivityksiä asennetaan." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Voit hallita paketteja vain yhdellä ohjelmalla kerrallaan. Sulje toinen " #~ "ohjelma ensin." @@ -2046,20 +1979,19 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Päivitä uudempaan versioon Ubuntu Linuxista. Käyttämällesi versiolle ei " -#~ "enää ole tulossa turvallisuuspäivityksiä tai muita kriittisiä " -#~ "päivityksiä. Tietoja päivittämisestä löydät sivulta http://www." -#~ "ubuntulinux.org." +#~ "Päivitä uudempaan versioon Ubuntu Linuxista. Käyttämällesi versiolle ei enää " +#~ "ole tulossa turvallisuuspäivityksiä tai muita kriittisiä päivityksiä. " +#~ "Tietoja päivittämisestä löydät sivulta http://www.ubuntulinux.org." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ubuntusta on uusi julkaisu saatavilla!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Uusi julkaisu nimeltään '%s' on saatavilla. Päivitysohjeet löydät " #~ "osoitteesta http://www.ubuntulinux.org/." @@ -2071,11 +2003,11 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Ei saatu haluttua lukitusta" #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Tämä tarkoittaa yleensä, että toinen pakettienhallintaohjelma (kuten apt-" -#~ "get tai aptitude) on jo käynnissä. Sulje tämä toinen ohjelma ensin." +#~ "Tämä tarkoittaa yleensä, että toinen pakettienhallintaohjelma (kuten apt-get " +#~ "tai aptitude) on jo käynnissä. Sulje tämä toinen ohjelma ensin." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Alustetaan ja ladataan luetteloa päivityksistä..." @@ -2101,16 +2033,15 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että " -#~ "vastaanotit avaimen luotettua kanavaa pitkin ja että luotat avaimen " -#~ "omistajaan. " +#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että vastaanotit " +#~ "avaimen luotettua kanavaa pitkin ja että luotat avaimen omistajaan. " #~ msgid "" -#~ "Restore the default keys shiped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shiped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Palauta jakelun mukana toimitetut avaimet. Tämä ei tee muutoksia " -#~ "käyttäjän asentamiin avaimiin." +#~ "Palauta jakelun mukana toimitetut avaimet. Tämä ei tee muutoksia käyttäjän " +#~ "asentamiin avaimiin." #~ msgid "Ubuntu Update Manager" #~ msgstr "Ubuntun päivitysten hallinta" @@ -2118,8 +2049,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Saatavilla olevat päivitykset\n" #~ "\n" @@ -2127,4 +2058,4 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "Asenna-painiketta." #~ msgid "0" -#~ msgstr "0" +#~ msgstr "0" \ No newline at end of file diff --git a/po/fr.po b/po/fr.po index d6a281bd..3edae48d 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.37.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-06 17:26+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: E.Malandain \n" "Language-Team: French \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Après un mois" msgid "After %s days" msgstr "Après %s jours" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "Mises à jour %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Serveur principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,7 +122,8 @@ msgid "Error removing the key" msgstr "Erreur lors de la suppression de la clé" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "La clé que vous avez sélectionnée ne peut être supprimée. Veuillez rapporter " "ce bogue." @@ -170,7 +168,6 @@ msgstr "Les meta-paquets désirés n'ont pu être mis à jour" msgid "A essential package would have to be removed" msgstr "Un paquet essentiel devrait être enlevé" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossible de calculer la mise à jour" @@ -187,7 +184,6 @@ msgstr "" "Merci de rapporter ce bogue du paquet « update-manager » et d'inclure les " "fichiers de /var/log/dist-upgrade/ dans le rapport de bogue." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erreur lors de l'authentification de certains paquets" @@ -215,7 +211,6 @@ msgstr "" "Il a été impossible d'installer un paquet pourtant requis. Merci de " "rapporter ce bogue. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossible de déterminer le méta-paquet" @@ -299,7 +294,6 @@ msgstr "" "cela mettra à jour toutes les entrées « %s » vers « %s ».\n" "Sinon, la mise à jour sera annulée." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Générer les sources par défaut ?" @@ -368,11 +362,10 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"Abandon de la mise à jour. Veuillez libérer au moins %s d'espace disque sur %" -"s. Videz la corbeille et supprimez les paquets temporaires des installations " -"effectuées en utilisant la commande « sudo apt-get clean »." +"Abandon de la mise à jour. Veuillez libérer au moins %s d'espace disque sur " +"%s. Videz la corbeille et supprimez les paquets temporaires des " +"installations effectuées en utilisant la commande « sudo apt-get clean »." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Voulez-vous commencer la mise à jour ?" @@ -451,7 +444,6 @@ msgstr "" "Un problème est survenu lors du nettoyage. Veuillez vous reporter au message " "ci-dessous pour plus d'informations. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Restaurer le système dans son état d'origine" @@ -462,7 +454,6 @@ msgid "Fetching backport of '%s'" msgstr "Recherche du backport (rétro-portage) de « %s »" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -521,7 +512,6 @@ msgstr "Recherche de logiciels obsolètes" msgid "System upgrade is complete." msgstr "La mise à jour du système est terminée." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -537,7 +527,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Téléchargement du fichier %li sur %li en cours à %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Environ %s restantes" @@ -549,7 +539,6 @@ msgstr "Téléchargement du fichier %li sur %li en cours" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Application des changements" @@ -565,11 +554,10 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "La mise à jour va être interrompue maintenant. Veuillez signaler ceci comme " -"un bogue du paquet « update-manager » et joindre les fichiers du répertoire /" -"var/log/dist-upgrade/ dans le rapport de bogue." +"un bogue du paquet « update-manager » et joindre les fichiers du répertoire " +"/var/log/dist-upgrade/ dans le rapport de bogue." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -578,7 +566,7 @@ msgstr "" "Remplacer le fichier de configuration personnalisé\n" "« %s » ?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." @@ -586,51 +574,50 @@ msgstr "" "Toutes les modifications apportées à ce fichier de configuration seront " "perdues si vous décidez de le remplacer par une version plus récente." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "La commande « diff » n'a pu être trouvée" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Une erreur fatale est survenue" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Veuillez signaler ce bogue et joindre les fichiers /var/log/dist-upgrade.log " "et /var/log/dist-upgrade/apt.log à votre rapport. La mise à jour est " "annulée.\n" -"Votre fichier sources.list d'origine a été enregistré dans /etc/apt/sources." -"list.distUpgrade." +"Votre fichier sources.list d'origine a été enregistré dans " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paquet va être supprimé." msgstr[1] "%d paquets vont être supprimés." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nouveau paquet va être installé." msgstr[1] "%d nouveaux paquets vont être installés." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paquet va être mis à jour." msgstr[1] "%d paquets vont être mis à jour." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -641,7 +628,7 @@ msgstr "" "\n" "Vous avez à télécharger un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -649,19 +636,18 @@ msgstr "" "La récupération et l'installation de la mise à jour peuvent prendre " "plusieurs heures et l'opération ne peut être annulée ultérieurement." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pour éviter toute perte de données accidentelle, veuillez fermer toutes les " "applications et documents ouverts." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Votre système est à jour" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -669,17 +655,17 @@ msgstr "" "Il n'y a pas de mises à niveau disponibles pour votre système. La mise à " "niveau va maintenant être annulée." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Supprimer %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Installer %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Mettre à jour %s" @@ -705,7 +691,6 @@ msgid "%li seconds" msgstr "%li secondes" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -729,7 +714,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -805,6 +789,7 @@ msgid "_Keep" msgstr "_Conserver" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Remplacer" @@ -840,7 +825,6 @@ msgstr "Impossible de télécharger les informations de version" msgid "Please check your internet connection." msgstr "Veuillez vérifier votre connexion Internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossible de lancer l'outil de mise à jour" @@ -944,17 +928,14 @@ msgstr "" "Échec lors du téléchargement de la liste des modifications. \n" "Veuillez vérifier votre connexion Internet." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Mises à jour de sécurité" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Mises à jour recommandées" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Mises à jour suggérées" @@ -967,7 +948,6 @@ msgstr "« Backports »" msgid "Distribution updates" msgstr "Mises à jour de la distribution" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Autres mises à jour" @@ -989,7 +969,6 @@ msgstr "_Tout décocher" msgid "_Check All" msgstr "Tout _vérifier" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1024,7 +1003,6 @@ msgstr "De la version %(old_version)s vers la version %(new_version)s" msgid "Version %s" msgstr "Version %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1049,7 +1027,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Une nouvelle version « %s » est disponible" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "La liste des logiciels est corrompue" @@ -1064,23 +1041,19 @@ msgstr "" "utiliser d'abord le « Gestionnaire de paquets Synaptic » ou lancez « sudo " "apt-get install -f » dans un terminal pour réparer ce problème." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Aucun(e)" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 Ko" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f Ko" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1093,8 +1066,8 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Vous devez vérifier manuellement la disponibilité de mises à jour\n" +"Vous devez vérifier manuellement la disponibilité de mises à " +"jour\n" "\n" "Votre système ne vérifie pas les mises à jour automatiquement. Vous pouvez " "configurer ce comportement dans Sources logicielles qui se trouve " @@ -1190,10 +1163,15 @@ msgid "_Install Updates" msgstr "_Installer les mises à jour" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "Mettre à _jour" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "changements" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "mises à jour" @@ -1321,8 +1299,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Les informations sur les logiciels disponibles sont obsolètes\n" +"Les informations sur les logiciels disponibles sont " +"obsolètes\n" "\n" "Pour installer de nouveaux logiciels ou des mises à jour à partir des canaux " "logiciels modifiés ou nouvellement ajoutés, vous devez recharger ces " @@ -1452,231 +1430,187 @@ msgstr "" "Configurer les canaux logiciels (sources de mise à jour) et les mises à jour " "via Internet" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Maintenu par la communauté" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Pilotes propriétaires de périphériques" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Logiciel non libre" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM contenant Ubuntu 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Logiciel libre supporté par Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Maintenu par la communauté (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Logiciel libre maintenu par la communauté" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Pilotes non libres" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Pilotes propriétaires de périphériques " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Logiciel non libre (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Logiciel soumis au droit d'auteur ou à des restrictions légales" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM contenant Ubuntu 6.06 LTS \"Dapper Drake\"" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Mises à jour backportées" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM contenant Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Mises à jour pour Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "« Backports » pour Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM contenant Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Supporté officiellement" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Mises à jour pour Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "« Backports » pour Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Maintenu par la communauté (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non libre (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM contenant Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Support officiel terminé" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restreint" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Mises à jour pour Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "« Backports » pour Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Mises à jour de sécurité pour Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" "Logiciel libre (selon les lignes directrices du projet Debian) dont les " "dépendances ne sont pas libres" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" @@ -1684,6 +1618,7 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Logiciel restreint pour des raisons légales ou de copyright" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Téléchargement du fichier %li sur %li à une vitesse inconnue" @@ -1732,18 +1667,18 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Certaines mises à jour requièrent la suppression de logiciels " -#~ "supplémentaires. Utilisez la fonction « Sélectionner la totalité des " -#~ "mises à jour » du « Gestionnaire de paquets Synaptic » ou lancez « sudo " -#~ "apt-get dist-upgrade » dans un terminal pour mettre votre système " -#~ "complètement à jour." +#~ "supplémentaires. Utilisez la fonction « Sélectionner la totalité des mises à " +#~ "jour » du « Gestionnaire de paquets Synaptic » ou lancez « sudo apt-get dist-" +#~ "upgrade » dans un terminal pour mettre votre système complètement à jour." #~ msgid "The following updates will be skipped:" #~ msgstr "Les paquets suivants ne seront pas mis à jour :" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Environ %li secondes restantes" @@ -1819,11 +1754,11 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgstr "« Backports » pour Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" -#~ "Durant la vérification des informations du dépôt, aucune entrée valide " -#~ "pour la mise à jour n'a été trouvée.\n" +#~ "Durant la vérification des informations du dépôt, aucune entrée valide pour " +#~ "la mise à jour n'a été trouvée.\n" #~ msgid "Repositories changed" #~ msgstr "Les dépôts ont été modifiés" @@ -1832,8 +1767,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "Vous devez recharger la liste des paquets depuis les serveurs pour que " -#~ "vos changements soient effectifs. Voulez-vous le faire maintenant ?" +#~ "Vous devez recharger la liste des paquets depuis les serveurs pour que vos " +#~ "changements soient effectifs. Voulez-vous le faire maintenant ?" #~ msgid "Sections" #~ msgstr "Catégories :" @@ -1850,8 +1785,7 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Téléchargement des changements\n" +#~ "Téléchargement des changements\n" #~ "\n" #~ "Il est nécessaire de récupérer les changement du serveur central" @@ -1883,13 +1817,13 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Mises à jour disponibles\n" #~ "\n" -#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à " -#~ "jour en utilisant le bouton Installer." +#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à jour " +#~ "en utilisant le bouton Installer." #~ msgid "Repository" #~ msgstr "Dépôt" @@ -1910,20 +1844,20 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ "Clés d'authentification\n" #~ "\n" #~ "Vous pouvez ajouter ou enlever des clés d'authentification grâce à cette " -#~ "boîte de dialogue. Une clé rend possible la vérification de l'intégrité " -#~ "des logiciels que vous téléchargez." +#~ "boîte de dialogue. Une clé rend possible la vérification de l'intégrité des " +#~ "logiciels que vous téléchargez." #~ msgid "A_uthentication" #~ msgstr "A_uthentification" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Ajouter une nouvelle clé au trousseau digne de confiance. Veuillez " -#~ "vérifier que vous avez obtenu la clé à travers un canal sécurisé et que " -#~ "vous faites confiance à son possesseur. " +#~ "Ajouter une nouvelle clé au trousseau digne de confiance. Veuillez vérifier " +#~ "que vous avez obtenu la clé à travers un canal sécurisé et que vous faites " +#~ "confiance à son possesseur. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "Nettoyer automatiquement les fichiers _temporaires des paquets" @@ -1945,8 +1879,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Restaurer les clés par défaut fournies avec la distribution. Les clés " #~ "installées par l'utilisateur ne seront pas modifiées." @@ -1983,25 +1917,23 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" -#~ "Cela signifie que d'autres actions (comme l'installation ou la " -#~ "suppression de paquets) seront requises après la mise à jour. Veuillez " -#~ "utiliser Synaptic « Mise à jour intelligente » ou « apt-get dist-" -#~ "upgrade » pour régler la situation." +#~ "Cela signifie que d'autres actions (comme l'installation ou la suppression " +#~ "de paquets) seront requises après la mise à jour. Veuillez utiliser Synaptic " +#~ "« Mise à jour intelligente » ou « apt-get dist-upgrade » pour régler la " +#~ "situation." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" -#~ "Changements non trouvés, le serveur n'a peut-être pas encore été mis à " -#~ "jour." +#~ "Changements non trouvés, le serveur n'a peut-être pas encore été mis à jour." #~ msgid "The updates are being applied." #~ msgstr "Les mises à jour ont été appliquées." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Vous ne pouvez exécuter qu'un seul gestionnaire de paquets à la fois. " #~ "Veuillez tout d'abord fermer cette autre application." @@ -2014,20 +1946,20 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Veuillez mettre à jour vers une version plus récente d'Ubuntu Linux. La " -#~ "version que vous êtes entrain d'utiliser ne recevra pas d'autres " -#~ "correctifs de sécurité ou mises à jour critiques. Veuillez voir http://" -#~ "www.ubuntulinux.org pour les informations de mise à jour." +#~ "version que vous êtes entrain d'utiliser ne recevra pas d'autres correctifs " +#~ "de sécurité ou mises à jour critiques. Veuillez voir " +#~ "http://www.ubuntulinux.org pour les informations de mise à jour." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Il y a une nouvelle version d'Ubuntu disponible !" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Une nouvelle version avec le nom de code « %s » est disponible. Veuillez " #~ "voir http://www.ubuntulinux.org pour les informations de mise à jour." @@ -2037,8 +1969,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Vous ne pouvez exécuter qu'un seul gestionnaire de paquets à la fois. " #~ "Veuillez tout d'abord fermer cette autre application." @@ -2075,13 +2007,13 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Mises à jour disponibles\n" #~ "\n" -#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à " -#~ "jour en utilisant le bouton Installer." +#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à jour " +#~ "en utilisant le bouton Installer." #~ msgid "0" -#~ msgstr "0" +#~ msgstr "0" \ No newline at end of file diff --git a/po/fur.po b/po/fur.po index e06a067b..a4be5116 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" "PO-Revision-Date: 2006-08-25 05:55+0000\n" "Last-Translator: Marco \n" "Language-Team: Friulian \n" @@ -55,7 +55,6 @@ msgstr "Dopo un mèis" msgid "After %s days" msgstr "Dopo %s dîs" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -160,7 +158,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -173,7 +170,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,7 +192,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -256,7 +251,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -313,7 +307,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -376,7 +369,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -387,7 +379,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -438,7 +429,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -454,7 +444,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -466,7 +456,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -482,60 +471,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -543,39 +530,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -601,7 +587,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -621,7 +606,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -692,6 +676,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -727,7 +712,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -817,17 +801,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -840,7 +821,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -862,7 +842,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -897,7 +876,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -919,7 +897,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -931,23 +908,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1044,10 +1017,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1269,229 +1246,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/gl.po b/po/gl.po index 8c3220fb..ecf91bf0 100644 --- a/po/gl.po +++ b/po/gl.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-09-25 21:24+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:01+0000\n" "Last-Translator: Xosé \n" "Language-Team: galician\n" "MIME-Version: 1.0\n" @@ -57,7 +57,6 @@ msgstr "Logo dun mes" msgid "After %s days" msgstr "Logo de %s días" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -65,7 +64,6 @@ msgstr "actualizacións de %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -75,7 +73,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -127,7 +124,8 @@ msgid "Error removing the key" msgstr "Houbo un erro ao borrar a clave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Non se pode borrar a clave que seleccionou. Por favor, avise disto como un " "fallo." @@ -172,7 +170,6 @@ msgstr "Non se puideron actualizar os meta-paquetes necesarios" msgid "A essential package would have to be removed" msgstr "Tívose que desinstalar un paquete esencial" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Non se puido calcular a actualización" @@ -189,7 +186,6 @@ msgstr "" "Informa deste erro do pacote \"update-manager\" e inclúe os ficheiros que " "hai en /var/log/dist-upgrade/ no informe." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro autenticando algúns paquetes" @@ -217,7 +213,6 @@ msgstr "" "Non foi posible instalar un paquete necesario. Por favor, informe disto como " "un fallo. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Non se puido determinar o meta-paquete" @@ -299,7 +294,6 @@ msgstr "" "selecciona «Si», actualizaranse todas as entradas '%s' a '%s'.\n" "Se selecciona «Non» cancelarase a actualización." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Xerar orixes predeterminadas?" @@ -312,8 +306,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Tras examinar o seu «sources.list», non se atoparon entradas válidas para '%" -"s'.\n" +"Tras examinar o seu «sources.list», non se atoparon entradas válidas para " +"'%s'.\n" "\n" "Deben engadirse entradas predeterminadas para '%s'? Se selecciona «Non» " "cancelarse a actualización." @@ -372,7 +366,6 @@ msgstr "" "espazo en disco en %s. Vacíe a súa papelera, e elimine os paquetes temporais " "de instalacións anteriores tecleando «sudo apt-get clean» nun terminal." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Desexa comezar a actualización?" @@ -392,8 +385,8 @@ msgstr "" "Vaise cancelar a actualización agora. O teu sistema podería ficar nun estado " "que non permita ser usado. Procedeuse a recuperalo (dpkg --configure -a).\n" "\n" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" -"var/log/dist-upgrade/ no informe." +"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en " +"/var/log/dist-upgrade/ no informe." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -419,6 +412,11 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" +"Canonical Ltd. non forece máis axuda para os pacotes de software seguintes. " +"Pode que ainda podas obter axuda da comunidade.\n" +"\n" +"Se non tes activado o software mantido pola comunidade (universe), " +"suxerirase que elimines estes pacotes no paso seguinte." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -444,7 +442,6 @@ msgstr "" "Ocorreu algún problema durante o limpado. Por favor, vexa a mensaxe inferior " "para máis información. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "A retornar ao estado orixinal do sistema" @@ -452,10 +449,9 @@ msgstr "A retornar ao estado orixinal do sistema" #: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "A procurar backports de \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -463,7 +459,7 @@ msgstr "Comprobando xestor de paquetes" #: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "" +msgstr "Fallou a preparación da actualización" #: ../DistUpgrade/DistUpgradeControler.py:672 msgid "" @@ -471,6 +467,9 @@ msgid "" "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" +"Fallou a preparación do sistema para a actualización. Informa deste erro do " +"pacote \"update-manager\" e inclúe os ficheiros de /var/log/dist-upgrade/ no " +"informe." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -493,8 +492,8 @@ msgstr "" "esencial, xa non se dá atopado.\n" "Isto indica un erro serio.\n" "\n" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" -"var/log/dist-upgrade/ no informe." +"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en " +"/var/log/dist-upgrade/ no informe." #: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" @@ -512,7 +511,6 @@ msgstr "Buscando paquetes obsoletos" msgid "System upgrade is complete." msgstr "Comletouse a actualización do sistema." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -528,7 +526,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "A baixar o ficheiro %li de %li en %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Falta aproximadamente %s" @@ -540,7 +538,6 @@ msgstr "A baixar o ficheiro %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando os cambios" @@ -558,8 +555,7 @@ msgstr "" "Vaise cancelar a actualización agora. Informa desde fallo do pacote \"update-" "manager\" e inclúe os ficheiros en /var/log/dist-upgrade/ no informe." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -568,57 +564,58 @@ msgstr "" "Substituir o ficheiro de configuración personalizado\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Perderás as modificacións feitas neste ficheiro de configuración se escolles " +"substituílo por unha versión máis nova." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Non se atopou o comando 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Ocorreu un erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" -"var/log/dist-upgrade/ main.log e /var/log/dist-upgrade/apt.log no informe. " +"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en " +"/var/log/dist-upgrade/ main.log e /var/log/dist-upgrade/apt.log no informe. " "Vaise cancelar a actualización agora.\n" -"O teu ficheiro sources.list orixinal gardouse en /etc/apt/sources.list." -"distUpgrade." +"O teu ficheiro sources.list orixinal gardouse en " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Vaise eliminar o pacote %d" msgstr[1] "Vanse eliminar os pacotes %d" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Vaise instalar o pacote novo %d" msgstr[1] "Vanse instalar os pacotes novos %d" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Vaise actualizar o pacote %d" msgstr[1] "Vanse actualizar os pacotes %d" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -629,7 +626,7 @@ msgstr "" "\n" "Baixache un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -637,17 +634,17 @@ msgstr "" "Descarregar e instalar a actualización pode levar varias horas e non se pode " "cancelar posteriormente." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." -msgstr "Para previr a perda de datos peche todas as aplicacións e documentos." +msgstr "" +"Para previr a perda de datos peche todas as aplicacións e documentos." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -655,17 +652,17 @@ msgstr "" "Non hai actualizacións disponíbeis par o teu sistema. Cancelamos a " "actualización." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Desinstalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" @@ -691,13 +688,14 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Esta descarga levará uns %s cunha conexión DSL de 1MB e uns %s cun módem de " +"56k." #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -712,7 +710,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -776,17 +773,18 @@ msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "" +msgstr "_Cancelar a Actualización" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "-Continuar" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Conservar" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Substituír" @@ -804,7 +802,7 @@ msgstr "_Continuar actualización" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "" +msgstr "_Iniciar a Actualización" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -822,7 +820,6 @@ msgstr "Non se puideron descargar as notas da versión" msgid "Please check your internet connection." msgstr "Por favor, comprobe a súa conexión a Internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Non se puido executar a ferramenta de actualización" @@ -857,7 +854,8 @@ msgstr "Erro ao descargar" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "Fallou a descarga da actualización. Pode haber un problema coa rede. " +msgstr "" +"Fallou a descarga da actualización. Pode haber un problema coa rede. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -898,12 +896,12 @@ msgstr "" #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "" +msgstr "A descarregar o ficheiro %(current)li de %(total)li con %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 #, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "" +msgstr "A descarregar o ficheiro %(current)li de %(total)li" #: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" @@ -914,24 +912,25 @@ msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" +"A listaxe coas modificacións ainda non está disponíbel.\n" +"Téntao máis tarde." #: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" +"Non se puido descarregar a listaxe de modificacións. \n" +"Comproba a túa conexión á Internet." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizacións de seguranza importantes" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizacións recomendadas" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Actualizacións suxeridas" @@ -942,9 +941,8 @@ msgstr "Backports" #: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "" +msgstr "Actualizacións da distribución" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Outras actualizacións" @@ -956,7 +954,7 @@ msgstr "Versión %s: \n" #: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." -msgstr "" +msgstr "A descarregar a listaxe coas modificacións..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" @@ -966,7 +964,6 @@ msgstr "_Quitarlle a Selección a Todo" msgid "_Check All" msgstr "_Seleccionalo Todo" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -994,14 +991,13 @@ msgstr "A examinar as actualizacións" #: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "" +msgstr "Desde a versión %(old_version)s á %(new_version)s" #: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Versión %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1026,7 +1022,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Está dispoñible a nova versión '%s' da distribución" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "O índice de software está danado" @@ -1041,23 +1036,19 @@ msgstr "" "xestor de paquetes \"Synaptic\", ou execute \"sudo apt-get install -f\" nun " "terminal, para corrixir este problema primeiro." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nengún" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1070,6 +1061,11 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" +"Tes que comprobar as actualizacións manualmente\n" +"\n" +"O teu sistema non comproba as actualizacións automaticamente. Podes " +"configurar este comportamento en Fontes de Software na pestana " +"Actualizacións desde a Internet." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1162,10 +1158,15 @@ msgid "_Install Updates" msgstr "_Instalar actualizacións" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "A_ctualizar" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "mudanzas" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "actualizacións" @@ -1205,7 +1206,7 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" -msgstr "" +msgstr "Engadir un Cdrom" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1415,233 +1416,190 @@ msgstr "O tamaño da ventá" msgid "Configure the sources for installable software and updates" msgstr "Configurar as fontes para programas e actualizacións instalábeis" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantido pola Comunidade" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Controladores propietarios de dispositivos" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Aplicacións restrinxidas" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom con Ubuntu 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" -msgstr "" +msgstr "Software de Código Aberto soportado por Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantido pola Comunidade (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software de Código Aberto mantido pola Comunidade" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Controladores non libres" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Controladores propietarios para dispositivos " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software restrinxido (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "Software restrinxido por razóns de copyright ou legais" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom con Ubuntu 6.06 LTS \"Dapper Drake\"" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Actualizacións de backports" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom con Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizacións de Seguranza para Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualizacións para Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Backports de Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom con Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Soportado oficialmente" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizacións de Seguranza para Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizacións para Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backports para Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pola comunidade (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Software non libre (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom con Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Xa non se mantén oficialmente" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restrinxido" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizacións de Seguranza para Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizacións para Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backports para Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualizacións de seguridade de Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (probas)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (inestable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatible coa DFSG con dependencias non libres" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software non compatible coa DFSG" +#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1652,16 +1610,16 @@ msgstr "Software non compatible coa DFSG" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please " -#~ "report this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " #~ msgstr "" #~ "Ocorreu un problema imposible de resolver cando se calculaba a " #~ "actualización. Por favor, informe disto como un fallo. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " -#~ "edubuntu-desktop package and it was not possible to detect which version " -#~ "of ubuntu you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" @@ -1681,12 +1639,11 @@ msgstr "Software non compatible coa DFSG" #~ "software», ou con Synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." #~ msgstr "" -#~ "A actualización interromperase agora. O seu sistema pode quedar nun " -#~ "estado inutilizable. Estase levando a cabo unha recuperación (dpkg --" -#~ "configure -a)." +#~ "A actualización interromperase agora. O seu sistema pode quedar nun estado " +#~ "inutilizable. Estase levando a cabo unha recuperación (dpkg --configure -a)." #~ msgid "Some software no longer officially supported" #~ msgstr "Algúns programas xa non están soportados oficialmente" @@ -1707,33 +1664,40 @@ msgstr "Software non compatible coa DFSG" #~ msgid "Restoring originale system state" #~ msgstr "Restaurando o estado orixinal do sistema" +#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" #~ "This indicates a serious error, please report this as a bug." #~ msgstr "" -#~ "Logo de actualizarse a información dos seus paquetes xa non é posible " -#~ "atopar o paquete esencial '%s».\n" +#~ "Logo de actualizarse a información dos seus paquetes xa non é posible atopar " +#~ "o paquete esencial '%s».\n" #~ "Isto indica un problema serio, por favor, informe disto como un fallo." +#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "Faltan %li dias %li horas %li minutos" +#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "Faltan %li horas %li minutos" +#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Faltan %li minutos" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Faltan %li segundos" #~ msgid "Download is complete" #~ msgstr "Completouse a descarga" +#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Descargando ficheiro %li de %li a %s/s" +#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Descargando ficheiro %li de %li" @@ -1741,6 +1705,7 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "" #~ "A actualización cancelarase agora. Por favor, informe disto como un fallo." +#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1749,41 +1714,43 @@ msgstr "Software non compatible coa DFSG" #~ "'%s'?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade." -#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " -#~ "now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" #~ "Por favor, informe disto como un fallo e inclúa os arquivos /var/log/dist-" -#~ "upgrade.log e /var/log/dist-upgrade-apt.log no seu informe. A " -#~ "actualización cancelarase agora.\n" -#~ "O seu arquivo «sources.list» orixinal gardouse en /etc/apt/sources.list." -#~ "distUpgrade." +#~ "upgrade.log e /var/log/dist-upgrade-apt.log no seu informe. A actualización " +#~ "cancelarase agora.\n" +#~ "O seu arquivo «sources.list» orixinal gardouse en " +#~ "/etc/apt/sources.list.distUpgrade." +#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "Vaise desinstalar %s paquete." #~ msgstr[1] "Vanse desinstalar %s paquetes." +#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "Vaise instalar %s paquete novo." #~ msgstr[1] "Vanse instalar %s paquetes novos." +#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "Vaise actualizar %s paquete." #~ msgstr[1] "Vanse actualizar %s paquetes." +#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Debe descargar un total de %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time " -#~ "later." +#~ "The upgrade can take several hours and cannot be canceled at any time later." #~ msgstr "" -#~ "A actualización pode levar varias horas e non poderá ser cancelada " -#~ "despois en ningún momento." +#~ "A actualización pode levar varias horas e non poderá ser cancelada despois " +#~ "en ningún momento." #~ msgid "Could not find any upgrades" #~ msgstr "Non se puido atopar ningunha actualización" @@ -1794,8 +1761,7 @@ msgstr "Software non compatible coa DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Actualizando a Ubuntu 6.06 LTS" +#~ "Actualizando a Ubuntu 6.06 LTS" #~ msgid "Downloading and installing the upgrades" #~ msgstr "Descargando e instalando as actualizacións" @@ -1804,42 +1770,44 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "Actualizando Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or " -#~ "with the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " #~ msgstr "" -#~ "Fallou a verificación da actualización. Pode haber un problema coa rede " -#~ "ou o servidor. " +#~ "Fallou a verificación da actualización. Pode haber un problema coa rede ou o " +#~ "servidor. " +#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Descargando ficheiro %li de %li a %s/s" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Descargando ficheiro %li de %li a velocidade descoñecida" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" -#~ "A lista de cambios non está dispoñible aínda. Por favor, ténteo de novo " -#~ "máis tarde." +#~ "A lista de cambios non está dispoñible aínda. Por favor, ténteo de novo máis " +#~ "tarde." #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " #~ "connection." #~ msgstr "" -#~ "Fallou a descarga da lista de cambios. Por favor, comprobe a súa conexión " -#~ "a Internet." +#~ "Fallou a descarga da lista de cambios. Por favor, comprobe a súa conexión a " +#~ "Internet." #~ msgid "Cannot install all available updates" #~ msgstr "Non se puideron instalar todas as actualizacións dispoñibles" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algunhas actualizacións requiren a desinstalación de software. Utilice a " -#~ "función «Marcar todas as actualizacións» do xestor de paquetes " -#~ "«Synaptic», ou execute «sudo apt-get dist-upgrade» nun terminal, para " -#~ "actualizar completamente o seu sistema." +#~ "función «Marcar todas as actualizacións» do xestor de paquetes «Synaptic», " +#~ "ou execute «sudo apt-get dist-upgrade» nun terminal, para actualizar " +#~ "completamente o seu sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "Pasaranse por alto as seguintes actualizacións:" @@ -1853,6 +1821,7 @@ msgstr "Software non compatible coa DFSG" #~ msgid "Show details" #~ msgstr "Mostrar detalles" +#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "Nova versión: %s (Tamaño: %s)" @@ -1862,21 +1831,19 @@ msgstr "Software non compatible coa DFSG" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Por favor, peche primeiro a outra aplicación (ej: «aptitude» ou " -#~ "«Synaptic»)." +#~ "Por favor, peche primeiro a outra aplicación (ej: «aptitude» ou «Synaptic»)." #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" #~ "Debe comprobar as actualizacións manualmente\n" #~ "\n" -#~ "O seu sistema non comproba as actualizacións automatimente. Pode " -#~ "configurar este comportamento en \"Sistema\" -> \"Administración\" -> " -#~ "\"Propiedades do software\"." +#~ "O seu sistema non comproba as actualizacións automatimente. Pode configurar " +#~ "este comportamento en \"Sistema\" -> \"Administración\" -> \"Propiedades do " +#~ "software\"." #~ msgid "" #~ "Examining your system\n" @@ -1886,8 +1853,8 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "" #~ "Analizando o seu sistema\n" #~ "\n" -#~ "As actualizacións de software corrixen erros, eliminan fallos de " -#~ "seguridade e proporcionan novas funcionalidades." +#~ "As actualizacións de software corrixen erros, eliminan fallos de seguridade " +#~ "e proporcionan novas funcionalidades." #~ msgid "Cancel _Download" #~ msgstr "Cancelar _descarga" @@ -1916,16 +1883,15 @@ msgstr "Software non compatible coa DFSG" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and " -#~ "updates from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" #~ "A información das canles está obsoleta\n" #~ "\n" #~ "Debe recargar a información das canles para poder instalar software e " -#~ "actualizacións a partir das canles recientemente engadidas ou " -#~ "cambiadas. \n" +#~ "actualizacións a partir das canles recientemente engadidas ou cambiadas. \n" #~ "\n" #~ "Necesita unha conexión a internet para continuar." @@ -1936,17 +1902,17 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "Compoñentes" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Introduza a liña de APT completa da canle que queira engadir\n" +#~ "Introduza a liña de APT completa da canle que queira " +#~ "engadir\n" #~ "\n" -#~ "A liña de APT contén o tipo, a ubicación e os compoñentes dunha canle, " -#~ "por exemplo \"deb http://ftp.debian.org sarge main\"." +#~ "A liña de APT contén o tipo, a ubicación e os compoñentes dunha canle, por " +#~ "exemplo \"deb http://ftp.debian.org sarge main\"." #~ msgid "Add Channel" #~ msgstr "Engadir unha canle" @@ -1964,12 +1930,12 @@ msgstr "Software non compatible coa DFSG" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in " -#~ "this case." +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." #~ msgstr "" -#~ "Se se desactiva a comprobación automática de actualizacións, debe " -#~ "recargar a lista de canles manualmente. Esta opción permítelle ocultar a " -#~ "notificación que se mostra neste caso." +#~ "Se se desactiva a comprobación automática de actualizacións, debe recargar a " +#~ "lista de canles manualmente. Esta opción permítelle ocultar a notificación " +#~ "que se mostra neste caso." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " @@ -1994,4 +1960,4 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "Actualizacións de Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "«Backports» de Ubuntu 6.06 LTS" +#~ msgstr "«Backports» de Ubuntu 6.06 LTS" \ No newline at end of file diff --git a/po/he.po b/po/he.po index 7ff0ef36..42e311d3 100644 --- a/po/he.po +++ b/po/he.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-09-30 14:09+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 08:48+0000\n" "Last-Translator: Yaniv Abir \n" "Language-Team: Hebrew \n" "MIME-Version: 1.0\n" @@ -58,15 +58,13 @@ msgstr "אחרי חודש" msgid "After %s days" msgstr "אחרי %s ימים" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "מתקין עדכונים..." #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -76,7 +74,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "שרת ראשי" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -127,11 +124,12 @@ msgid "Error removing the key" msgstr "שגיאה בהסרת המפתח" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "לא ניתן להסיר את המפתח שבחרת. אנא דווח על זה כבאג." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" @@ -169,7 +167,6 @@ msgstr "לא ניתן לשדרג את חבילות העל הנדרשות" msgid "A essential package would have to be removed" msgstr "חבילה חיונית תוסר בלית ברירה" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "לא ניתן לחשב את השדרוג" @@ -185,7 +182,6 @@ msgstr "" "לאחר שהמידע על החבילות עודכן החבילה ההכרחית \"%s\" לא נמצא.\n" "כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "שגיאה באימות חלק מן החבילות" @@ -208,13 +204,11 @@ msgid "" "bug. " msgstr "לא ניתן להתקין חבילה הכרחית. אנא דווחו על זה כבאג. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "לא ניתן לקבוע חבילת על" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -222,8 +216,9 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"במערכת שלך נמצאות חבילות פגומות שתוכנה זו לא יכולה לתקן. אנא תקן אותן " -"באמצעות synaptic או apt-get לפני שתמשיך." +"אף אחת החבילות ubuntu-desktop, kubuntu-desktop או edubuntu-desktop אינה " +"מותקנת במערכת שלך, לכן לא ניתן לזהות באיזו גירסה של אובונטו נעשה שימוש.\n" +" אנא התקן אחת מהחבילות הנ\"ל בעזרת Synaptic או apt-get לפני שתמשיך." #: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" @@ -283,7 +278,6 @@ msgstr "" "\n" "בחירה ב\"לא\" תבטל את העדכון." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "לייצר מקורות ברירת מחדל?" @@ -347,7 +341,6 @@ msgstr "" "השדרגו יתבטל כעת. יש לפנות לפחות %s מהשטח ב-%s. רוקנו את הזבל והסירו חבילות " "זמניות מהתקנות קודמות על ידי שימוש בפקודה \"sudo apt-get clean\"." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "האם ברצונך להתחיל את השדרוג?" @@ -411,11 +404,9 @@ msgid "" "more information. " msgstr "מספר בעיות נתגלו במהלך הניקוי. אנא הסתכל בהודעות מטה למידע נוסף. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 -#, fuzzy msgid "Restoring original system state" -msgstr "מאתחל את המערכת" +msgstr "מחזיר את המערכת למצבה המקורי" #: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format @@ -423,7 +414,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -449,7 +439,7 @@ msgid "Invalid package information" msgstr "מידע חבילה לא תקין" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy, python-format +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -476,40 +466,36 @@ msgstr "" msgid "System upgrade is complete." msgstr "שדרוג המערכת הושלם." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "אנא הכניסו את \"%s\" לכונן \"%s\"." #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" msgstr "ההורדה הושלמה" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" msgstr "מוריד קובץ %li מתוך %li ב-%s לשנייה." #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, python-format msgid "About %s remaining" -msgstr "נותרו %li דקות." +msgstr "נותרו כ-%s." #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" msgstr "מוריד קובץ %li מתוך %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 -#, fuzzy msgid "Applying changes" -msgstr "מוריד שינויים..." +msgstr "מחיל שינויים" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format @@ -522,60 +508,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "ארעה שגיאה חמורה" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "חבילה %s תשודרג." -msgstr[1] "%s חבילות ישודרגו." +msgstr[0] "חבילה %d תוסר." +msgstr[1] "%d חבילות יוסרו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "חבילה חדשה %s תותקן." -msgstr[1] "%s חבילות חדשות יותקנו." +msgstr[0] "חבילה חדשה %d תותקן." +msgstr[1] "%d חבילות חדשות יותקנו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "חבילה %s תשודרג." -msgstr[1] "%s חבילות ישודרגו." +msgstr[0] "%d חבילות חדשות ישודרגו." +msgstr[1] "%d חבילות ישודרגו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -586,7 +570,7 @@ msgstr "" "\n" "יש להוריד %s בסה\"כ. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -594,33 +578,32 @@ msgstr "" "הורדת והתקנת השדרוג עשויה לארוך מספר שעות. לא ניתן לבטל את התהליך בשלב מאוחר " "יותר." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "כדי למנוע אובדן מידע אנא סגרו על תוכנית או מסמך פתוחים." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "המערכת שלך מעודכנת" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "אין שדרוגים זמינים למערכת שלך. השדרוג יתבטל כעת." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "הסר %s " -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "התקן %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "שדרג %s" @@ -646,7 +629,6 @@ msgid "%li seconds" msgstr "%liשניות" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -666,7 +648,6 @@ msgstr "השדרוג הסתיים ונדרשת הפעלה מחדש. האם בר #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -730,17 +711,18 @@ msgstr "מסוף" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "" +msgstr "_בטל שידרוג" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_המשך" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_שמור" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_החלף" @@ -758,7 +740,7 @@ msgstr "_המשך בשידרוג" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "" +msgstr "_התחל שידרוג" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -776,7 +758,6 @@ msgstr "לא ניתן להוריד הערות שחרור גירסה." msgid "Please check your internet connection." msgstr "אנא בדקו את החיבור לאינטרנט." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "לא ניתן להריץ את כלי השדרוג" @@ -866,17 +847,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "עדכוני אבטחה חשובים" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "עדכונים מומלצים" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "עדכונים מוצעים" @@ -889,7 +867,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "עדכונים אחרים" @@ -911,22 +888,21 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "גודל ההורדה: %s" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy, python-format +#, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" -msgstr[0] "מתקין עדכונים..." -msgstr[1] "מתקין עדכונים..." +msgstr[0] "ניתן להתקין עדכון %s" +msgstr[1] "ניתן להתקין %s עדכונים" #: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." -msgstr "אנא חכו, התהליך לארוך זמן מה." +msgstr "אנא חכו, התהליך עשוי לארוך זמן מה." #: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" @@ -946,7 +922,6 @@ msgstr "" msgid "Version %s" msgstr "גרסה %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -970,7 +945,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "גירסה חדשה של ההפצה, \"%s\", זמינה" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "אינדקס התוכנות פגום" @@ -984,23 +958,19 @@ msgstr "" "אי אפשר להתקין או להסיר אף תוכנה. יש להשתמש במנהל החבילות \"Synaptic\" או " "להפעיל את הפקודה \"sudo apt-get install -f\" במסוף כדי לתקן בעיה זו." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1016,7 +986,7 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" -msgstr "" +msgstr "שמרו על המערכת מעודכנת" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" @@ -1036,7 +1006,7 @@ msgstr "שינויים ותיאור העדכון" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" -msgstr "בדו_ק" +msgstr "_בדוק" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" @@ -1074,7 +1044,7 @@ msgstr "עדכוני תוכנה מתקנים שגיאות ופרצות אבטח #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" -msgstr "ש_דרג" +msgstr "_שדרג" #: ../data/glade/UpdateManager.glade.h:20 msgid "Upgrade to the latest version of Ubuntu" @@ -1094,15 +1064,18 @@ msgid "_Hide this information in the future" msgstr "_הסתר מידע זה בעתיד" #: ../data/glade/UpdateManager.glade.h:24 -#, fuzzy msgid "_Install Updates" -msgstr "מתקין עדכונים..." +msgstr "_התקן עדכונים" #: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "שינויים" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "עדכונים" @@ -1258,8 +1231,8 @@ msgid "" msgstr "" "הכנס את שורת APT השלמה של המאגר שברצונך להוסיף\n" "\n" -"שורת APT מכילה סוג, מיקום ותוכן של המאגר. לדוגמה: \"deb http://ftp.debian." -"org sarge main\"\n" +"שורת APT מכילה סוג, מיקום ותוכן של המאגר. לדוגמה: \"deb " +"http://ftp.debian.org sarge main\"\n" "אפשר למצוא הסבר מפורט על זה בתיעוד." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 @@ -1344,259 +1317,199 @@ msgstr "גודל החלון" msgid "Configure the sources for installable software and updates" msgstr "הגדרת מקורות התוכנות להתקנה והעדכונים" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "עדכונים - אובונטו 5.10" +msgstr "אובונטו 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "מתוחזק ע\"י הקהילה" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "דרייברים קניינים להתקנים" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "תוכנה שנתרמה" +msgstr "תוכנה בעלת הגבלות" -#. Description #: ../data/channels/Ubuntu.info.in:25 -#, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "תקליטור עם אובונטו 4.10 \"Warty Warthog\"" +msgstr "תקליטור אובונטו 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "עדכונים - אובונטו 5.04" +msgstr "אובונטו 6.06 LTS \"DapperDrake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "מתוחזק ע\"י הקהילה (Universe(" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "תוכנות קוד פתוח המתוחזקות ע\"י הקהילה" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "לא-חופשי (Multiverse(" +msgstr "דרייברים לא חופשיים" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "לא-חופשי (Multiverse(" +msgstr "תוכנה בעלת הגבלות (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "עדכונים - אובונטו 5.04" +msgstr "תקליטור אובונטו 6.06 LTS \"Dapper Drake\"" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 -#, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "תקליטור עם אובונטו 5.10 \"Breezy Badger\"" +msgstr "אובונטו 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "תקליטור עם אובונטו 5.10 \"Breezy Badger\"" +msgstr "תקליטור אובונטו 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "עדכונים - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "עדכונים - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "תקליטור עם אובונטו 5.04 \"Hoary Hedgehog\"" +msgstr "אובונטו 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "תקליטור עם אובונטו 5.04 \"Hoary Hedgehog\"" +msgstr "תקליטור אובונטו 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 -#, fuzzy msgid "Officially supported" msgstr "נתמך רשמית" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "עדכוני אבטחה - אובונטו 5.10" +msgstr "עדכוני אבטחה - אובונטו 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "עדכונים - אובונטו 5.10" +msgstr "עדכונים - אובונטו 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "עדכונים - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "תקליטור עם אובונטו 4.10 \"Warty Warthog\"" +msgstr "אובונטו 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "מתוחזק ע\"י קהילה (Universe(" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "לא-חופשי (Multiverse(" -#. Description #: ../data/channels/Ubuntu.info.in:206 -#, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "תקליטור עם אובונטו 4.10 \"Warty Warthog\"" +msgstr "תקליטור אובונטו 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "נתמך רשמית" +msgstr "אינה נתמכת רשמית יותר" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "זכויות יוצרים מגבילות" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "עדכונים - אובונטו 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "עדכונים - אובונטו 5.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "דביאן 3.1 \"סארג'\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "עדכוני אבטחה - דביאן יציב" -#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "דביאן בדיקה" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "דביאן לא ארה\"ב (לא יציב)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" +#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a " -#~ "1Mbit DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " +#~ "DSL connection" #~ msgstr "ההורדה תיקח בערך %s עם מודם 56k ובערך %s עם חיבור DSL במהירות 1Mbit" #~ msgid "The list of changes is not available yet. Please try again later." @@ -1626,9 +1539,11 @@ msgstr "" #~ "אם אל אפשרת התקנת תוכנות המתחוזקות ע\"י הקהילה (universe), החבילות האלה " #~ "יסומנו להסרה בצעד הבא." +#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "מוריד קובץ %li מתוך %li ב-%s לשנייה" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "מוריד קובץ %li מתוך %li במהירות לא ידועה" @@ -1641,14 +1556,13 @@ msgstr "" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" #~ "יש לחפש עדכונים ידניתg>\n" #~ "\n" -#~ "המערכת שלך לא מחפשת עדכונים באופן אוטומטי. ניתן לשנות הגדרות אלו ב\"מערכת" -#~ "\"-> \"ניהול\" -> \"אפשרויות תוכנה\"." +#~ "המערכת שלך לא מחפשת עדכונים באופן אוטומטי. ניתן לשנות הגדרות אלו ב\"מערכת\"-" +#~ "> \"ניהול\" -> \"אפשרויות תוכנה\"." #~ msgid "Cancel _Download" #~ msgstr "בטל _הורדה" @@ -1674,6 +1588,7 @@ msgstr "" #~ msgid "Oficially supported" #~ msgstr "נתמך רשמית" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "נותרו %li שניות." @@ -1788,8 +1703,8 @@ msgstr "" #~ "תקינות התוכנה שאתה מוריד." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "הוסף קובץ מפתח חדש לרשימת המפתחות שאתה בוטח בהם. אנא וודא שאתה שקיבלת את " #~ "המפתח בדרך מאובטחת ושאתה בוטח בבעלים. " @@ -1819,8 +1734,8 @@ msgstr "" #~ msgstr "גודל מקסימלי במגה-בתים:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "שחזר את מפתחות ברירת המחדל שבאו עם ההפצה. זה לא ישנה את המפתחות המותקנים." @@ -1851,8 +1766,8 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "עדכונים זמינים\n" #~ "\n" @@ -1924,8 +1839,7 @@ msgstr "" #~ msgstr[1] "בחרת את כל %s החבילות המעודכנות, בגודל כולל של %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "בחרת %s מתוך חבילה מעודכנת אחת, בגודל של %s" #~ msgstr[1] "בחרת %s מתוך %s חבילות מעודכנות, בגודל כולל של %s" @@ -1933,8 +1847,8 @@ msgstr "" #~ msgstr "העדכונים מתבצעים כרגע." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "אפשר להריץ רק מנהל חבילות אחד באותו זמן. אנא סגור מנהלי חבילות אחרים קודם." @@ -1949,16 +1863,16 @@ msgstr "" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "אנא עדכן לגרסת אובונטו לינוקס חדשה. הגרסה שאתה משתמש בה כבר לא מקבלת " -#~ "עדכוני אבטחה או עדכונים קריטיים אחרים. אנא ראה http://www.ubuntulinux.org " -#~ "בשביל מידע אודות שדרוג." +#~ "אנא עדכן לגרסת אובונטו לינוקס חדשה. הגרסה שאתה משתמש בה כבר לא מקבלת עדכוני " +#~ "אבטחה או עדכונים קריטיים אחרים. אנא ראה http://www.ubuntulinux.org בשביל " +#~ "מידע אודות שדרוג." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "הפצה חדשה עם שם קוד '%s' זמינה. אנא ראה http://www.ubuntulinux.org/ בשביל " #~ "הוראות שדרוג." @@ -1967,4 +1881,4 @@ msgstr "" #~ msgstr "אל תראה את הודעה זו שוב." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "שינויים לא נמצאו, השרת אולי לא מעודכן עדיין." +#~ msgstr "שינויים לא נמצאו, השרת אולי לא מעודכן עדיין." \ No newline at end of file diff --git a/po/hi.po b/po/hi.po index e89e13d6..57c860f1 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" "PO-Revision-Date: 2006-08-01 15:30+0000\n" "Last-Translator: Gaurav Mishra \n" "Language-Team: Hindi \n" @@ -55,7 +55,6 @@ msgstr "एक महीने बाद" msgid "After %s days" msgstr "%s दिन बाद" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -160,7 +158,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -173,7 +170,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,7 +192,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -256,7 +251,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -313,7 +307,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -376,7 +369,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -387,7 +379,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -438,7 +429,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -454,7 +444,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -466,7 +456,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -482,60 +471,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -543,39 +530,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -601,7 +587,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -621,7 +606,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -692,6 +676,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -727,7 +712,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -817,17 +801,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -840,7 +821,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -862,7 +842,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -897,7 +876,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -919,7 +897,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -931,23 +908,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1044,10 +1017,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1269,232 +1246,187 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " +#~ msgstr " " \ No newline at end of file diff --git a/po/hr.po b/po/hr.po index 14bfbb53..ea7c826a 100644 --- a/po/hr.po +++ b/po/hr.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:38+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 14:38+0000\n" "Last-Translator: Ante Karamatić \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,7 +56,6 @@ msgstr "Nakon mjesec dana" msgid "After %s days" msgstr "Nakon %s dana" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "%s nadogradnje" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Glavni poslužitelj" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -109,11 +106,11 @@ msgstr "Izvorni kod" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" -msgstr "Unos ključa" +msgstr "Uvoz ključa" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" -msgstr "Greška prilikom uvoženja odabrane datoteke" +msgstr "Greška prilikom uvoza odabrane datoteke" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." @@ -124,12 +121,13 @@ msgid "Error removing the key" msgstr "Greška prilikom brisanja ključa" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Ključ koji ste odabrali se ne može obrisati. Molimo prijavite ovu grešku." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" @@ -149,14 +147,14 @@ msgstr "Ubacite CD u uređaj:" #: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" -msgstr "Pokvareni paketi" +msgstr "Neispravni paketi" #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"Vaš sistem sadrži pokvarene pakete koji nisu mogli biti popravljeni sa ovim " +"Vaš sistem sadrži neispravne pakete koji nisu mogli biti popravljeni s ovim " "programom. Popravite ih koristeći synaptic ili apt-get prije nastavljanja." #: ../DistUpgrade/DistUpgradeCache.py:213 @@ -167,23 +165,22 @@ msgstr "Ne mogu nadograditi potrebne meta-pakete" msgid "A essential package would have to be removed" msgstr "Bitan paket bi morao biti uklonjen" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nisam mogao riješiti nadogradnju" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Neriješiv problem se pojavio prilikom rješavanja nadogradnje. Molimo " -"prijavite ovo kao grešku." +"Nerješiv problem se pojavio prilikom rješavanja nadogradnje. \n" +"\n" +"Molimo prijavite ovo kao grešku u 'update-manager' paketu i uključite iz " +"/var/log/dist-upgrade/ u prijavu." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Greška prilikom identificiranja nekih paketa" @@ -195,7 +192,7 @@ msgid "" "unauthenticated packages." msgstr "" "Nije bilo moguće identificirati neke pakete. Ovo bi mogao biti privremeni " -"problem sa mrežom i trebali biste kasnije pokušati ponovo. Pogledajte popis " +"problem s mrežom i trebali biste pokušati ponovo kasnije. Pogledajte popis " "neidentificiranih paketa." #: ../DistUpgrade/DistUpgradeCache.py:312 @@ -211,13 +208,11 @@ msgstr "" "Nije bilo moguće instalirati potreban paket. Molimo prijavite ovo kao " "grešku. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nisam mogao odrediti meta-paket" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -225,10 +220,10 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"Vaš sistem ne sadrži ubuntu-desktop, kubuntu-desktop ili edubuntu-desktop " +"Vaš sustav ne sadrži ubuntu-desktop, kubuntu-desktop ili edubuntu-desktop " "paket i nije bilo moguće odrediti koju verziju Ubuntua koristite.\n" -" Prije nastavljanja, molim instalirajte jedan od gore navedenih paketa " -"koristeći synaptic ili apt-get." +" Prije nastavka, molim instalirajte jedan od gore navedenih paketa koristeći " +"synaptic ili apt-get." #: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" @@ -243,8 +238,8 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"Došlo je do greške prilikom dodavanja CDa zbog kojeg će nadogradnja biti " -"prekinuta. Molim, prijavite ovo kao grešku, ako je ovo ispravan Ubuntu CD.\n" +"Došlo je do greške prilikom dodavanja CD-a zbog kojeg će nadogradnja biti " +"prekinuta. Molim prijavite ovo kao grešku, ako je ovo ispravan Ubuntu CD.\n" "\n" "Poruka je bila:\n" "'%s'" @@ -292,7 +287,6 @@ msgstr "" "odaberete 'Da' nadograditi će se svih '%s' do '%s' unosa.\n" "Ako odaberete 'ne' nadogradnja će se prekinuti." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Kreirati uobičajene izvore?" @@ -305,8 +299,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Nakon očitavanja vaše 'sources.list' datoteke nisam našao ispravan unos za '%" -"s'.\n" +"Nakon očitavanja vaše 'sources.list' datoteke nisam našao ispravan unos za " +"'%s'.\n" "Treba li dodati uobičajene unose za '%s' ? Ako odaberete 'Ne' nadogradnja će " "prekinuti." @@ -320,20 +314,19 @@ msgid "" "report this as a bug." msgstr "" "Nadogradnja podataka repozitorija je rezultirala neispravnom datotekom. " -"Molim, prijavite ovo kao bug." +"Molim, prijavite ovo kao grešku." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Izvori trećih strana su isključeni" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"Neki unosi trećih strana u vašoj souces.list datoteci su isključeni. Možete " +"Neki unosi trećih strana u vašoj sources.list datoteci su isključeni. Možete " "ih uključiti nakon nadogradnje sa 'software-properties' alatom ili sa " "synapticom." @@ -364,7 +357,6 @@ msgstr "" "Ispraznite smeće i uklonite privremene pakete od prošlih instalacija " "koristeći 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Želite li pokrenuti nadogradnju?" @@ -384,8 +376,8 @@ msgstr "" "Nadogradnja se prekida. Vaš sistem bi mogao biti u neupotrebljivom stanju. " "Obnavljanje je pokrenuto (dpkg --configure -a).\n" "\n" -"Molim, prijavite ovu grešku u 'update-manager' paketu i uključite datoteke " -"u /var/log/dist-upgrade/ direktoriju u prijavu." +"Molim, prijavite ovu grešku u 'update-manager' paketu i uključite datoteke u " +"/var/log/dist-upgrade/ direktoriju u prijavu." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -401,10 +393,9 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "Podrška za neke programe je gotova" #: ../DistUpgrade/DistUpgradeControler.py:517 -#, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -412,8 +403,8 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Ovi instalirani paketi više nisu službeno podržani i sada se nalaze u " -"repozitoriju kojeg održava zajednica ('Universe').\n" +"Ovi instalirani paketi više nisu službeno podržani od strane Canonicala i " +"sada se nalaze u repozitoriju kojeg održava zajednica ('Universe').\n" "\n" "Ako nemate omogućen 'universe' repozitorij, ovi paketi biti će predloženi za " "uklanjanje." @@ -442,7 +433,6 @@ msgstr "" "Neki problemi su se pojavili prilikom čišćenja. Molim pogledajte poruku za " "više informacija. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Vraćam u početno stanje" @@ -450,29 +440,27 @@ msgstr "Vraćam u početno stanje" #: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Dohvaćanje backporta od '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Provjeravam upravitelja paketima" #: ../DistUpgrade/DistUpgradeControler.py:671 -#, fuzzy msgid "Preparing the upgrade failed" -msgstr "Pripremam nadogradnju" +msgstr "Neuspjelo pripremanje nadogradnje" #: ../DistUpgrade/DistUpgradeControler.py:672 -#, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -"Neriješiv problem se pojavio prilikom rješavanja nadogradnje. Molimo " -"prijavite ovo kao grešku." +"Nerješiv problem se pojavio prilikom rješavanja nadogradnje. Molimo " +"prijavite ovo kao grešku u 'update-manager' paketu i uključite iz " +"/var/log/dist-upgrade/ u prijavu." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -513,7 +501,6 @@ msgstr "Tražim zastarjele programe" msgid "System upgrade is complete." msgstr "Nadogradnja sustava je završena." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -524,24 +511,23 @@ msgid "Fetching is complete" msgstr "Preuzimanje je završeno" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Preuzimam datoteku %li od %li pri %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Otprilike je ostalo %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" msgstr "Preuzimam datoteku %li od %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Primjenjujem promjene" @@ -559,9 +545,8 @@ msgstr "" "Nadogradnja se prekida. Molim, prijavite ovu grešku za 'update-manager' " "paket i uključite u prijavu datoteke iz /var/log/dist-upgrade direktorija." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -569,61 +554,62 @@ msgstr "" "Zamijeniti konfiguracijsku datoteku\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Izgubit ćete sve promjene napravljene na ovoj konfiguracijskoj datoteci ako " +"odaberete izmjenu s novijom verzijom programa." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Nisam našao naredbu 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Pojavila se ozbiljna greška" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Molim, prijavite ovo kao bug i uključite datoteke /var/log/dist-upgrade/main." -"log i /var/log/dist-upgrade-apt.log u vaše izvješće. Nadogradnja se sada " -"prekida.\n" -"Vaša originalna sources.list datoteka je spremljena u /etc/apt/sources.list." -"distUpgrade." +"Molim, prijavite ovo kao bug i uključite datoteke /var/log/dist-" +"upgrade/main.log i /var/log/dist-upgrade-apt.log u vaše izvješće. " +"Nadogradnja se sada prekida.\n" +"Vaša originalna sources.list datoteka je spremljena u " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s paket će biti uklonjen." -msgstr[1] "%s paketa će biti uklonjena." -msgstr[2] "%s paketa će biti uklonjeno." +msgstr[0] "%d paket će biti uklonjen." +msgstr[1] "%d paketa će biti uklonjena." +msgstr[2] "%d paketa će biti uklonjeno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s novi paket će biti instaliran." -msgstr[1] "%s nova paketa će biti instalirana." -msgstr[2] "%s novih paketa će biti instalirano." +msgstr[0] "%d novi paket će biti instaliran." +msgstr[1] "%d nova paketa će biti instalirana." +msgstr[2] "%d novih paketa će biti instalirano." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s paket će biti nadograđen." -msgstr[1] "%s paketa će biti nadograđena." -msgstr[2] "%s paketa će biti nadograđeno." +msgstr[0] "%d paket će biti nadograđen." +msgstr[1] "%d paketa će biti nadograđena." +msgstr[2] "%d paketa će biti nadograđeno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, python-format msgid "" "\n" "\n" @@ -633,8 +619,7 @@ msgstr "" "\n" "Morate preuzeti ukupno %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -642,33 +627,32 @@ msgstr "" "Nadogradnja može potrajati nekoliko sati i ne može biti prekinuta niti u " "jednom trenutku." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "Da spriječite gubitak podataka zatvorite sve programe i datoteke." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Vaš sustav sadrži posljednje nadogradnje" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." -msgstr "" +msgstr "Nema nadogradnji za vaš sustav. Nadogradnja će biti otkazana." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Ukloni %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Instaliraj %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Nadogradi %s" @@ -694,13 +678,13 @@ msgid "%li seconds" msgstr "%li sekundi" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Preuzimanje će trajati %s sa 1Mbit DSL vezom i otprilike %s sa 56k modemom" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -716,7 +700,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -737,8 +720,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Ponovno pokretanje računala potrebno je za završetak nadogradnje" +"Ponovno pokretanje računala potrebno je za završetak " +"nadogradnje" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -746,11 +729,11 @@ msgstr "Pokrenuti nadogradnju?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Nadogradnja Ubuntua na verziju 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" -msgstr "Čistim" +msgstr "Čišćenje" #: ../DistUpgrade/DistUpgrade.glade.h:9 msgid "Details" @@ -761,7 +744,6 @@ msgid "Difference between the files" msgstr "Razlike između datoteka" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" msgstr "Preuzimam i instaliram nadogradnje" @@ -782,25 +764,25 @@ msgid "Terminal" msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Nastavi nadogradnju" +msgstr "_Prekini nadogradnju" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Nastavi" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Zadrži" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "Za_mijeni" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "_Prijavi bug" +msgstr "_Prijavi grešku" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" @@ -811,9 +793,8 @@ msgid "_Resume Upgrade" msgstr "_Nastavi nadogradnju" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_Nastavi nadogradnju" +msgstr "_Pokreni nadogradnju" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -825,13 +806,12 @@ msgstr "Poslužitelj bi mogao biti preopterećen. " #: ../UpdateManager/DistUpgradeFetcher.py:79 msgid "Could not download the release notes" -msgstr "Nisam mogao dobaviti bilješke izdanja" +msgstr "Nisam mogao dohvatiti bilješke izdanja" #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." msgstr "Molim, provjerite vašu internet vezu." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nisam mogao pokrenuti alat za nadogradnju" @@ -841,11 +821,11 @@ msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" msgstr "" "Ovo je najvjerovatnije greška u alatu za nadogradnju. Molim, prijavite ovo " -"kao bug" +"kao grešku" #: ../UpdateManager/DistUpgradeFetcher.py:171 msgid "Downloading the upgrade tool" -msgstr "Dobavljam alat za nadogradnju" +msgstr "Dohvaćam alat za nadogradnju" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." @@ -865,7 +845,8 @@ msgstr "Preuzimanje nije uspjelo" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "Preuzimanje nadogradnje nije uspjelo. Vjerovatno je problem u mreži. " +msgstr "" +"Preuzimanje nadogradnje nije uspjelo. Vjerojatno je problem u mreži. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -876,7 +857,7 @@ msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"Raspakiravanje nadogradnje nije uspjelo. Vjerovatno je problem u mreži ili " +"Raspakiravanje nadogradnje nije uspjelo. Vjerojatno je problem u mreži ili " "na poslužitelju. " #: ../UpdateManager/DistUpgradeFetcher.py:221 @@ -884,12 +865,11 @@ msgid "Verfication failed" msgstr "Provjera nije uspjela" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"Provjera nadogradnje nije uspjela. Vjerovatno je problem u mreži ili sa " +"Provjera nadogradnje nije uspjela. Vjerojatno je problem u mreži ili s " "poslužiteljem. " #: ../UpdateManager/DistUpgradeFetcher.py:228 @@ -901,66 +881,59 @@ msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" -"Autorizacija nadogradnje nije uspjela. Vjerovatno je problem u mreži ili sa " +"Autorizacija nadogradnje nije uspjela. Vjerojatno je problem u mreži ili s " "poslužiteljem. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Preuzimam datoteku %li od %li pri %s/s" +msgstr "Preuzimanje datoteke %(current)li od %(total)li brzinom %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Preuzimam datoteku %li od %li pri %s/s" +msgstr "Preuzimam datoteku %(current)li od %(total)li" #: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" msgstr "Popis promjena nije dostupan." #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -"Popis promjena trenutačno nije dostupan. Molim, pokušajte ponovno kasnije." +"Popis promjena trenutno nije dostupan. \n" +"Molim, pokušajte ponovno kasnije." #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Preuzimanje popisa promjena nije uspjelo. Molim, provjerite svoju internet " -"vezu." +"Preuzimanje popisa promjena nije uspjelo. \n" +"Molim, provjerite svoju internet vezu." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Važne sigurnosne nadogradnje" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Preporučene nadogradnje" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Predložene nadogradnje" #: ../UpdateManager/UpdateManager.py:241 -#, fuzzy msgid "Backports" -msgstr "Ubuntu 5.10 backporti" +msgstr "Backporti" #: ../UpdateManager/UpdateManager.py:242 -#, fuzzy msgid "Distribution updates" -msgstr "_Nastavi nadogradnju" +msgstr "Nadogranje distribucije" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Druge nadogradnje" @@ -971,20 +944,17 @@ msgid "Version %s: \n" msgstr "Verzija %s: \n" #: ../UpdateManager/UpdateManager.py:539 -#, fuzzy msgid "Downloading list of changes..." msgstr "Preuzimam popis promjena..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" -msgstr "" +msgstr "_Odznači sve" #: ../UpdateManager/UpdateManager.py:572 -#, fuzzy msgid "_Check All" -msgstr "Pro_vjeri" +msgstr "Pro_vjeri sve" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1007,21 +977,19 @@ msgid "Update is complete" msgstr "Nadogradnja je gotova" #: ../UpdateManager/UpdateManager.py:719 -#, fuzzy msgid "Checking for updates" -msgstr "_Instaliraj nadogradnje" +msgstr "Tražim moguće nadogradnje" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "Nova verzija: %s (Veličina: %s)" +msgstr "Verzija %(old_version)s u %(new_version)s" #: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Verzija %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1046,7 +1014,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Novo izdanje distribucije, '%s', je dostupno" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Popis programa je oštećen" @@ -1059,32 +1026,27 @@ msgid "" msgstr "" "Nemoguće je instalirati ili ukloniti bilo koji program. Molim koristite " "upravitelja paketima \"Synaptic\" ili upišite \"sudo apt-get install -f\" u " -"terminal za ispravljanje ovog problema." +"terminalu za ispravljanje ovog problema." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ništa" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "1KB" +msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" @@ -1094,24 +1056,20 @@ msgstr "" "Morate ručno provjeriti postojanje nadogradnji\n" "\n" "Vaš sustav ne provjerava automatski postojanje nadogradnji. Možete podesiti " -"ovo ponašanje u \"Sustav\" -> \"Administacija\" -> \"Postavke nadogradnje\"." +"ovo ponašanje u Softver repozitoriji, na Internet nadogradnje " +"kartici." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "Održavajte vaš sustav nadograđenim" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" -msgstr "" -"Greška prilikom očitavanja CD-a\n" -"\n" -"%s" +msgstr "Greška prilikom očitavanja CD-a" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Pokrenuti nadogradnju?" +msgstr "Pokreće se upravitelj nadogradnji" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1144,6 +1102,10 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Pokreni nadogradnju distribucije, za instalaciju što više nadogradnji.\n" +"\n" +"Ovo može biti izazvano nedovršenom nadogradnjom, neslužbenim paketima ili " +"pokretanjem razvojne verzije." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1174,9 +1136,8 @@ msgid "_Check" msgstr "Pro_vjeri" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "_Nastavi nadogradnju" +msgstr "_Nadogradnja distribucije" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1187,10 +1148,14 @@ msgid "_Install Updates" msgstr "_Instaliraj nadogradnje" #: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "Na_dogradnja" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "promjene" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "nadogradnje" @@ -1221,16 +1186,15 @@ msgid "" "rank applications in the search results." msgstr "" "Kako bismo poboljšali Ubuntu, molim odvojite trenutak i sudjelujte u " -"anketi. Ako to želite, lista instaliranog softvera i periodičnost njegove " +"anketi. Ako to želite, popis instaliranog softvera i periodičnost njegove " "uporabe biti će anonimno poslana Ubuntu projektu svaki tjedan.\n" "\n" "Rezultati će se iskoristiti kako bi se povećala podrška za popularne " "programe i kako bi se programi rangirali više na ljestvici pretrage." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "Dodaj _CD-ROM" +msgstr "Dodaj CD-ROM" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1257,7 +1221,7 @@ msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -"Samo sigrnosne nadogradnje sa službenih Ubuntu poslužitelja biti će " +"Samo sigrnosne nadogradnje sa službenih Ubuntu poslužitelja će biti " "instalirane automatski" #: ../data/glade/SoftwareProperties.glade.h:16 @@ -1306,7 +1270,6 @@ msgid "_Install security updates without confirmation" msgstr "_Instaliraj sigurnosne nadogradnje bez potvrde" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1317,8 +1280,8 @@ msgid "" msgstr "" "Informacije o repozitoriju su prestare\n" "\n" -"Morate ponovno učitati repozitorij za instalaciju programa i nadogradnji s " -"novog ili promjenjenog repozitorija. \n" +"Morate ponovno učitati repozitorij za instalaciju programa i nadogradnju s " +"novog ili promijenjenog repozitorija. \n" "\n" "Trebate funkcionalnu internet vezu za nastavak." @@ -1343,7 +1306,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1351,11 +1313,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Unesite kompletnu APT liniju repozitorija koji želite dodati\n" +"Unesite kompletnu APT liniju repozitorija koji želite " +"dodati\n" "\n" -"APT linija uključuje vstu, lokaciju i komponente kanala, na primjer \"deb " -"http://ftp.debian.org sarge main\"." +"APT linija uključuje vrstu, lokaciju i komponente kanala, na primjer " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1406,7 +1368,6 @@ msgid "Check for new distribution releases" msgstr "Provjeri za nova izdanja distribucije" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy msgid "" "If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " @@ -1429,7 +1390,6 @@ msgid "Stores the size of the update-manager dialog" msgstr "Sprema veličinu prozora upravitelja nadogradnji" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" @@ -1443,235 +1403,190 @@ msgstr "Veličina prozora" msgid "Configure the sources for installable software and updates" msgstr "Podesi repozitorije i nadogradnje" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Održavani od strane zajednice" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Neslobodni upogonitelji za uređaje" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Neslobodni softver" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CDROM sa Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -#, fuzzy msgid "Canonical supported Open Source software" -msgstr "Održavani od strane zajednice (Universe)" +msgstr "Službeno podržani Open Source softver" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Održavani od strane zajednice (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Softver održavan od strane zajednice" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Neslobodni pogonski programi" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Neslobodni upogonitelji za uređaje " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Ograničeni softver (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "Softver ograničen autorskim pravom ili legalnim pitanjima" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CDROM s Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backport nadogradnje" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CDROM s Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 sigurnosne nadogradnje" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 osvježenja" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 backporti" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom sa Ubuntu 5.04 ' Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Službeno podržani" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 sigurnosne nadogradnje" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 nadogradnje" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 backporti" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Wart Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Održavani od strane zajednice (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Neslobodni (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom sa Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Neki paketi više nisu službeno podržani" +msgstr "Više nisu službeno podržani" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Ograničeno autorsko pravo" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 sigurnosne nadogradnje" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 osvježenja" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" sigurnosne nadogradnje" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testni)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (nestabilni)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibilni programi sa neslobodnim ovisnostima" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG-nekompatibilni programi" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Preuzimam datoteku %li od %li nepoznatom brzinom" @@ -1722,8 +1637,8 @@ msgstr "DFSG-nekompatibilni programi" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Neke nadogradnje zahtijevaju uklanjanje pojedinih programa. Upotrijebite " #~ "opciju \"Označi sve nadogradnje\" upravitelja paketima \"Synaptic\" ili " @@ -1733,6 +1648,7 @@ msgstr "DFSG-nekompatibilni programi" #~ msgid "The following updates will be skipped:" #~ msgstr "Slijedeći paketi će biti preskočeni:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Otprilike je ostalo %li sekundi" @@ -1804,4 +1720,4 @@ msgstr "DFSG-nekompatibilni programi" #~ msgstr "Ubuntu 6.06 LTS osvježenja" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS backporti" +#~ msgstr "Ubuntu 6.06 LTS backporti" \ No newline at end of file diff --git a/po/hu.po b/po/hu.po index 8512995a..05748370 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-06 10:07+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Egy hónap után" msgid "After %s days" msgstr "%s nap után" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "%s frissítés" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Fő kiszolgáló" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,12 +120,13 @@ msgid "Error removing the key" msgstr "Hiba a kulcs eltávolítása közben" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Az Ön által kijelölt kulcs nem távolítható el. Kérem jelentse ezt hibaként." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -167,7 +165,6 @@ msgstr "A szükséges meta-csomagok nem frissíthetőek" msgid "A essential package would have to be removed" msgstr "Egy alapvető csomag eltávolításra kerülne" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nem tudom megtervezni a frissítés menetét" @@ -181,10 +178,9 @@ msgid "" msgstr "" "A frissítés megtervezése közben feloldhatatlan probléma lépett fel.\n" "\n" -"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a /var/log/" -"dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." +"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a " +"/var/log/dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Hiba történt néhány csomag hitelesítése közben" @@ -210,7 +206,6 @@ msgid "" "bug. " msgstr "Egy szükséges csomag nem telepíthető. Kérem, jelentse ezt hibaként. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nem tudom megállapítani a meta-csomagot" @@ -292,7 +287,6 @@ msgstr "" "frissítve. \n" "A \"Nem\" kiválasztása megszakítja a frissítést." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Alapértelmezett források ismételt előállítása?" @@ -360,11 +354,10 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"A frissítés most meg fog szakadni. Szabadítson fel legalább %s helyet a(z) %" -"s lemezen. Ürítse a kukáját és törölje a korábbi telepítések átmeneti " +"A frissítés most meg fog szakadni. Szabadítson fel legalább %s helyet a(z) " +"%s lemezen. Ürítse a kukáját és törölje a korábbi telepítések átmeneti " "fájljait a \"sudo apt-get clean\" parancs kiadásával." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Biztosan el szeretné kezdeni a frissítést?" @@ -384,8 +377,8 @@ msgstr "" "A frissítés most félbeszakad. Előfordulhat, hogy a rendszer használhatatlan " "állapotban van. Egy helyreállítás került futtatásra (dpkg --configure -a).\n" "\n" -"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a /var/log/" -"dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." +"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a " +"/var/log/dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -404,7 +397,6 @@ msgid "Support for some applications ended" msgstr "Egyes alkalmazások támogatása megszűnt" #: ../DistUpgrade/DistUpgradeControler.py:517 -#, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -412,11 +404,12 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Ezek a telepített csomagok már nincsenek hivatalosan támogatva, csak a " -"közösség által (\"universe\").\n" +"A Canonical Ltd. már nem biztosít támogatást a következő " +"szoftvercsomagokhoz. A közösségtől továbbra is kaphat támogatást. \n" "\n" -"Ha nincs engedélyezve a \"universe\" tároló, akkor ezek a csomagok a " -"következő lépésben ki lesznek jelölve eltávolításra." +"Ha nincsenek engedélyezve a közösség által karbantarott szoftverek (universe " +"tároló), akkor ezek a csomagok a következő lépésben eltávolításra lesznek " +"javasolva." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -442,7 +435,6 @@ msgstr "" "A frissítés befejező fázisa közben hiba lépett fel. Az alábbi üzenet további " "információkat tartalmaz a hibára vonatkozóan. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "A rendszer eredeti állapotának helyreállítása" @@ -453,26 +445,24 @@ msgid "Fetching backport of '%s'" msgstr "\"%s\" visszaportolt változatának letöltése" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Csomagkezelő ellenőrzése" #: ../DistUpgrade/DistUpgradeControler.py:671 -#, fuzzy msgid "Preparing the upgrade failed" -msgstr "Frissítés előkészítése" +msgstr "A frissítés előkészítése meghiúsult" #: ../DistUpgrade/DistUpgradeControler.py:672 -#, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -"A frissítés megtervezése közben feloldhatatlan probléma lépett fel. Kérem, " -"jelentse ezt hibaként." +"A rendszer frissítésre való előkészítése meghiúsult. Jelentse ezt a hibát az " +"\"update-manager\" csomaghoz és vegye be a /var/log/dist-upgrade/ " +"könyvtárban található fájlokat a hibajelentésbe." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -513,7 +503,6 @@ msgstr "Elavult szoftverek keresése" msgid "System upgrade is complete." msgstr "A rendszer frissítése befejeződött." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -529,19 +518,18 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Fájl letöltése (%li., összesen: %li), sebesség: %s/mp" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Kb. %s van hátra" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Fájl letöltése: %li/%li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Módosítások alkalmazása..." @@ -560,8 +548,7 @@ msgstr "" "csomaghoz és vegye be a /var/log/dist-upgrade/ könyvtárban található " "fájlokat a hibajelentésbe." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -571,26 +558,26 @@ msgstr "" "\"%s\"\n" "konfigurációs fájlt?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "A beállítófájl összes módosítása elvész, ha lecseréli az újabb verzióra." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "A 'diff' parancs nem található" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Végzetes hiba történt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Jelentse ezt hibaként és a hibajelentéshez mellékelje a /var/log/dist-" @@ -600,27 +587,26 @@ msgstr "" "mentésre." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d csomag el lesz távolítva." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d új csomag kerül telepítésre." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d csomag frissítve lesz." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -630,7 +616,7 @@ msgstr "" "\n" "Összes letöltendő adatmennyiség: %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -638,19 +624,18 @@ msgstr "" "A frissítés letöltése és telepítése több órát is igénybe vehet és a " "későbbiek során nem lehet bármikor megszakítani." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Az esetleges adatvesztés elkerülése érdekében zárjon be minden nyitott " "alkalmazást és dokumentumot." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "A rendszere naprakész" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -658,17 +643,17 @@ msgstr "" "Nem állnak rendelkezésre frissítések a rendszeréhez. A frissítés most " "megszakad." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "%s eltávolítása" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "%s telepítése" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "%s frissítése" @@ -694,7 +679,6 @@ msgid "%li seconds" msgstr "%li másodperc" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -718,7 +702,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -782,9 +765,8 @@ msgid "Terminal" msgstr "Terminál" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "Frissítés _folytatása" +msgstr "Frissítés _megszakításaa" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" @@ -795,6 +777,7 @@ msgid "_Keep" msgstr "_Megtartás" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Csere" @@ -811,9 +794,8 @@ msgid "_Resume Upgrade" msgstr "Frissítés _folytatása" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "Frissítés _folytatása" +msgstr "Frissítés _indítása" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -831,7 +813,6 @@ msgstr "A kiadási megjegyzések nem tölthetők le" msgid "Please check your internet connection." msgstr "Kérjük ellenőrizze az internetkapcsolatát." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nem sikerült futtatni a frissítőeszközt" @@ -906,46 +887,44 @@ msgstr "" "kiszolgálóval. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "%li. fájl letöltése, összesen: %li, sebesség: %s/mp" +msgstr "" +"%(current)li. fájl letöltése, összesen: %(total)li, sebesség: %(speed)s/mp" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "%li. fájl letöltése, összesen: %li, sebesség: %s/mp" +msgstr "%(current)li. fájl letöltése, összesen: %(total)li" #: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" msgstr "A módosítások listája nem érhető el" #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "A módosítások listája még nem érhető el. Próbálkozzon később." +msgstr "" +"A módosítások listája még nem érhető el.\n" +"Próbálkozzon később." #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"A módosítások listájának letöltése meghiúsult. Ellenőrizze az " -"internetkapcsolatát." +"A módosítások listájának letöltése meghiúsult.\n" +"Ellenőrizze az internetkapcsolatát." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Fontos biztonsági frissítések" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Ajánlott frissítések" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Javasolt frissítések" @@ -955,11 +934,9 @@ msgid "Backports" msgstr "Visszaportolt csomagok" #: ../UpdateManager/UpdateManager.py:242 -#, fuzzy msgid "Distribution updates" -msgstr "Frissítés _folytatása" +msgstr "Disztribúciófrissítések" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Egyéb frissítések" @@ -970,9 +947,8 @@ msgid "Version %s: \n" msgstr "%s verzió: \n" #: ../UpdateManager/UpdateManager.py:539 -#, fuzzy msgid "Downloading list of changes..." -msgstr "Módosítások listájának letöltése..." +msgstr "Változások listájának letöltése..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" @@ -982,7 +958,6 @@ msgstr "_Kijelölések törlése" msgid "_Check All" msgstr "Összes _ellenőrzése" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1007,16 +982,15 @@ msgid "Checking for updates" msgstr "Frissítések keresése" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "Új verzió: %s (Méret: %s)" +msgstr "Régi verzió: %(old_version)s, új verzió: %(new_version)s" #: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "%s verzió" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1041,7 +1015,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "A disztribúció új \"%s\" kiadása elérhető" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "A szoftverindex sérült" @@ -1056,42 +1029,37 @@ msgstr "" "csomagkezelőt vagy futtassa a \"sudo apt-get install -f\" parancsot egy " "terminálban a probléma megoldása érdekében." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nincs" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Önnek kézzel kell megkeresnie a rendelkezésre álló frissítéseket\n" +"Saját kezűleg kell megkeresnie a rendelkezésre álló " +"frissítéseket\n" "\n" -"Az Ön rendszere jelenleg nem keresi automatikusan a frissítéseket. Ezt a " -"viselkedést a \"Rendszer\" -> \"Adminisztráció\" -> \"Szoftverbeállítások\" " -"menüpont alatt változtathatja meg." +"A rendszere jelenleg nem keresi automatikusan a frissítéseket. Ezt a " +"viselkedést az Internetes frissítések lap Szoftverforrások " +"szakaszában változtathatja meg." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1100,8 +1068,8 @@ msgstr "Tartsa naprakészen a rendszerét" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Nem minden frissítés telepíthető\r\n" -"\r\n" +"Nem minden frissítés telepíthető \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1186,10 +1154,15 @@ msgid "_Install Updates" msgstr "_Telepítés" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "_Frissítés" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "módosítás" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "frissítés" @@ -1228,9 +1201,8 @@ msgstr "" "keresési eredmények rangsorolásához kerülnek felhasználásra." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "_CD hozzáadása" +msgstr "_CD-ROM hozzáadása" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1314,8 +1286,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Az elérhető szoftverekkel kapcsolatos információk elévültek\n" +"Az elérhető szoftverekkel kapcsolatos információk " +"elévültek\n" "\n" "Szoftverek és frissítések telepítéséhez újonnan felvett vagy módosított " "forrásokból, újra le kell töltenie az elérhető szoftverekkel kapcsolatos " @@ -1351,11 +1323,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Adja meg a forrásként felvenni kívánt tároló teljes APT sorát\n" +"Adja meg a forrásként felvenni kívánt tároló teljes APT " +"sorát\n" "\n" -"Az APT sor tartalmazza a tároló típusát, helyét és összetevőit, például " -"\"deb http://ftp.debian.org sarge main\"." +"Az APT sor tartalmazza a tároló típusát, helyét és összetevőit, például " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1428,13 +1400,12 @@ msgid "Stores the size of the update-manager dialog" msgstr "A frissítéskezelő ablak méretének tárolása" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" -"Eltárolja a változások listáját és a megnevezéseket tartalmazó lista " -"kiterjesztőjének állapotát" +"Eltárolja a módosítások listáját és a leírást tartalmazó kiterjesztő " +"állapotát" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" @@ -1444,234 +1415,190 @@ msgstr "Az ablak mérete" msgid "Configure the sources for installable software and updates" msgstr "Telepíthető szoftverek és frissítések forrásának beállítása" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Közösségi karbantartású" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Szabadalmazott eszközmeghajtók" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Nem-szabad" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Az Ubuntu 6.10 \"Edgy Eft\" CD-ROM" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -#, fuzzy msgid "Canonical supported Open Source software" -msgstr "Közösségi karbantartású (Universe)" +msgstr "A Canonical által támogatott nyílt forrású szoftverek" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Közösségi karbantartású (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Közösségi karbantartású nyílt forrású szoftverek" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Nem-szabad meghajtók" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Szabadalmazott eszközmeghajtók " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Nem-szabad szoftverek (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Szerzői vagy egyéb jogi problémák miatt korlátozott szoftver" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Az Ubuntu 6.06 LTS \"Dapper Drake\"-et tartalmazó CD-ROM" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Visszaportolt frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Az Ubuntu 5.10 \"Breezy Badger\"-t tartalmazó CD-ROM" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 biztonsági frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 visszaportolt csomagok" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Az Ubuntu 5.04 \"Hoary Hedgehog\"-ot tartalmazó CD-ROM" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Hivatalosan támogatott" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 biztonsági frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 visszaportolt csomagok" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Közösségi karbantartású (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nem-szabad (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Az Ubuntu 4.10 \"Warty Warthog\"-ot tartalmazó CD-ROM" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Hivatalosan már nem támogatott" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Szerzői jogi korlátozás alatt" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 biztonsági frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 frissítések" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 visszaportolt csomagok" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" biztonsági frissítések" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (tesztelés alatt)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (instabil)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibilis szoftver nem-szabad függőségekkel" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Nem DFSG-kompatibilis szoftver" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "%li. fájl letöltése, összesen: %li, ismeretlen sebességgel" @@ -1722,8 +1649,8 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Néhány frissítés további szoftverek eltávolítását igényli. Használja a " #~ "Synaptic csomagkezelő \"Minden frissítés kijelölése\" funkcióját, vagy " @@ -1733,6 +1660,7 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgid "The following updates will be skipped:" #~ msgstr "A következő frissítések ki lesznek hagyva:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Kb. %li másodperc van hátra" @@ -1757,8 +1685,7 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Zárja be a másik alkalmazást, például az aptitude vagy Synaptic " -#~ "programokat." +#~ "Zárja be a másik alkalmazást, például az aptitude vagy Synaptic programokat." #~ msgid "Channels" #~ msgstr "Csatornák" @@ -1804,4 +1731,4 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgstr "Ubuntu 6.06 LTS frissítések" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS visszaportolt csomagok" +#~ msgstr "Ubuntu 6.06 LTS visszaportolt csomagok" \ No newline at end of file diff --git a/po/id.po b/po/id.po index 961425bc..ed101ae8 100644 --- a/po/id.po +++ b/po/id.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:38+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Andy Apdhani \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" @@ -54,15 +54,13 @@ msgstr "Setelah satu bulan" msgid "After %s days" msgstr "Setelah %s hari" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "_Instal Update" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,12 +121,13 @@ msgid "Error removing the key" msgstr "Kesalahan menghapus kunci" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Berkas yang anda pilih tidak dapat dihapus. Silakan laporkan ini sebagai bug." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -168,7 +166,6 @@ msgstr "Tidak dapat memutakhirkan meta-paket yang dibutuhkan" msgid "A essential package would have to be removed" msgstr "Paket esensial akan dihapus" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menghitung pemutakhiran" @@ -184,7 +181,6 @@ msgstr "" "Terjadi masalah saat menghitung pemutakhiran. Silakan laporkan ini sebagai " "bug." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kesalahan membuktikan keabsahan beberapa paket" @@ -212,7 +208,6 @@ msgstr "" "Tidak memungkinkan untuk menginstal paket yang dibutuhkan. Silakan laporkan " "ini sebagai bug. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Tidak dapat menebak meta-paket" @@ -286,7 +281,6 @@ msgstr "" "pilih 'Yes' disini, berkas akan memutakhirkan semua entri '%s' ke '%s'.\n" "Jika anda pilih 'no' pemutakhiran akan dibatalkan." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Membuat sumber baku?" @@ -358,7 +352,6 @@ msgstr "" "cakram pada %s. Kosongkan sampah anda dan hapus paket sementara dari " "instalasi terdahulu dengan menggunakan 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Apakah anda ingin memulai pemutakhiran?" @@ -434,7 +427,6 @@ msgstr "" "Beberapa kesalahan terjadi pada waktu pembersihan. Silakan lihat pesan di " "bawah untuk informasi lebih lanjut. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Sistem dikembalikan ke keadaan awal" @@ -445,7 +437,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -475,7 +466,7 @@ msgid "Invalid package information" msgstr "Informasi paket tidak valid" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy, python-format +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -504,7 +495,6 @@ msgstr "Mencari perangkat lunak usang" msgid "System upgrade is complete." msgstr "Upgrade sistem telah selesai." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -516,24 +506,23 @@ msgid "Fetching is complete" msgstr "Pemutakhiran selesai" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Mengunduh berkas %li dari %li pada %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, fuzzy msgid "About %s remaining" msgstr "Sekitar %li menit lagi" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Mengunduh berkas %li dari %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Sahkan perubahan" @@ -549,9 +538,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -559,55 +547,54 @@ msgstr "" "Mengganti berkas konfigurasi\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Perintah 'diff' tidak dapat ditemukan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Terjadi kesalahan fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Silakan laporkan ini sebagai bug dan sertakan berkas /var/log/dist-upgrade." -"log dan /var/log/dist-upgrade-apt.log dalam laporan anda. Upgrade akan " -"dibatalkan sekarang. Berkas sources.list anda akan disimpan dalam /etc/apt/" -"sources.list.distUpgrade." +"Silakan laporkan ini sebagai bug dan sertakan berkas /var/log/dist-" +"upgrade.log dan /var/log/dist-upgrade-apt.log dalam laporan anda. Upgrade " +"akan dibatalkan sekarang. Berkas sources.list anda akan disimpan dalam " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket akan dihapus." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s paket baru akan diinstal." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket akan diupgrade." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -617,7 +604,7 @@ msgstr "" "\n" "Anda harus mengunduh sebanyak %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -626,45 +613,44 @@ msgstr "" "Upgrade membutuhkan waktu beberapa jam dan tidak dapat dibatalkan setelah " "itu." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Untuk mencegah kehilangan data silakan tutup seluruh aplikasi dan dokumen." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sistem anda telah up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Hapus %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Instal %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, fuzzy msgid "%li days %li hours %li minutes" msgstr "Sekitar %li hari %li jam %li menit lagi" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, fuzzy msgid "%li hours %li minutes" msgstr "Sekitar %li jam %li menit lagi" @@ -679,7 +665,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -701,7 +686,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -778,6 +762,7 @@ msgid "_Keep" msgstr "_Simpan" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Ganti" @@ -814,7 +799,6 @@ msgstr "Tidak dapat mengunduh catatan luncuran" msgid "Please check your internet connection." msgstr "Silakan periksa koneksi internet anda." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Tidak dapat menjalankan alat upgrade" @@ -887,12 +871,12 @@ msgstr "" "dengan server. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Mengunduh berkas %li dari %li dengan %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Mengunduh berkas %li dari %li dengan %s/s" @@ -917,18 +901,15 @@ msgstr "" "Gagal mengunduh senarai dari perubahan. Silakan periksa koneksi Internet " "anda." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Pemutakhiran lewat Internet" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -944,7 +925,6 @@ msgstr "Ubuntu 6.06 LTS Backports" msgid "Distribution updates" msgstr "_Lanjutkan Upgrade" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -969,7 +949,6 @@ msgstr "" msgid "_Check All" msgstr "_Periksa" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -995,16 +974,15 @@ msgid "Checking for updates" msgstr "_Instal Update" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Versi baru: %s (Ukuran: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Versi %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1021,15 +999,14 @@ msgid "" "information on upgrading." msgstr "" "Anda tidak akan mendapatkan perbaikan keamanan atau pemutakhiran penting " -"lebih lanjut. Upgrade ke versi berikut dari Ubuntu Linux. Lihat http://www." -"ubuntu.com untuk informasi lebih lanjut." +"lebih lanjut. Upgrade ke versi berikut dari Ubuntu Linux. Lihat " +"http://www.ubuntu.com untuk informasi lebih lanjut." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Luncuran distribusi baru '%s' telah tersedia" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Indeks perangkat lunak telah rusak" @@ -1044,23 +1021,19 @@ msgstr "" "Silakan gunakan manajer paket \"Synaptic\" atau jalankan \"sudo apt-get " "install -f\" dalam terminal untuk memperbaiki persoalan ini." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1172,10 +1145,15 @@ msgstr "_Instal Update" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "U_pgrade" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Perubahan" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1335,8 +1313,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Masukkan baris lengkap APT dari kanal yang ingin anda tambah \n" +"Masukkan baris lengkap APT dari kanal yang ingin anda tambah " +"\n" "\n" "Baris APT menyertakan tipe, lokasi dan komponen dari kanal, sebagai contoh " "\"deb http://ftp.debian.org sarge main\"." @@ -1429,253 +1407,210 @@ msgstr "Ukuran jendela" msgid "Configure the sources for installable software and updates" msgstr "Mengatur kanal perangkat lunak dan pemutakhiran lewat internet" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Dikelola oleh komunitas (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Tidak-bebas (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS Updates" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Dikelola oleh komunitas (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Dikelola oleh komunitas (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Dikelola oleh komunitas (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Tidak-bebas (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Tidak-bebas (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 6.06 LTS Updates" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 6.06 LTS Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Resmi disokong" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 6.06 LTS Updates" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 6.06 LTS Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Dikelola oleh komunitas (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Tidak-bebas (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Beberapa perangkat lunak tidak lagi resmi disokong" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Hak cipta terlarang" -#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 6.06 LTS Updates" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 6.06 LTS Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Security Updates" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" "Perangkat Lunak yang sesuai dengan DFSG tapi tergantung pada Perangkat Lunak " "Tidak-Bebas" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Kecepatan mengunduh berkas %li dari %li tidak diketahui" @@ -1699,8 +1634,7 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Mengupgrade ke Ubuntu 6.06 LTS" +#~ "Mengupgrade ke Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1730,17 +1664,18 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Beberapa pemutakhiran butuh penghapusan perangkat lunak yang ada. Gunakan " #~ "fungsi \"Mark All Upgrades\" dari paket manajer paket \"Synaptic\" atau " -#~ "jalankan \"sudo apt-get dist-upgrade\"\" dalam terminal untuk " -#~ "memutakhirkan sistem anda." +#~ "jalankan \"sudo apt-get dist-upgrade\"\" dalam terminal untuk memutakhirkan " +#~ "sistem anda." #~ msgid "The following updates will be skipped:" #~ msgstr "Pemutakhiran berikut akan dilewati:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Sekitar %li detik lagi" @@ -1805,4 +1740,4 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ msgstr "_Custom" #~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 6.06 LTS" +#~ msgstr "Ubuntu 6.06 LTS" \ No newline at end of file diff --git a/po/it.po b/po/it.po index fa0b41c3..6ec5d7ba 100644 --- a/po/it.po +++ b/po/it.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-06 12:46+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" @@ -56,7 +56,6 @@ msgstr "Dopo un mese" msgid "After %s days" msgstr "Dopo %s giorni" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "%s aggiornamenti" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Server principale" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -126,7 +123,8 @@ msgid "Error removing the key" msgstr "Errore nel rimuovere la chiave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "La chiave selezionata non può essere rimossa. Notificare questo evento come " "bug." @@ -160,8 +158,8 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Il sistema contiene pacchetti danneggiati che non possono essere aggiustati " -"con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-get" -"\" per risolvere il problema." +"con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-" +"get\" per risolvere il problema." #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -171,7 +169,6 @@ msgstr "Impossibile aggiornare i meta-pacchetti richiesti" msgid "A essential package would have to be removed" msgstr "Un pacchetto essenziale dovrebbe essere rimosso" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossibile calcolare l'aggiornamento" @@ -189,7 +186,6 @@ msgstr "" "Notificare questo evento come bug riguardo il pacchetto «update-manager» e " "includere nella notifica i file della cartella «/var/log/dist-upgrade»." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Errore nell'autenticare alcuni pacchetti" @@ -217,7 +213,6 @@ msgstr "" "Non è stato possibile installare un pacchetto richiesto. Notificare questo " "evento come bug. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossibile indovinare il meta-pacchetto" @@ -299,7 +294,6 @@ msgstr "" "tutte le voci «%s» verranno aggiornate a «%s»\n" "Scegliendo «No» l'aggiornamento verrà annullato." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generare le sorgenti predefinite?" @@ -340,9 +334,9 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"Sono state disabilitate alcune voci di terze parti nel proprio file «sources." -"list». È possibile abilitarle di nuovo dopo l'aggiornamento con lo strumento " -"«software-properties» o con synaptic." +"Sono state disabilitate alcune voci di terze parti nel proprio file " +"«sources.list». È possibile abilitarle di nuovo dopo l'aggiornamento con lo " +"strumento «software-properties» o con synaptic." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -371,7 +365,6 @@ msgstr "" "il cestino e rimuovere i pacchetti temporanei di precedenti installazione " "usando \"sudo apt-get clean\"." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Iniziare l'aggiornamento?" @@ -392,8 +385,8 @@ msgstr "" "uno stato inutilizzabile. È stato eseguito un ripristino (dpkg --configure -" "a).\n" "\n" -"Riportare questo bug per il pacchetto 'update-manager' includendo i file in /" -"var/log/dist-upgrade/ nel rapporto." +"Riportare questo bug per il pacchetto 'update-manager' includendo i file in " +"/var/log/dist-upgrade/ nel rapporto." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -450,7 +443,6 @@ msgstr "" "Si sono verificati alcuni problemi durante la pulizia. Leggere il messaggio " "seguente per maggiori informazioni. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Ripristino dello stato originale del sistema" @@ -461,7 +453,6 @@ msgid "Fetching backport of '%s'" msgstr "Recupero del backport di «%s»" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -478,12 +469,12 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "La preparazione del sistema per l'aggiornamento è fallito. Notificare questo " -"evento come bug per il pacchetto «update-manager» includendo i file in «/var/" -"log/dist-upgrade/» nel rapporto." +"evento come bug per il pacchetto «update-manager» includendo i file in " +"«/var/log/dist-upgrade/» nel rapporto." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" -msgstr "Aggiornamento delle informazione sui repository" +msgstr "Aggiornamento delle informazioni sui repository" #: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" @@ -501,7 +492,7 @@ msgstr "" "Dopo l'aggiornamento delle informazioni di pacchetto non è più possibile " "trovare il pacchetto essenziale «%s».\n" "Ciò indica un errore grave, segnalare questo evento come un bug per il " -"pacchetto 'update-manager' includendo i file in /var/log/dist-upgrade/ nel " +"pacchetto «update-manager» includendo i file in «/var/log/dist-upgrade/» nel " "rapporto." #: ../DistUpgrade/DistUpgradeControler.py:733 @@ -520,7 +511,6 @@ msgstr "Ricerca di software obsoleto" msgid "System upgrade is complete." msgstr "L'aggiornamento del sistema è stato completato." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -536,7 +526,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Recupero del file %li di %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Circa %s minuti rimanenti" @@ -548,7 +538,6 @@ msgstr "Recupero del file %li di %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Applicazione dei cambiamenti" @@ -563,12 +552,11 @@ msgid "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"L'aggiornamento si interromperà ora. Segnalare questo bug per il pacchetto " -"'update-manager' e di includere i file in /var/log/dist-upgrade/ nella " -"segnalazione." +"L'aggiornamento si interromperà ora. Segnalare questo evento come bug per il " +"pacchetto «update-manager» e di includere i file in «/var/log/dist-upgrade/» " +"nella segnalazione." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -577,7 +565,7 @@ msgstr "" "Sostituire il file di configurazione personalizzato\n" "«%s»?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." @@ -585,51 +573,50 @@ msgstr "" "Se si decide di sostituire il file di configurazione con una versione più " "recente, tutte le modifiche apportate andranno perse." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" -msgstr "Il comando \"diff\" non è stato trovato" +msgstr "Il comando «diff» non è stato trovato" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Si è verificato un errore fatale" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Segnalare questo evento come un bug e includere nella notifica i file /var/" -"log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log. L'aggiornamento " -"viene interrotto.\n" -"Il file sources.list originale è stato salvato in /etc/apt/sources.list." -"distUpgrade." +"Segnalare questo evento come un bug e includere nella notifica i file " +"/var/log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log. " +"L'aggiornamento viene interrotto.\n" +"Il file sources.list originale è stato salvato in " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pacchetto sta per essere rimosso." msgstr[1] "%d pacchetti stanno per essere rimossi." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nuovo pacchetto sta per essere installato." msgstr[1] "%d nuovi pacchetti stanno per essere installati." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pacchetto sta per essere aggiornato." msgstr[1] "%d pacchetti stanno per essere aggiornati." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -640,7 +627,7 @@ msgstr "" "\n" "È necessario scaricare un totale di %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -648,19 +635,18 @@ msgstr "" "Il recupero e l'installazione degli aggiornamenti può richiedere diverse ore " "e non può essere annullato in un momento successivo." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Per prevenire la perdita di dati, chiudere tutte le applicazioni e i " "documenti aperti." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Il sistema è aggiornato" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -668,17 +654,17 @@ msgstr "" "Non ci sono aggiornamenti disponibili per questo sistema. L'aggiornamento " "sarà annullato." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Rimuovere %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Installare %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Aggiornare %s" @@ -704,7 +690,6 @@ msgid "%li seconds" msgstr "%li secondi" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -726,7 +711,6 @@ msgstr "L'aggiornamento è finito ed è richiesto un riavvio. Riavviare ora?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -746,7 +730,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Riavviare il sistema per completare l'aggiornamento" +msgstr "" +"Riavviare il sistema per completare l'aggiornamento" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -801,6 +786,7 @@ msgid "_Keep" msgstr "_Mantieni" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Sostituisci" @@ -836,7 +822,6 @@ msgstr "Impossibile scaricare le note di rilascio" msgid "Please check your internet connection." msgstr "Controllare la propria connessione a internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossibile eseguire lo strumento di aggiornamento" @@ -942,17 +927,14 @@ msgstr "" "Fallito lo scaricamento dell'elenco dei cambiamenti. \n" "Verificare la connessione a Internet." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Aggiornamenti di sicurezza importanti" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Aggiornamenti raccomandati" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Aggiornamenti proposti" @@ -965,7 +947,6 @@ msgstr "Backport" msgid "Distribution updates" msgstr "Aggiornamenti della distribuzione" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Altri aggiornamenti" @@ -980,16 +961,13 @@ msgid "Downloading list of changes..." msgstr "Scaricamento dell'elenco dei cambiamenti..." #: ../UpdateManager/UpdateManager.py:566 -#, fuzzy msgid "_Uncheck All" -msgstr "_Decontrassegnare tutti" +msgstr "_Seleziona tutti" #: ../UpdateManager/UpdateManager.py:572 -#, fuzzy msgid "_Check All" -msgstr "_Contrassengare tutti" +msgstr "_Deseleziona tutti" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1024,7 +1002,6 @@ msgstr "Dalla versione %(old_version)s alla %(new_version)s" msgid "Version %s" msgstr "Versione %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1049,7 +1026,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "È disponibile il nuovo rilascio «%s» della distribuzione" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "L'indice del software è danneggiato" @@ -1064,23 +1040,19 @@ msgstr "" "dei pacchetti \"Synaptic\" o eseguire in un terminale \"sudo apt-get install " "-f\" per risolvere il problema." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Niente" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 kB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f kB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1163,7 +1135,7 @@ msgid "" "provide new features." msgstr "" "Gli aggiornamenti software correggono errori, eliminano vulnerabilità di " -"sicurezza ed aggiungono nuove funzionalità." +"sicurezza e aggiungono nuove funzionalità." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1190,10 +1162,14 @@ msgid "_Install Updates" msgstr "I_nstalla aggiornamenti" #: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "A_ggiorna" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "cambiamenti" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "aggiornamenti" @@ -1447,246 +1423,203 @@ msgid "Configure the sources for installable software and updates" msgstr "" "Configura le sorgenti per gli aggiornamenti e per il software installabile" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 «Edgy Eft»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantenuto dalla comunità" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Driver proprietari per i dispositivi" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software con restrizioni" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM con Ubuntu 6.10 «Edgy Eft»" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS «Dapper Drake»" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Software open source supportato da Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantenuto dalla comunità (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software open source mantenuto dalla comunità" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Driver non liberi" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Driver proprietari per dispositivi " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software con restrizioni (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software con restrizioni per copyright o motivi legali" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM con Ubuntu 6.06 LTS «Drapper Drake»" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Aggiornamenti di backport" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 «Breezy Badger»" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Aggiornamenti per Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Backport per Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 «Hoary Hedgehog»" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM con Ubuntu 5.04 «Hoary Hedgehog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Supportati ufficialmente" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Aggiornamenti per Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backport per Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 «Warty Warthog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantenuti dalla comunità (universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non libero (multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM con Ubuntu 4.10 «Warty Warthog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Software non più supportato ufficialmente" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright con restrizioni" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Aggiornamenti per Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backport per Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 «Sarge»" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Aggiornamenti di sicurezza per Debian 3.1 «Sarge»" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian «Etch» (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian «Sid» (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatibile con le DFSG con dipendenze non libere" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software non compatibile con le DFSG" #~ msgid "" -#~ "You will loose all customizations, that have been made by yourself or by " -#~ "a script, if you replace the file by its latest version." +#~ "You will loose all customizations, that have been made by yourself or by a " +#~ "script, if you replace the file by its latest version." #~ msgstr "" -#~ "Sostituendo il file con la sua versione più recente, andranno perse tutte " -#~ "le personalizzazioni apportate dall'utente o da uno script." +#~ "Sostituendo il file con la sua versione più recente, andranno perse tutte le " +#~ "personalizzazioni apportate dall'utente o da uno script." +#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a " -#~ "1Mbit DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " +#~ "DSL connection" #~ msgstr "" -#~ "Questo scaricamento richiederà circa %s con un modem 56k e circa %s con " -#~ "una connessione DSL da 1Mbit" +#~ "Questo scaricamento richiederà circa %s con un modem 56k e circa %s con una " +#~ "connessione DSL da 1Mbit" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" @@ -1705,6 +1638,7 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Software con restrizioni per copyright o questioni legali" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Scaricamento del file %li di %li a velocità sconosciuta" @@ -1753,17 +1687,18 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Alcuni aggiornamenti richiedono la rimozione di altri programmi. " -#~ "Utilizzare la funzione \"Marca tutti gli aggiornamenti\" del gestore di " -#~ "pacchetti \"Synaptic\" o inserire il comando \"sudo apt-get dist-upgrade" -#~ "\" in un terminale per aggiornare completamente il sistema." +#~ "Alcuni aggiornamenti richiedono la rimozione di altri programmi. Utilizzare " +#~ "la funzione \"Marca tutti gli aggiornamenti\" del gestore di pacchetti " +#~ "\"Synaptic\" o inserire il comando \"sudo apt-get dist-upgrade\" in un " +#~ "terminale per aggiornare completamente il sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "I seguenti aggiornamenti saranno tralasciati:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Circa %li secondi rimanenti" @@ -1772,8 +1707,7 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "Interruzione immediata dell'aggiornamento. Notificare questo evento come " -#~ "bug." +#~ "Interruzione immediata dell'aggiornamento. Notificare questo evento come bug." #~ msgid "Upgrading Ubuntu" #~ msgstr "Aggiornamento di Ubuntu" @@ -1792,8 +1726,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Chiudere tutte le altre applicazioni come \"aptitude\" o \"Synaptic\" " -#~ "prima di continuare." +#~ "Chiudere tutte le altre applicazioni come \"aptitude\" o \"Synaptic\" prima " +#~ "di continuare." #~ msgid "Channels" #~ msgstr "Canali" @@ -1846,27 +1780,27 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Nessuna voce valida trovata" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" -#~ "Durante la scansione delle informazioni sui repository, non è stata " -#~ "trovata alcuna voce valida per l'aggiornamento.\n" +#~ "Durante la scansione delle informazioni sui repository, non è stata trovata " +#~ "alcuna voce valida per l'aggiornamento.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "is now run (dpkg --configure -a)." #~ msgstr "" -#~ "Interruzione immediata dell'aggiornamento. Il sistema potrebbe essere in " -#~ "uno stato inutilizzabile. Verrà avviata una procedura di ripristino (dpkg " -#~ "--configure -a)." +#~ "Interruzione immediata dell'aggiornamento. Il sistema potrebbe essere in uno " +#~ "stato inutilizzabile. Verrà avviata una procedura di ripristino (dpkg --" +#~ "configure -a)." #~ msgid "" #~ "Please report this as a bug and include the files ~/dist-upgrade.log and " #~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " #~ msgstr "" -#~ "Notificare questo evento come bug e includere nella notifica i file \"~/" -#~ "dist-upgrade.log\" e \"~/dist-upgrade-apt.log\". L'aggiornamento viene " -#~ "interrotto ora. " +#~ "Notificare questo evento come bug e includere nella notifica i file \"~/dist-" +#~ "upgrade.log\" e \"~/dist-upgrade-apt.log\". L'aggiornamento viene interrotto " +#~ "ora. " #~ msgid "You can install one update" #~ msgid_plural "You can install %s updates" @@ -1886,8 +1820,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Analysing your system\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "Analisi del sistema in uso\n" #~ "\n" @@ -1895,8 +1829,8 @@ msgstr "Software non compatibile con le DFSG" #~ "vulnerabilità di sicurezza e fornire nuove funzionalità." #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "Gli aggiornamenti software possono correggere errori, eliminare " #~ "vulnerabilità di sicurezza e fornire nuove funzionalità." @@ -1907,18 +1841,18 @@ msgstr "Software non compatibile con le DFSG" #~ "installed therefor" #~ msgstr "" #~ "L'installazione automatica è limitata ai soli aggiornamenti di sicurezza " -#~ "provenienti dai server Ubuntu ufficiali. Il pacchetto software " -#~ "\"unattended-upgrades\" deve perciò essere installato" +#~ "provenienti dai server Ubuntu ufficiali. Il pacchetto software \"unattended-" +#~ "upgrades\" deve perciò essere installato" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line contains the type, location and sections of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Inserire la riga APT completa del canale che si vuole aggiungere\n" +#~ "Inserire la riga APT completa del canale che si vuole " +#~ "aggiungere\n" #~ "\n" #~ "La riga APT contiene il tipo, la posizione e le sezioni di un canale, ad " #~ "esempio \"deb http://ftp.debian.org sarge main\"" @@ -1937,8 +1871,8 @@ msgstr "Software non compatibile con le DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Download delle modifiche in corso\n" +#~ "Download delle modifiche in " +#~ "corso\n" #~ "\n" #~ "Devo scaricare le modifiche dal server centrale" @@ -1980,11 +1914,11 @@ msgstr "Software non compatibile con le DFSG" #~ "permette di verificare l'integrità del software che scarichi." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Aggiungi un nuovo file per una chiave nel portachiavi fidato. Assicurati " -#~ "di aver ricevuto la chiave attraverso un canale sicuro e di fidarti del " +#~ "Aggiungi un nuovo file per una chiave nel portachiavi fidato. Assicurati di " +#~ "aver ricevuto la chiave attraverso un canale sicuro e di fidarti del " #~ "proprietario. " #~ msgid "Add repository..." @@ -2012,8 +1946,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Dimensione massima in MB:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Ripristina le chiavi di default della distribuzione.\n" #~ "Questo non modificherà le chiavi installate dal'utente." @@ -2045,13 +1979,13 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Aggiornamenti Disponibili\n" #~ "\n" -#~ "I seguenti pacchetti possono essere aggiornati. Puoi aggiornarli usando " -#~ "il pulsante Installa." +#~ "I seguenti pacchetti possono essere aggiornati. Puoi aggiornarli usando il " +#~ "pulsante Installa." #~ msgid "Cancel downloading the changelog" #~ msgstr "Cancella il download delle modifiche" @@ -2086,8 +2020,7 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "Ubuntu CD Image Automatic Signing Key " #~ msgstr "" -#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu " +#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu " #~ msgid "Choose a key-file" #~ msgstr "Scegli un file di chiave" @@ -2112,8 +2045,7 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr[1] "" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Hai selezionato %s pacchetti su %s, dimensione %s" #~ msgstr[1] "" @@ -2121,8 +2053,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Gli aggiornamenti sono in fase di applicazione." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Puoi eseguire una sola applicazione di gestione dei pacchetti " #~ "contemporaneamente. Per favore prima chiudi quest'altra applicazione." @@ -2138,28 +2070,27 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Per favore aggiornati ad una nuova versione di Ubuntu Linux. La versione " -#~ "che stai usando non riceverà più aggiornamenti di sicurezza o altri " -#~ "aggiornamenti critici. Per favore guarda su http://www.ubuntulinux.org " -#~ "per informazioni riguardo all'aggiornamento." +#~ "Per favore aggiornati ad una nuova versione di Ubuntu Linux. La versione che " +#~ "stai usando non riceverà più aggiornamenti di sicurezza o altri " +#~ "aggiornamenti critici. Per favore guarda su http://www.ubuntulinux.org per " +#~ "informazioni riguardo all'aggiornamento." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "È disponibile una nuova release di Ubuntu!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Una nuova release con nome '%s' è disponbile. Per favore guarda su http://" -#~ "www.ubuntulinux.org/ per informazioni sull'aggiornamento" +#~ "Una nuova release con nome '%s' è disponbile. Per favore guarda su " +#~ "http://www.ubuntulinux.org/ per informazioni sull'aggiornamento" #~ msgid "Never show this message again" #~ msgstr "Non mostrare più questo messaggio" #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" -#~ "Modifiche non trovate, il server potrebbe non essere stato ancora " -#~ "aggiornato." +#~ "Modifiche non trovate, il server potrebbe non essere stato ancora aggiornato." \ No newline at end of file diff --git a/po/ja.po b/po/ja.po index bf52e0d3..58fca3a6 100644 --- a/po/ja.po +++ b/po/ja.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.42.4\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:39+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: Ubuntu Japanese Team \n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" -msgstr "X 日ごとに" +msgstr "毎日" #: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" @@ -28,7 +28,7 @@ msgstr "2日ごと" #: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" -msgstr "X 週ごとに" +msgstr "毎週" #: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" @@ -56,15 +56,13 @@ msgstr "1ヶ月後" msgid "After %s days" msgstr "%s 日後" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "アップデートをインストール中" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "メインサーバ" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -91,9 +88,8 @@ msgstr "カスタムサーバ" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "ソフトウェアのアップデート" +msgstr "ソフトウェアチャンネル" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 @@ -101,14 +97,12 @@ msgid "Active" msgstr "有効" #: ../SoftwareProperties/SoftwareProperties.py:714 -#, fuzzy msgid "(Source Code)" -msgstr "ソース" +msgstr "(ソースコード)" #: ../SoftwareProperties/SoftwareProperties.py:720 -#, fuzzy msgid "Source Code" -msgstr "ソース" +msgstr "ソースコード" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -120,19 +114,19 @@ msgstr "選択したファイルのインポートエラー" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "" -"選択したファイルはGPG鍵ファイルではないか、壊れている可能性があります。" +msgstr "選択したファイルはGPG鍵ファイルではないか、壊れている可能性があります。" #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "鍵削除のエラー" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "選択した鍵を削除できませんでした。バグとして報告してください。" #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -159,8 +153,7 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれていま" -"す。 Synaptic や apt-get を使って最初に修正してください。" +"システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれています。 Synaptic や apt-get を使って最初に修正してください。" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -170,7 +163,6 @@ msgstr "要求されたメタパッケージがアップグレードできませ msgid "A essential package would have to be removed" msgstr "必須パッケージが削除されます" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "アップグレードが算定できません" @@ -184,7 +176,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "算定中に解決できない問題がおきました。バグとして報告してください。" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "いくつかのパッケージが認証されませんでした" @@ -195,9 +186,9 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"いくつかのパッケージが認証できませんでした。これはおそらく一時的なネットワー" -"クの問題でしょう。あとで再び試してみてください。下に認証できなかったパッケー" -"ジが表示されます。" +"" +"いくつかのパッケージが認証できませんでした。これはおそらく一時的なネットワークの問題でしょう。あとで再び試してみてください。下に認証できなかったパッケージが" +"表示されます。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -208,16 +199,13 @@ msgstr "'%s' がインストールできません" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "" -"要求されたパッケージのインストールができません。バグとして報告してください。 " +msgstr "要求されたパッケージのインストールができません。バグとして報告してください。 " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "メタパッケージを推測できません" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -225,16 +213,13 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"システムに ubuntu-desktop, kubuntu-desktop ないし edubuntu-desktop パッケー" -"ジ が含まれていません。そして実行している ubuntu のバージョンが検出できませ" -"ん。 \n" -"開始前に Synaptic や apt-get を使用して上記のパッケージのうちのひとつをインス" -"トールしてください。" +"システムに ubuntu-desktop, kubuntu-desktop ないし edubuntu-desktop パッケージ " +"が含まれていません。また、実行している ubuntu のバージョンが検出できません。 \n" +" 開始前に Synaptic や apt-get を使用して上記のパッケージのうちのひとつをインストールしてください。" #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "取得に失敗しました" +msgstr "CDの追加に失敗しました" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -245,6 +230,10 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"CD の追加に失敗したため、アップグレードは終了されます。この CD が正規の Ubuntu CD の場合は、このことをバグとして報告してください。\n" +"\n" +"エラーメッセージ:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" @@ -261,6 +250,8 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"アップグレードは、ネットワークを利用して最新のアップデートを確認し、現在の CD に無いパッケージを取得することができます。\n" +"高速、または安価なネットワークアクセスがある場合は、ここで 'はい' を選んでください。そのようなネットワークが無い場合は 'いいえ' を選んでください。" #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -277,14 +268,11 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"リポジトリ情報をスキャン中、アップグレードのためのミラーエントリが見つかりま" -"せんでした。内部ミラーないしミラー情報が古いと思われます。\n" +"リポジトリ情報をスキャン中、アップグレードのためのミラーエントリが見つかりませんでした。内部ミラーないしミラー情報が古いと思われます。\n" "\n" -"'sources.list' ファイルを書き換えますか? 'はい' を選択すると '%s' エントリ" -"を '%s' エントリにアップデートします。 'いいえ' を選択するとアップデートを" -"キャンセルします。" +"'sources.list' ファイルを書き換えますか? 'はい' を選択すると '%s' エントリを '%s' エントリにアップデートします。 " +"'いいえ' を選択するとアップデートをキャンセルします。" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "標準のソースを生成しますか?" @@ -299,8 +287,7 @@ msgid "" msgstr "" "'sources.list' をスキャン中、 '%s' の正しいエントリが見つかりませんでした。\n" "\n" -"'%s' のデフォルトエントリを追加しますか? 'いいえ' を選択するとアップデートを" -"キャンセルします。" +"'%s' のデフォルトエントリを追加しますか? 'いいえ' を選択するとアップデートをキャンセルします。" #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" @@ -310,24 +297,20 @@ msgstr "リポジトリ情報が無効です" msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "" -"リポジトリ情報をアップグレード中に無効なファイルを生成しました。バグとして報" -"告してください。" +msgstr "リポジトリ情報をアップグレード中に無効なファイルを生成しました。バグとして報告してください。" #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "公式ではないソースが無効になりました" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"sources.list にある公式ではないエントリを無効にしました。再び有効にするには、" -"アップグレード後に 'ソフトウェアのプロパティ' ツールか Synaptic を使用してく" -"ださい。" +"sources.list にある公式ではないエントリを無効にしました。再び有効にするには、アップグレード後に 'ソフトウェアの配布元' ツールか " +"Synaptic を使用してください。" #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -337,9 +320,7 @@ msgstr "アップデート中にエラー発生" msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." -msgstr "" -"アップデート中に問題が発生しました。おそらくある種のネットワークの問題です。" -"ネットワーク接続をチェックし、再びアップデートしてください。" +msgstr "アップデート中に問題が発生しました。おそらくある種のネットワークの問題です。ネットワーク接続をチェックし、再びアップデートしてください。" #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" @@ -352,11 +333,9 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"アップグレードを中断しました。少なくとも %s の空き容量を %s に用意してくださ" -"い。ごみ箱を空にし、'sudo apt-get clean' コマンドを実行して以前インストールし" -"た一時パッケージを削除してください。" +"アップグレードを中断しました。少なくとも %s の空き容量を %s に用意してください。ごみ箱を空にし、'sudo apt-get clean' " +"コマンドを実行して以前インストールした一時パッケージを削除してください。" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "アップグレードを開始しますか?" @@ -366,7 +345,6 @@ msgid "Could not install the upgrades" msgstr "アップグレードをインストールできません" #: ../DistUpgrade/DistUpgradeControler.py:461 -#, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -374,8 +352,11 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"アップグレードを中断しました。システムが使用できない状態になっている可能性が" -"あります。ただいま修正を実行中です (dpkg --configure -a)。" +"アップグレードを中断しました。システムが使用できない状態になっている可能性があります。ただいま修正を実行中です (dpkg --configure -" +"a)。\n" +"\n" +"このバグを 'update-manager' パッケージのバグとして報告して下さい。その際、バグ報告に /var/log/dist-upgrade/ " +"中のファイルを含めて下さい。" #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -385,9 +366,7 @@ msgstr "アップグレードをダウンロードできません" msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -msgstr "" -"アップグレードを中断しました。インターネット接続またはインストールメディア" -"(CD-ROMなど)をチェックし。再試行してください。 " +msgstr "アップグレードを中断しました。インターネット接続またはインストールメディア(CD-ROMなど)をチェックし。再試行してください。 " #: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" @@ -402,11 +381,9 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"インストールされているこれらのパッケージは、もう公式にサポートされておらず、" -"コミュニティサポートになっています('universe')。\n" +"インストールされているこれらのパッケージは、もう公式にサポートされておらず、コミュニティサポートになっています('universe')。\n" "\n" -"'universe' を有効にしないと、これらのパッケージは次のステップで削除することを" -"提案します。" +"'universe' を有効にしないと、これらのパッケージは次のステップで削除することを提案します。" #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -428,11 +405,8 @@ msgstr "コミット中にエラー" msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "" -"クリーンアップ中になんらかの問題が発生しました。下記の詳しいメッセージをご覧" -"ください。 " +msgstr "クリーンアップ中になんらかの問題が発生しました。下記の詳しいメッセージをご覧ください。 " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "システムを元に戻し中" @@ -443,7 +417,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -471,7 +444,7 @@ msgid "Invalid package information" msgstr "無効なパッケージ情報" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy, python-format +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -498,7 +471,6 @@ msgstr "古いソフトウェアを検索する" msgid "System upgrade is complete." msgstr "システムのアップグレードが完了しました。" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -510,24 +482,23 @@ msgid "Fetching is complete" msgstr "アップデートが完了しました" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, fuzzy msgid "About %s remaining" msgstr "およそ残り %li 分" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "%i のうち %i をダウンロード中" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "変更を適用中" @@ -543,65 +514,62 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"設定ファイル %s\n" -"を置き換えますか?" +"カスタマイズ済みの設定ファイル %s を\n" +"置き換えますか?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "'diff' コマンドが見つかりません" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "重大なエラーが発生しました" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"~/dist-upgrade.log と ~/dist-upgrade-apt.log を含めて不具合として報告してくだ" -"さい。アップグレードは中断しました。\n" -"元の sources.list は /etc/apt/sources.list.distUpgrade として保存されていま" -"す。" +"~/dist-upgrade.log と ~/dist-upgrade-apt.log " +"を含めて不具合として報告してください。アップグレードは中断しました。\n" +"元の sources.list は /etc/apt/sources.list.distUpgrade として保存されています。" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s つのパッケージが削除されます。" +msgstr[0] "%d 個のパッケージが削除されます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s·つのパッケージがインストールされます。" +msgstr[0] "%d 個のパッケージがインストールされます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s·つのパッケージがアップグレードされます。" +msgstr[0] "%d 個のパッケージがアップグレードされます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -611,55 +579,51 @@ msgstr "" "\n" "全部で %s つのパッケージをダウンロードする必要があります。 " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "アップグレードには数時間かかり、今後一切キャンセルはできません。" +msgstr "アップグレードの取得とインストールには数時間かかり、今後一切キャンセルはできません。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." -msgstr "" -"データの損失を避けるため、すべてのアプリケーションとドキュメントを閉じてくだ" -"さい。" +msgstr "データの損失を避けるため、すべてのアプリケーションとドキュメントを閉じてください。" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "システムは最新の状態です!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "削除されるパッケージ: %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "インストール %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "アップグレード %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "およそ残り %li 日 %li 時間 %li 分" +msgstr "%li 日 %li 時間 %li 分" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "およそ残り %li 時間 %li 分" +msgstr "%li 時間 %li 分" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format @@ -672,7 +636,6 @@ msgid "%li seconds" msgstr "%li 秒" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -692,7 +655,6 @@ msgstr "アップグレードが終了しました。再起動が必要ですが #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -707,13 +669,11 @@ msgid "" msgstr "" "アップグレードをキャンセルしますか?\n" "\n" -"アップグレードをキャンセルすると、おそらくシステムは不安定な状態になります。" -"アップグレードを再開することを強くおすすめします。" +"アップグレードをキャンセルすると、おそらくシステムは不安定な状態になります。アップグレードを再開することを強くおすすめします。" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" -"アップグレードを完了するためにシステムの再起動が必要です" +msgstr "アップグレードを完了するためにシステムの再起動が必要です" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -736,9 +696,8 @@ msgid "Difference between the files" msgstr "ファイル間の違いを表示" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "アップグレードをダウンロードし、インストール" +msgstr "アップグレードをダウンロードしてインストール" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" @@ -757,19 +716,19 @@ msgid "Terminal" msgstr "端末" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "アップグレードを再開する(_R)" +msgstr "アップグレードを中断(_C)" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "続行する(_C)" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "そのまま(_K)" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "置き換える(_R)" @@ -786,9 +745,8 @@ msgid "_Resume Upgrade" msgstr "アップグレードを再開する(_R)" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "アップグレードを再開する(_R)" +msgstr "アップグレードを開始(_S)" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -806,7 +764,6 @@ msgstr "リリースノートををダウンロードできません" msgid "Please check your internet connection." msgstr "インターネット接続を確認してください。" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "アップグレードツールを実行できません" @@ -848,22 +805,17 @@ msgstr "抽出に失敗しました" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"アップグレードの抽出に失敗しました。おそらくネットワークまたはサーバの問題で" -"す。 " +msgstr "アップグレードの抽出に失敗しました。おそらくネットワークまたはサーバの問題です。 " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" msgstr "検証に失敗しました" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"アップグレードの検証に失敗しました。おそらくネットワークまたはサーバの問題で" -"す。 " +msgstr "アップグレードの検証に失敗しました。ネットワーク接続もしくはサーバに問題があるかもしれません。 " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -873,53 +825,46 @@ msgstr "認証に失敗しました" msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "" -"アップグレードの認証に失敗しました。おそらくネットワークまたはサーバの問題で" -"す。 " +msgstr "アップグレードの認証に失敗しました。おそらくネットワークまたはサーバの問題です。 " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" +msgstr "%(total)li のうち %(current)li 番目のファイルをダウンロード中 (%(speed)s/秒)" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" +msgstr "%(total)li のうち %(current)li 番目のファイルをダウンロード中" #: ../UpdateManager/UpdateManager.py:206 -#, fuzzy msgid "The list of changes is not available" -msgstr "変更点がまだ取得できません。あとで試してください。" +msgstr "変更点のリストが利用できません。" #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "変更点がまだ取得できません。あとで試してください。" +msgstr "" +"変更点のリストはまだ取得できません。\n" +"あとで試してください。" #: ../UpdateManager/UpdateManager.py:217 #, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "" -"変更点の取得に失敗しました。インターネットに接続されているか確認してくださ" -"い。" +msgstr "変更点の取得に失敗しました。インターネットに接続されているか確認してください。" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 セキュリティアップデート" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -935,7 +880,6 @@ msgstr "Ubuntu 6.04 バックポート" msgid "Distribution updates" msgstr "アップグレードを再開する(_R)" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -960,7 +904,6 @@ msgstr "すべてのチェックをはずす(_U)" msgid "_Check All" msgstr "チェック(_C)" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -986,16 +929,15 @@ msgid "Checking for updates" msgstr "インストールできるアップデートをチェック" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "新しいバージョン: %s (サイズ: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, python-format msgid "Version %s" -msgstr "バージョン %s:" +msgstr "バージョン %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1011,8 +953,7 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"セキュリティフィックスやアップデートはもう提供されません。最新バージョンの " -"Ubuntu Linux にアップグレードしてください。\r\n" +"セキュリティフィックスやアップデートはもう提供されません。最新バージョンの Ubuntu Linux にアップグレードしてください。 \n" "アップグレードに関する詳細な情報は http://www.ubuntu.com をご覧ください。" #: ../UpdateManager/UpdateManager.py:863 @@ -1020,7 +961,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "新しいディストリビューション '%s' にアップグレードできます" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "ソフトウェアのインデックスが壊れています" @@ -1031,34 +971,28 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"何らかのソフトウェアがインストールないし削除できません。 \"Synaptic\" パッ" -"ケージマネージャを使用するか、 まずこの問題を解決するために \"sudo apt-get " -"install -f\" コマンドをターミナルで実行してください。" +"何らかのソフトウェアがインストールないし削除できません。 \"Synaptic\" パッケージマネージャを使用するか、 まずこの問題を解決するために " +"\"sudo apt-get install -f\" コマンドをターミナルで実行してください。" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "なし" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" @@ -1067,26 +1001,24 @@ msgid "" msgstr "" "アップデートの情報を手動でチェックしてください\n" "\n" -"システムはアップデートを自動的にチェックしません。この設定の変更は·\"システム" -"(System)\"·->·\"システム管理\"·->·\"ソフトウェアのプロパティ (Software " -"Properties)\" で行います。" +"" +"システムはアップデートを自動的にチェックしません。この動作の変更は、ソフトウェアの配布元インターネットアップデートタブで行いま" +"す。" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "システムを最新の状態にする" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" msgstr "" -"CDスキャン中のエラー\n" -"\n" +"一部のアップデートだけがインストールされました \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "アップグレードを開始しますか?" +msgstr "アップデートマネージャを開始しています" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1132,9 +1064,7 @@ msgstr "ソフトウェアのアップデート" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "" -"ソフトウェアアップデートはエラーを訂正し、セキュリティホールを修正し、新機能" -"を提供します。" +msgstr "ソフトウェアアップデートはエラーを訂正し、セキュリティホールを修正し、新機能を提供します。" #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1149,9 +1079,8 @@ msgid "_Check" msgstr "チェック(_C)" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "アップグレードを再開する(_R)" +msgstr "ディストリビューションのアップグレード(_D)" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1163,17 +1092,21 @@ msgstr "アップデートをインストール(_I)" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "アップグレード(_P)" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "変更点" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "アップデート" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "インターネットアップデート" +msgstr "自動アップデート" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" @@ -1184,9 +1117,8 @@ msgid "Internet updates" msgstr "インターネットアップデート" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "インターネットアップデート" +msgstr "インターネット" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1200,9 +1132,8 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "CD-ROM の追加(_C)" +msgstr "CD-ROM の追加" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1213,9 +1144,8 @@ msgid "D_elete downloaded software files:" msgstr "ダウンロードしたファイルを削除(_E):" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "ダウンロードが完了しました" +msgstr "ダウンロード元:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1229,9 +1159,7 @@ msgstr "インターネットアップデート" msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" -msgstr "" -"公式な Ubuntu サーバからのセキュリティアップデートだけ自動的にインストールさ" -"れます。" +msgstr "公式な Ubuntu サーバからのセキュリティアップデートだけ自動的にインストールされます。" #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" @@ -1293,8 +1221,7 @@ msgid "" msgstr "" "チャンネルの情報が古いです\n" "\n" -"新規追加ないし変更したチャンネルからインストールまたはアップデートを行うた" -"め、チャンネルを再読み込みしてください。\n" +"新規追加ないし変更したチャンネルからインストールまたはアップデートを行うため、チャンネルを再読み込みしてください。\n" "\n" "続けるためには、インターネット接続が有効になっている必要があります。" @@ -1329,8 +1256,8 @@ msgid "" msgstr "" "追加したい完全な APT line を入力してください。\n" "\n" -"APT lineにはタイプ、場所、チャンネルのセクションなどを含めることができます。" -"例:\"deb http://ftp.debian.org sarge main\"" +"APT lineにはタイプ、場所、チャンネルのセクションなどを含めることができます。例:\"deb http://ftp.debian.org " +"sarge main\"" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1374,9 +1301,7 @@ msgstr "アップデートマネージャー" msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." -msgstr "" -"現在使用中のディストリビューションの最新バージョンが存在する場合自動的に" -"チェックし、可能ならアップグレードを提案する" +msgstr "現在使用中のディストリビューションの最新バージョンが存在する場合自動的にチェックし、可能ならアップグレードを提案する" #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" @@ -1389,8 +1314,7 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"アップデートの自動チェックを無効にすると、チャンネルリストを手動で再読み込み" -"しなければなりません。このオプションはその場合の催促をしないようにします。" +"アップデートの自動チェックを無効にすると、チャンネルリストを手動で再読み込みしなければなりません。このオプションはその場合の催促をしないようにします。" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1420,249 +1344,196 @@ msgstr "ウィンドウのサイズ" msgid "Configure the sources for installable software and updates" msgstr "ソフトウェアチャンネルとインターネットアップデートを設定" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 アップデート" +msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "コミュニティによるメンテナンス (Universe)" +msgstr "コミュニティによるメンテナンス" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "デバイス用のプロプライエタリなドライバ" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "寄贈ソフトウェア" +msgstr "制限のあるソフトウェア" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft' のCD-ROM" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -#, fuzzy msgid "Canonical supported Open Source software" -msgstr "コミュニティによるメンテナンス (Universe)" +msgstr "Canonical によってサポートされるオープンソースソフトウェア" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "コミュニティによるメンテナンス (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "コミュニティによるメンテナンス (Universe)" +msgstr "コミュニティによるメンテナンスされるオープンソースソフトウェア" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "非フリー (Multiuniverse)" +msgstr "フリーではないドライバ" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "デバイス用のプロプライエタリなドライバ " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "非フリー (Multiuniverse)" +msgstr "制限されたソフトウェア (Multiuniverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake' の CD-ROM" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "バックポートされたアップデート" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu·5.10·'Breezy·Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu·5.10·'Breezy·Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 セキュリティアップデート" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 アップデート" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 バックポート" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 セキュリティアップデート" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 アップデート" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 バックポート" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu·5.10·'Breezy·Badger'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiuniverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog' のCD-ROM" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "いくつかのソフトウェアはもう公式にサポートされません" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 セキュリティアップデート" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 アップデート" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 バックポート" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian·3.1·\"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian·3.1·\"Sarge\"·セキュリティアップデート" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian·\"Etch\"·(testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian·\"Sid\"·(unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "非フリーな依存関係のあるDFSG適合ソフトウェア" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSGに適合しないソフトウェア" @@ -1671,6 +1542,7 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "アメリカ合衆国外への輸出が禁止されているソフトウェア" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "ダウンロード中: 速度不明で %li のうち %li" @@ -1694,8 +1566,7 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Ubuntu 6.06 LTS にアップデート中" +#~ "Ubuntu 6.06 LTS にアップデート中" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1716,25 +1587,23 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "" #~ "システムを解析中です\n" #~ "\n" -#~ "ソフトウェアアップデートはエラーを修正し、セキュリティホールを修正し、新機" -#~ "能を提供します。" +#~ "ソフトウェアアップデートはエラーを修正し、セキュリティホールを修正し、新機能を提供します。" #~ msgid "Oficially supported" #~ msgstr "公式サポート" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "ほかのソフトを削除しなければならないアップデートがあります。完全にアップグ" -#~ "レードするためにはパッケージマネージャ \"Synaptic\" の \"すべてのアップグ" -#~ "レードににマーク\"機能を使うか。端末から \"sudo apt-get dist-upgrade\" を" -#~ "実行してください。" +#~ "ほかのソフトを削除しなければならないアップデートがあります。完全にアップグレードするためにはパッケージマネージャ \"Synaptic\" の " +#~ "\"すべてのアップグレードににマーク\"機能を使うか。端末から \"sudo apt-get dist-upgrade\" を実行してください。" #~ msgid "The following updates will be skipped:" #~ msgstr "これらのパッケージはアップグレードされません:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "およそ残り %li 秒" @@ -1754,14 +1623,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "詳細を表示" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "" -#~ "ソフトウェアマネージメントツールは同時に1つしか実行することができません" +#~ msgstr "ソフトウェアマネージメントツールは同時に1つしか実行することができません" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." -#~ msgstr "" -#~ "まず 'aptitude' または 'Synaptic' など、ほかのアプリケーションを終了してく" -#~ "ださい。" +#~ msgstr "まず 'aptitude' または 'Synaptic' など、ほかのアプリケーションを終了してください。" #~ msgid "Channels" #~ msgstr "チャンネル" @@ -1813,11 +1679,9 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "Ubuntu 6.06 LTS バックポート" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" -#~ msgstr "" -#~ "アップグレードするためにリポジトリ情報を調べている際、正しくないエントリが" -#~ "みつかりました。\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" +#~ msgstr "アップグレードするためにリポジトリ情報を調べている際、正しくないエントリがみつかりました。\n" #~ msgid "Repositories changed" #~ msgstr "リポジトリが変更されました" @@ -1825,20 +1689,17 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" -#~ msgstr "" -#~ "変更点を有効にするためにパッケージリストをサーバから再取得する必要がありま" -#~ "す。今すぐ実行しますか?" +#~ msgstr "変更点を有効にするためにパッケージリストをサーバから再取得する必要があります。今すぐ実行しますか?" #~ msgid "Sections" #~ msgstr "セクション:" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. Please " -#~ "try 'sudo apt-get install -f' or Synaptic to fix your system." +#~ "The upgrade aborts now. Your system can be in an unusable state. Please try " +#~ "'sudo apt-get install -f' or Synaptic to fix your system." #~ msgstr "" -#~ "アップグレードを中断しました。システムが不安定な状態になっています。システ" -#~ "ムを修正するために 'sudo apt-get install -f ' または Synapticを試してみて" -#~ "ください。" +#~ "アップグレードを中断しました。システムが不安定な状態になっています。システムを修正するために 'sudo apt-get install -f ' " +#~ "または Synapticを試してみてください。" #~ msgid "Remove obsolete Packages?" #~ msgstr "古いパッケージ削除しますか?" @@ -1847,19 +1708,18 @@ msgstr "DFSGに適合しないソフトウェア" #~ "Upgrading to Ubuntu \"Dapper\" " #~ "6.04" #~ msgstr "" -#~ "Ubuntu·\"Dapper\"·6.04 にアップグ" -#~ "レード中" +#~ "Ubuntu·\"Dapper\"·6.04 " +#~ "にアップグレード中" #~ msgid "" #~ "Checking for available updates\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "アップデートをチェック中\n" #~ "\n" -#~ "アップデートによってソフトウェアの問題を修正し、セキュリティホールを除去" -#~ "し、新機能を追加します。" +#~ "アップデートによってソフトウェアの問題を修正し、セキュリティホールを除去し、新機能を追加します。" #~ msgid "Sections:" #~ msgstr "セクション:" @@ -1902,12 +1762,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "There is not enough free space on your system to download the required " -#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" -#~ "get clean'" +#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get " +#~ "clean'" #~ msgstr "" -#~ "システムに要求されたパッケージをダウンロードするだけの十分な空き容量があり" -#~ "ません。再び試行する前に 'sudo apt-get clean' などで空き容量を確保してくだ" -#~ "さい" +#~ "システムに要求されたパッケージをダウンロードするだけの十分な空き容量がありません。再び試行する前に 'sudo apt-get clean' " +#~ "などで空き容量を確保してください" #~ msgid "Error fetching the packages" #~ msgstr "パッケージ取得中にエラー" @@ -1915,9 +1774,7 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Some problem occured during the fetching of the packages. This is most " #~ "likely a network problem. Please check your network and try again. " -#~ msgstr "" -#~ "パッケージを取得中になんらかのエラーが発生しました。おそらくネットワークの" -#~ "問題です。ネットワークを確認して再試行してください。 " +#~ msgstr "パッケージを取得中になんらかのエラーが発生しました。おそらくネットワークの問題です。ネットワークを確認して再試行してください。 " #~ msgid "" #~ "%s packages are going to be removed.\n" @@ -1942,11 +1799,9 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "本当にキャンセルしますか?" #~ msgid "" -#~ "Canceling during a upgrade can leave the system in a unstable state. It " -#~ "is strongly adviced to continue the operation. " -#~ msgstr "" -#~ "アップグレード中にキャンセルすると、システムが不安定な状態になります。動作" -#~ "を継続することを強く忠告します。 " +#~ "Canceling during a upgrade can leave the system in a unstable state. It is " +#~ "strongly adviced to continue the operation. " +#~ msgstr "アップグレード中にキャンセルすると、システムが不安定な状態になります。動作を継続することを強く忠告します。 " #, fuzzy #~ msgid "Sources" @@ -1980,18 +1835,15 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "" #~ "認証鍵\n" #~ "\n" -#~ "認証鍵の追加と削除が行えます。認証鍵によりダウンロードしたソフトウェアが完" -#~ "全なものか確認することができます。" +#~ "認証鍵の追加と削除が行えます。認証鍵によりダウンロードしたソフトウェアが完全なものか確認することができます。" #~ msgid "A_uthentication" #~ msgstr "認証(_U)" #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " -#~ msgstr "" -#~ "新しい鍵ファイルを信頼されたキーリングに追加します。セキュアなチャンネル経" -#~ "由で鍵を取得し、信頼される持ち主のものか確認してください。 " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " +#~ msgstr "新しい鍵ファイルを信頼されたキーリングに追加します。セキュアなチャンネル経由で鍵を取得し、信頼される持ち主のものか確認してください。 " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "一時ファイルを自動的に削除する(_T)" @@ -2012,11 +1864,9 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "最大量(MB):" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." -#~ msgstr "" -#~ "ディストリビューション付属のデフォルトの鍵を元に戻します。この変更により" -#~ "ユーザが追加した鍵が失われることはありません。" +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." +#~ msgstr "ディストリビューション付属のデフォルトの鍵を元に戻します。この変更によりユーザが追加した鍵が失われることはありません。" #~ msgid "Set _maximum size for the package cache" #~ msgstr "パッケージキャッシュの最大量を設定する(_M)" @@ -2042,27 +1892,26 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "アップデートがあります\n" #~ "\n" -#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれら" -#~ "のパッケージがインストールされます。" +#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれらのパッケージがインストールされます。" #~ msgid "" #~ "Reload the package information from the server. \n" #~ "\n" -#~ "If you have a permanent internet connection this is done automatically. " -#~ "If you are behind an internet connection that needs to be started by hand " -#~ "(e.g. a modem) you should use this button so that update-manager knows " -#~ "about new updates." +#~ "If you have a permanent internet connection this is done automatically. If " +#~ "you are behind an internet connection that needs to be started by hand (e.g. " +#~ "a modem) you should use this button so that update-manager knows about new " +#~ "updates." #~ msgstr "" #~ "サーバからパッケージ情報を読み込み直します。\n" #~ "\n" -#~ "ずっとインターネットに接続されたままなら、自動的に行います。アナログモデム" -#~ "などでそうではないなら、アップデートマネージャに新しいアップデートがあるか" -#~ "どうかを知らせるため、このボタンを使用して手動で行う必要があります。" +#~ "" +#~ "ずっとインターネットに接続されたままなら、自動的に行います。アナログモデムなどでそうではないなら、アップデートマネージャに新しいアップデートがあるかどうかを" +#~ "知らせるため、このボタンを使用して手動で行う必要があります。" #~ msgid "Binary" #~ msgstr "バイナリ" @@ -2083,8 +1932,7 @@ msgstr "DFSGに適合しないソフトウェア" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "インストールされたパッケージの依存性が満たせないようです。\"Synaptic\" ま" -#~ "たは \"apt-get\" を使用して修正してください。" +#~ "インストールされたパッケージの依存性が満たせないようです。\"Synaptic\" または \"apt-get\" を使用して修正してください。" #~ msgid "It is not possible to upgrade all packages." #~ msgstr "全てのパッケージをアップグレードすることは不可能です。" @@ -2092,27 +1940,21 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" -#~ "パッケージのアップグレードの他にパッケージのインストールや削除などの別の対" -#~ "処がいるようです。Synaptic \"Smart Upgrade\"か\"apt-get dist-upgrade\"を実" -#~ "行して問題を修正してください。" +#~ "パッケージのアップグレードの他にパッケージのインストールや削除などの別の対処がいるようです。Synaptic \"Smart " +#~ "Upgrade\"か\"apt-get dist-upgrade\"を実行して問題を修正してください。" #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "" -#~ "変更点は見つかりませんでした。サーバはまだアップデートされていないようで" -#~ "す。" +#~ msgstr "変更点は見つかりませんでした。サーバはまだアップデートされていないようです。" #~ msgid "The updates are being applied." #~ msgstr "アップデートされました。" #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." -#~ msgstr "" -#~ "同時にひとつのパッケージマネージャしか起動できません。先に他のアプリケー" -#~ "ションマネージャを終了してください。" +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." +#~ msgstr "同時にひとつのパッケージマネージャしか起動できません。先に他のアプリケーションマネージャを終了してください。" #~ msgid "Updating package list..." #~ msgstr "アップデートされるパッケージのリスト..." @@ -2122,22 +1964,22 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "新しいUbuntu Linuxにアップグレードしてください。現在お使いのシステムにはセ" -#~ "キュリティフィクスや危急のアップデートはすでに提供されていません。アップグ" -#~ "レードに関する情報は http://www.ubuntulinux.org/ を見てください。" +#~ "新しいUbuntu " +#~ "Linuxにアップグレードしてください。現在お使いのシステムにはセキュリティフィクスや危急のアップデートはすでに提供されていません。アッ" +#~ "プグレードに関する情報は http://www.ubuntulinux.org/ を見てください。" #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ubuntuの新しいリリース版があります!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "コードネーム '%s' という新しいリリース版があります。アップグレードするため" -#~ "に http://www.ubuntulinux.org/ をご覧ください。" +#~ "コードネーム '%s' という新しいリリース版があります。アップグレードするために http://www.ubuntulinux.org/ " +#~ "をご覧ください。" #~ msgid "Never show this message again" #~ msgstr "このメッセージを二度と表示しない" @@ -2146,11 +1988,10 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "排他的なロックができません" #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "同時にひとつのパッケージマネージャしか起動できません。先に atp-get や " -#~ "aptitudeのような他のパッケージマネージャを終了してください。" +#~ "同時にひとつのパッケージマネージャしか起動できません。先に atp-get や aptitudeのような他のパッケージマネージャを終了してください。" #~ msgid "Initializing and getting list of updates..." #~ msgstr "アップデートリストを取得中..." @@ -2167,10 +2008,9 @@ msgstr "DFSGに適合しないソフトウェア" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "利用可能なアップデート\n" #~ "\n" -#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれら" -#~ "のパッケージがインストールされます。" +#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれらのパッケージがインストールされます。" \ No newline at end of file diff --git a/po/ka.po b/po/ka.po index a6abf913..0dee0d27 100644 --- a/po/ka.po +++ b/po/ka.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:39+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Vladimer Sichinava \n" "Language-Team: Georgian \n" "MIME-Version: 1.0\n" @@ -21,7 +21,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" -msgstr "ყოველ დღიურად" +msgstr "ყოველდღიურად" #: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" @@ -29,7 +29,7 @@ msgstr "ყოველ 2 დღეში" #: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" -msgstr "კვირეული" +msgstr "ყოველკვირეულად" #: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" @@ -42,7 +42,7 @@ msgstr "ყოველ %s დღეში" #: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" -msgstr "ერთ კვირაში" +msgstr "ერთი კვირის შემდგომ" #: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" @@ -57,38 +57,35 @@ msgstr "ერთი თვის შემდგომ" msgid "After %s days" msgstr "%s დღის შემდეგ" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "განახლებების _დაყენება" +msgstr "%s განახლება" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: ../SoftwareProperties/SoftwareProperties.py:316 msgid "Main server" -msgstr "" +msgstr "მთავარი სერვერი" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "" +msgstr "%s სერვერი" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "უახლოესი სერვერი" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" -msgstr "" +msgstr "საკუთარი სერვერები" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 @@ -99,15 +96,15 @@ msgstr "პროგრამული განახლებები" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 msgid "Active" -msgstr "" +msgstr "აქტიური" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" -msgstr "" +msgstr "(საწყისი კოდი)" #: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" -msgstr "" +msgstr "საწყისი კოდი" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -128,12 +125,13 @@ msgid "Error removing the key" msgstr "გასღების წაშლა ვერ მოხერხდა" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" -"ამორჩეული გასაღების წაშლა ვე რმოხერხდა. გთხოვთ აცნობოთ ეს როგორც ხარვეზი." +"ამორჩეული გასაღების წაშლა ვერ მოხერხდა. გთხოვთ აცნობოთ ეს როგორც ხარვეზი." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -149,35 +147,34 @@ msgstr "შეიყვანეთ დისკის სახელი" #: ../SoftwareProperties/SoftwareProperties.py:1112 msgid "Please insert a disc in the drive:" -msgstr "მოათავსეთ დისკი დისკწამყვანში:" +msgstr "მოათავსეთ დისკი დისკამძრავში:" #: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" -msgstr "გაფუჭებული პაკეტები" +msgstr "დაზიანებული პაკეტები" #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"თქვენს სისტემაში არის დაფუჭებული პაკეტები, რომელთა გამართვა ვერ ხერხდება ამ " -"პროგრამით. ჯერ გამართეთ გაფუჭებული პაკეტები synaptic ან apt-get პროგრამით და " -"შემდეგ გააგრძელეთ." +"თქვენს სისტემაში არის დაზიანებული პაკეტები, რომელთა გამართვა ვერ ხერხდება ამ " +"პროგრამით. ჯერ გამართეთ დაზიანებული პაკეტები synaptic ან apt-get პროგრამით " +"და შემდეგ გააგრძელეთ." #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" -msgstr "საჭჳრო მეტა-პაკეტების განახლება ვერ მოხერხდა" +msgstr "საჭირო მეტა-პაკეტების განახლება ვერ მოხერხდა" #: ../DistUpgrade/DistUpgradeCache.py:217 #, fuzzy msgid "A essential package would have to be removed" -msgstr "A არსებითი -სკენ" +msgstr "ამით საჭირო პაკეტი წაიშლება" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 #, fuzzy msgid "Could not calculate the upgrade" -msgstr "არა" +msgstr "სისტემა ვერ მომზადდა განახლებისათვის" #: ../DistUpgrade/DistUpgradeCache.py:221 #, fuzzy @@ -187,9 +184,10 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"მოხდა დაუდგენელი შეცდომა განახლების დათვლისას. შეატყობინეთ ეს როგორხ ხარვეზი." +"მოხდა დაუდგენელი შეცდომა განახლებისათვის მზადებისას. შეატყობინეთ ეს ხარვეზი " +"'update-manager' პაკეტის საშუალებით, შეტყობინებას დაურთეთ ფაილები " +"/var/log/dist-upgrade/-დან." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "ზოგიერთი პაკეტის ავთენთიფიკაციის შეცდომა" @@ -200,9 +198,8 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"ვერ ხერხვდება ზოგიერთი პაკეტის ავთენთიფიკაცია. ეს შეიძლება იყოს კავშირის " -"ბრაკი. იქნებ მოგვიანბით კიდევ ერთხელ სცადოთ. ქვევით იხილეთ არა-" -"ავთენთიფიცერული პაკეტების სია." +"ვერ ხერხდება ზოგიერთი პაკეტის ავთენთიფიკაცია. ეს შეიძლება იყოს კავშირის " +"ბრაკი. სცადეთ მოგვიანებით. ქვევით იხილეთ არა-ავთენთიფიცერული პაკეტების სია." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -213,12 +210,12 @@ msgstr "'%s' ვერ დაყენდა" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "საჭირო პაკეტის დაყენება ვერ მოხერხდა. შეატყობინეთ ეს როგორხ ხარვეზი. " +msgstr "" +"საჭირო პაკეტის დაყენება ვერ მოხერხდა. შეატყობინეთ ეს როგორც ხარვეზი. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" -msgstr "მეტა-პაკეტი ვერ გამოვიცანით" +msgstr "მეტა-პაკეტი ვერ შეირჩა" #: ../DistUpgrade/DistUpgradeCache.py:321 #, fuzzy @@ -229,13 +226,15 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"არა შეიცავს a ან და არა -სკენ ვერსია ის\n" -" ის ან." +"თქვენს სისტემაში არ არის ubuntu-desktop, kubuntu-desktop ან edubuntu-desktop " +"პაკეტებიდან არცერთი, რის გამოც უბუნტუს ვერსიის დადგენა ვერ ხერხდება.\n" +"სანამ გააგრძელებდეთ, დააყენეთ რომელიმე მათგანი synaptic ან apt-get-ის " +"გამოყენებით." #: ../DistUpgrade/DistUpgradeControler.py:74 #, fuzzy msgid "Failed to add the CD" -msgstr "ვერ განხორციელდა -სკენ" +msgstr "ვერ განხორციელდა CD-ს დამატება" #: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format @@ -249,11 +248,11 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" -msgstr "მიმდინარეობს ქეშის წაკითხვა" +msgstr "ქეშის კითხვა" #: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" -msgstr "" +msgstr "ნივიღოთ ქსელიდან მონაცემები განახლების შესახებ?" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" @@ -262,10 +261,14 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"განახლების პროგრამას შეუძლია მიიღოს ქსელიდან განახლებები და პაკეტები, " +"რომლებიც არ არის ამ CD-ზე.\n" +"დაეთანხმეთ განახლების მიღებას, ან უარი თქვით, თუ თქვენი ქსელი ძალიან ნელია " +"ან ძვირი." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" -msgstr "არავითარი გამოსადეგი სერვერის ანარეკლი" +msgstr "არ მოინახა შესაბამისი სარკე" #: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format @@ -278,12 +281,18 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" +"რეპოზიტორიის შესახებ ინფორმაციაში არ არის მითითებული სარკე სისტემის " +"განახლებისათვის. შესაძლოა თქვენ შიდა სარკეს იყენებდეთ, ან ინფორმაცია სარკის " +"შესახებ მოძველებულია.\n" +"\n" +"თუ თქვენ მაინც გინდათ 'sources.list' ფაილის განახლება, დასტურის შემთხვევაში " +"ყველა ჩანაწერი %s'-დან '%s'-მდე განახლდება.\n" +"უარის შემთხვევაში განახლება არ მოხდება." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 #, fuzzy msgid "Generate default sources?" -msgstr "გენერაცია ნაგულისხმევი?" +msgstr "გავუშვათ ნაგულისხმევი წყაროების გენერაცია?" #: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format @@ -293,10 +302,15 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" +"თქვენს 'sources.list'-ში არ აღმოჩნდა არც ერთი სათანადო ჩანაწერი '%s'-" +"სთვის.\n" +"\n" +"დავამატოთ ნაგულისხმევი ჩანაწერები '%s'-სთვის? უარის შემთხვევაში განახლება არ " +"მოხდება." #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" -msgstr "რეპოზიტორიების ინფორმაცია არასწორეა" +msgstr "რეპოზიტორიების ინფორმაცია არასწორია" #: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" @@ -309,7 +323,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:308 #, fuzzy msgid "Third party sources disabled" -msgstr "გამორთული" +msgstr "მესამე მხარის წყაროები გამორთულია" #: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy @@ -317,7 +331,9 @@ msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." -msgstr "-ში სია გამორთული თქვენ პარამეტრები ან." +msgstr "" +"მესამე მხარის ზოგი წყარო sources.list-ში გამორთულია. განახლების შემდეგ " +"შეგეძლებათ მათი ჩართვა 'software-properties' ან synaptic-ის საშუალებით." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -328,8 +344,8 @@ msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -"განახლებისას მოხდა შეცდომა. ეს როგროც წესი არის კავშირის პრობლემა, შეამოწმეთ " -"თქვენი კავშირი და ცადეთ კიდევ ერთხელ." +"განახლებისას მოხდა შეცდომა. როგორც წესი ეს არის კავშირის პრობლემა, შეამოწმეთ " +"თქვენი კავშირი და სცადეთ კიდევ ერთხელ." #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" @@ -342,8 +358,10 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" +"განახლება შეწყვეტილია. გაათავისუფლეთ არანაკლებ %s ზომის ადგილი %s დისკზე. " +"გამოიყენეთ 'sudo apt-get clean' სანაგვიდან ფაილებისა და წინა ინსტალაციის " +"დროებითი პაკეტების წასაშლელად." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "გნებავთ განახლების დაწყება?" @@ -351,7 +369,7 @@ msgstr "გნებავთ განახლების დაწყებ #: ../DistUpgrade/DistUpgradeControler.py:460 #, fuzzy msgid "Could not install the upgrades" -msgstr "არა" +msgstr "განახლებების დაყენება ვერ ხერხდება" #: ../DistUpgrade/DistUpgradeControler.py:461 #, fuzzy @@ -361,23 +379,29 @@ msgid "" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -msgstr "ახლა -ში A a." +msgstr "" +"განახლება შეწყვეტილია. სისტემამ, შესაძლოა, დაკარგა მუშაობის უნარი. " +"გაშვებულია აღდგენის პროცესი (dpkg --configure -a).\n" +"\n" +"შეატყობინეთ ხარვეზის შესახებ 'update-manager' პაკეთის საშუალებით, " +"შეტყობინებაში ჩართეთ ფაილები var/log/dist-upgrade/-დან." #: ../DistUpgrade/DistUpgradeControler.py:479 #, fuzzy msgid "Could not download the upgrades" -msgstr "არა" +msgstr "განახლებების ჩამოტვირთვა ვერ ხერხდება" #: ../DistUpgrade/DistUpgradeControler.py:480 #, fuzzy msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -msgstr "ახლა ან და " +msgstr "" +"განახლება შეწყვეტილია. შეამოწმეთ ხელახლა ქსელი და საინსტალაციო დისკი. " #: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "ზოგ პროგრამას მხარდაჭერა აღარა აქვს" #: ../DistUpgrade/DistUpgradeControler.py:517 #, fuzzy @@ -387,15 +411,19 @@ msgid "" "\n" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." -msgstr "არა და ახლა n t ჩართული -თვის -ში ნაბიჯი" +msgstr "" +"ამ პაკეტებს Canonical Ltd.-ს ნაცვლად საზოგადოება უჭერს მხარს.\n" +"\n" +"თუ თქვენ არა გაქვთ საზოგადოების უზრუნველყოფა (universe), მაშინ შემდეგ ეტაპზე " +"შემოთავაზებული იქნება ამ პაკეტების წაშლა." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" -msgstr "წავშალო მოძველებული პაკეტები?" +msgstr "წავშალოთ მოძველებული პაკეტები?" #: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" -msgstr "ნაბიჯის გა_მოტოვება" +msgstr "ეტაპის გა_მოტოვება" #: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" @@ -404,27 +432,25 @@ msgstr "_წაშლა" #: ../DistUpgrade/DistUpgradeControler.py:563 #, fuzzy msgid "Error during commit" -msgstr "შეცდომა" +msgstr "შეცდომა გადაცემისას" #: ../DistUpgrade/DistUpgradeControler.py:564 #, fuzzy msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "-თვის ინფორმაცია " +msgstr "შეცდომა გასუფთავებისას. დაწვრილებით იხილეთ ქვემოთ. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" -msgstr "" +msgstr "სისტემის საწყისი მდგომარეობის აღდგენა" #: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "%s'-ის მიღება backport-იდან" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -481,7 +507,6 @@ msgstr "ვეძებ -თვის" msgid "System upgrade is complete." msgstr "სისტემა ტოლია სრული." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -498,7 +523,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -510,7 +535,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "ცვლილებების დამტკიცება" @@ -526,60 +550,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 #, fuzzy msgid "The 'diff' command was not found" msgstr "არა" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 #, fuzzy msgid "A fatal error occured" msgstr "A შეცდომა" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "a და შემცველობა და -ში ახლა თავდაპირველი სია -ში სია." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "A არსებითი -სკენ" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -587,41 +609,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "საათი და ნებისმიერი დრო." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "To prevent data loss close all open applications and documents." msgstr "ვის დახურვა ყველა გახსნა და დოკუმენტები." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "თქვენი სისტემა განახლებულია" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr " ამოშლა %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "დაყენება %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "ჩასაყენებელი განახლება %s" @@ -647,7 +668,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -668,7 +688,6 @@ msgstr "ტოლია დასრულდა და a ტოლია -ს #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -746,6 +765,7 @@ msgid "_Keep" msgstr "_დატოვე" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_ჩაანაცვლე" @@ -782,7 +802,6 @@ msgstr "შეუძლებელია ვერსიის შენიშ msgid "Please check your internet connection." msgstr "გთხოვთ შეამოწმოთ თქვენი ინტერნეტ კავშირი." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "ვერ ვრთავ განახლების ჩადგმის ხელსაწყოს" @@ -887,18 +906,15 @@ msgid "" "Please check your Internet connection." msgstr "ვერ განხორციელდა -სკენ სია ის ინტერნეტი." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -914,7 +930,6 @@ msgstr "Ubuntu 5.10 დამატებითი პროგრამებ msgid "Distribution updates" msgstr "განახლება _გაგრძელება" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -939,7 +954,6 @@ msgstr "" msgid "_Check All" msgstr "შ_ემოწმება" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -965,16 +979,15 @@ msgid "Checking for updates" msgstr "განახლებების _დაყენება" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "ახალი ვერსია: %s (ზომა: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "ვერსია %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -999,7 +1012,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "პროგრამების სიის ინდექსი დაზიანებულია" @@ -1013,23 +1025,19 @@ msgid "" msgstr "" "ტოლია -სკენ ან წაშლა ნებისმიერი Synaptic ან sudo -ში a ტერმინალი -სკენ." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1141,10 +1149,15 @@ msgstr "განახლებების _დაყენება" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "ჩასაყენებელი განახლება %s" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "ცვლილებები" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1396,248 +1409,203 @@ msgstr "ფანჯარა ზომა" msgid "Configure the sources for installable software and updates" msgstr "კონფიგურირება და" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 -#, fuzzy, no-c-format +#, fuzzy msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/ s s s s s" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 განახლებები" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "არათავისუფალი (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "არათავისუფალი (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "არათავისუფალი (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 განახლებები" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 განახლებები" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "არათავისუფალი (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "არა" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 #, fuzzy msgid "Restricted copyright" msgstr "შეზღუდული" -#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 განახლებები" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 -#, fuzzy, no-c-format +#, fuzzy msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/ s s s s s" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "უსაფრთხოება" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 #, fuzzy msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "პროგრამა თავისუფალი დამოკიდებულებანი" -#. CompDescription #: ../data/channels/Debian.info.in:57 #, fuzzy msgid "Non-DFSG-compatible Software" @@ -1690,8 +1658,8 @@ msgstr "პროგრამა" #, fuzzy #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "ის გამოყენება მონიშვნა ყველა ის Synaptic ან sudo -ში a ტერმინალი -სკენ " #~ "განახლება." @@ -1770,4 +1738,4 @@ msgstr "პროგრამა" #~ msgstr "Ubuntu 6.06 LTS განახლებები" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS დამატებითი პროგრამები" +#~ msgstr "Ubuntu 6.06 LTS დამატებითი პროგრამები" \ No newline at end of file diff --git a/po/ko.po b/po/ko.po index 10df3e74..4c875ced 100644 --- a/po/ko.po +++ b/po/ko.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-06 11:33+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Eungkyu Song \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" @@ -54,7 +54,6 @@ msgstr "한달 후에" msgid "After %s days" msgstr "%s일 후에" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,7 +61,6 @@ msgstr "%s 업데이트" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "주 서버" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,7 +119,8 @@ msgid "Error removing the key" msgstr "키 삭제 오류" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "선택한 키를 지울 수 없습니다. 버그를 보고하십시오." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -153,8 +151,7 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"이 소프트웨어로 고칠 수 없는 망가진 패키지가 있습니다. 진행하기 전에 먼저 시" -"냅틱이나 apt-get을 사용하여 복구하십시오." +"이 소프트웨어로 고칠 수 없는 망가진 패키지가 있습니다. 진행하기 전에 먼저 시냅틱이나 apt-get을 사용하여 복구하십시오." #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -164,7 +161,6 @@ msgstr "요청한 메타 패키지를 업그레이드 할 수 없습니다" msgid "A essential package would have to be removed" msgstr "필수적인 패키지를 제거해야만 합니다." -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "업그레이드에 필요한 의존성을 계산할 수 없습니다." @@ -176,13 +172,11 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"업그레이드에 필요한 의존성을 계산하던 중 해결할 수 없는 문제가 발생했습니" -"다.\n" +"업그레이드에 필요한 의존성을 계산하던 중 해결할 수 없는 문제가 발생했습니다.\n" "\n" -"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/" -"log/dist-upgrade/에 있는 파일을 포함하여 주십시오." +"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/에 있는 " +"파일을 포함하여 주십시오." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "패키지 인증 오류" @@ -193,8 +187,8 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"인증할 수 없는 패키지가 있습니다. 일시적인 네트워크 문제일 수 있으니 이 경우" -"라면 나중에 다시 시도하십시오. 인증되지 않은 패키지의 목록은 다음과 같습니다." +"인증할 수 없는 패키지가 있습니다. 일시적인 네트워크 문제일 수 있으니 이 경우라면 나중에 다시 시도하십시오. 인증되지 않은 패키지의 " +"목록은 다음과 같습니다." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -207,7 +201,6 @@ msgid "" "bug. " msgstr "요청한 패키지를 설치할 수 없습니다. 버그를 보고하여 주십시오. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "메타 패키지를 추측할 수 없습니다" @@ -220,10 +213,9 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"시스템에 ubuntu-desktop이나 kubuntu-desktop 또는 edubuntu-desktop 패키지가 없" -"으며, 현재 실행중인 우분투의 버전을 알아낼 수 없습니다.\n" -" 위의 패키지 중 하나를 시냅틱이나 apt-get을 이용해서 먼저 설치하시기 바랍니" -"다." +"시스템에 ubuntu-desktop이나 kubuntu-desktop 또는 edubuntu-desktop 패키지가 없으며, 현재 실행중인 " +"우분투의 버전을 알아낼 수 없습니다.\n" +" 위의 패키지 중 하나를 시냅틱이나 apt-get을 이용해서 먼저 설치하시기 바랍니다." #: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" @@ -238,8 +230,8 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"CD를 더할 때 오류가 발생하였기 때문에 업그레이드는 중단될 것입니다. 올바른 우" -"분투 CD를 사용하고 있었다면 이 버그를 보고해 주십시오.\n" +"CD를 더할 때 오류가 발생하였기 때문에 업그레이드는 중단될 것입니다. 올바른 우분투 CD를 사용하고 있었다면 이 버그를 보고해 " +"주십시오.\n" "\n" "오류 메시지:\n" "'%s'" @@ -259,10 +251,8 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" -"업그레이드할 때 네트워크를 이용하여 최신 업데이트를 확인하고 현재 CD에 없는 " -"패키지를 받을 수 있습니다.\n" -"빠르고 값싼 네트워크를 이용하고 있다면 '예'를 선택하는 것이 좋습니다. 네트워" -"크를 이용하는 것이 값싸지 않다면 '아니오'를 선택하십시오." +"업그레이드할 때 네트워크를 이용하여 최신 업데이트를 확인하고 현재 CD에 없는 패키지를 받을 수 있습니다.\n" +"빠르고 값싼 네트워크를 이용하고 있다면 '예'를 선택하는 것이 좋습니다. 네트워크를 이용하는 것이 값싸지 않다면 '아니오'를 선택하십시오." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -279,15 +269,12 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"업그레이드를 하기 위해 저장소 정보를 검색할 때 미러 서버 항목을 찾지 못했습니" -"다. 내부 미러 서버를 운영하고 있거나 미러 서버 정보가 오래됐을 때 이러한 문제" -"가 일어날 수 있습니다.\n" +"업그레이드를 하기 위해 저장소 정보를 검색할 때 미러 서버 항목을 찾지 못했습니다. 내부 미러 서버를 운영하고 있거나 미러 서버 정보가 " +"오래됐을 때 이러한 문제가 일어날 수 있습니다.\n" "\n" -"'sources.list' 파일을 다시 작성하시겠습니까? '예'를 선택하면 '%s' 전체를 '%" -"s' 항목으로 업데이트 합니다.\n" +"'sources.list' 파일을 다시 작성하시겠습니까? '예'를 선택하면 '%s' 전체를 '%s' 항목으로 업데이트 합니다.\n" "'아니오'를 선택하면 업데이트가 취소됩니다." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "기본 설정된 소스 목록을 만듭니까?" @@ -302,8 +289,7 @@ msgid "" msgstr "" "'sources.list'를 검색했지만 '%s'에 적합한 항목을 찾지 못했습니다.\n" "\n" -"'%s'에 대한 기본 항목을 추가하시겠습니까? '아니오'를 선택하면 업데이트가 취소" -"됩니다." +"'%s'에 대한 기본 항목을 추가하시겠습니까? '아니오'를 선택하면 업데이트가 취소됩니다." #: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" @@ -313,9 +299,7 @@ msgstr "저장소 정보가 올바르지 않습니다" msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "" -"저장소 정보를 업그레이드했는데 잘못된 파일이 만들어졌습니다. 버그를 보고하여 " -"주십시오." +msgstr "저장소 정보를 업그레이드했는데 잘못된 파일이 만들어졌습니다. 버그를 보고하여 주십시오." #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" @@ -327,9 +311,8 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"souces.list에서 써드 파티 목록의 일부는 이용할 수 없게 되었습니다. 'software-" -"properties' 도구나 시냅틱으로 업그레이드 한 후에 다시 사용가능하게 할 수 있습" -"니다." +"souces.list에서 써드 파티 목록의 일부는 이용할 수 없게 되었습니다. 'software-properties' 도구나 시냅틱으로 " +"업그레이드 한 후에 다시 사용가능하게 할 수 있습니다." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -340,8 +323,7 @@ msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -"업데이트를 하는 동안에 문제가 발생했습니다. 보통 네트워크 문제인 경우가 많습" -"니다. 네트워크의 연결 상태를 확인하시고 다시 시도하십시오." +"업데이트를 하는 동안에 문제가 발생했습니다. 보통 네트워크 문제인 경우가 많습니다. 네트워크의 연결 상태를 확인하시고 다시 시도하십시오." #: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" @@ -354,11 +336,9 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"업그레이드가 중단되었습니다. 적어도 %s 정도의 디스크 공간을 %s에 확보하시기 " -"바랍니다. 휴지통을 비우시고 'sudo apt-get clean' 명령으로 이전 설치 과정 중" -"에 사용했던 임시 패키지들을 삭제하시기 바랍니다." +"업그레이드가 중단되었습니다. 적어도 %s 정도의 디스크 공간을 %s에 확보하시기 바랍니다. 휴지통을 비우시고 'sudo apt-get " +"clean' 명령으로 이전 설치 과정 중에 사용했던 임시 패키지들을 삭제하시기 바랍니다." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "업그레이드를 시작하시겠습니까?" @@ -375,11 +355,11 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"업그레이드가 중단되었습니다. 시스템을 이용할 수 없는 상태일 수 있습니다. " -"(dpkg --configure -a)를 실행하여 복구하십시오.\n" +"업그레이드가 중단되었습니다. 시스템을 이용할 수 없는 상태일 수 있습니다. (dpkg --configure -a)를 실행하여 " +"복구하십시오.\n" "\n" -"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/" -"log/dist-upgrade/에 있는 파일을 포함하여 주십시오." +"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/에 있는 " +"파일을 포함하여 주십시오." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -389,9 +369,7 @@ msgstr "업그레이를 다운로드 할 수 없습니다." msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -msgstr "" -"업그레이드가 중단되었습니다. 인터넷 연결과 설치 미디어를 확인하시고 다시 시도" -"하십시오. " +msgstr "업그레이드가 중단되었습니다. 인터넷 연결과 설치 미디어를 확인하시고 다시 시도하십시오. " #: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" @@ -405,11 +383,9 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Canonical Ltd.는 다음의 소프트웨어 패키지를 더 이상 지원하지 않습니다. 커뮤니" -"티를 통해서 여전히 지원받을 수 있습니다.\n" +"Canonical Ltd.는 다음의 소프트웨어 패키지를 더 이상 지원하지 않습니다. 커뮤니티를 통해서 여전히 지원받을 수 있습니다.\n" "\n" -"커뮤니티 관리 소프트웨어를 (universe) 활성화하지 않았다면, 다음 단계에서 이 " -"패키지들을 삭제하도록 제안할 것입니다." +"커뮤니티 관리 소프트웨어를 (universe) 활성화하지 않았다면, 다음 단계에서 이 패키지들을 삭제하도록 제안할 것입니다." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -431,11 +407,8 @@ msgstr "커밋 도중 오류 발생" msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "" -"정리하는 도중에 문제가 발생하였습니다. 다음의 메시지에서 더 많은 정보를 확인" -"할 수 있습니다. " +msgstr "정리하는 도중에 문제가 발생하였습니다. 다음의 메시지에서 더 많은 정보를 확인할 수 있습니다. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "시스템을 원래의 상태로 복구하고 있습니다" @@ -446,7 +419,6 @@ msgid "Fetching backport of '%s'" msgstr "'%s'의 백포트를 받고 있습니다" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -481,8 +453,8 @@ msgid "" "bugreport." msgstr "" "패키지 정보를 업데이트한 다음에 필수 패키지 '%s'를 더이상 찾을 수 없습니다.\n" -"심각한 오류입니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리" -"고 버그 보고에 /var/log/dist-upgrade/에 있는 파일을 포함하여 주십시오." +"심각한 오류입니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-" +"upgrade/에 있는 파일을 포함하여 주십시오." #: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" @@ -500,7 +472,6 @@ msgstr "구식 소프트웨어를 검색하고 있습니다" msgid "System upgrade is complete." msgstr "완전히 시스템을 업그레이드하였습니다." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -516,7 +487,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "내려받는 중, %li의 %li 파일, 속도 %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "%s분 정도 남음" @@ -528,7 +499,6 @@ msgstr "%li의 %li 파일 내려받는 중" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "변경 사항을 적용하고 있습니다" @@ -543,12 +513,10 @@ msgid "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"업그레이드가 중단되었습니다. 'update-manager' 패키지의 버그를 보고하여 주십시" -"오. 그리고 버그 보고에 /var/log/dist-upgrade/에 있는 파일을 포함하여 주십시" -"오." +"업그레이드가 중단되었습니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 " +"/var/log/dist-upgrade/에 있는 파일을 포함하여 주십시오." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -557,53 +525,51 @@ msgstr "" "바뀐 설정 파일 '%s'을(를)\n" "교체하시겠습니까?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "'diff' 명령어를 찾지 못했습니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "심각한 오류 발생" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"이 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/main." -"log 파일과 /var/log/dist-upgrade/apt.log 파일을 포함하여 주십시오. 업그레이드" -"가 중단되었습니다.\n" +"이 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/main.log 파일과 /var/log/dist-" +"upgrade/apt.log 파일을 포함하여 주십시오. 업그레이드가 중단되었습니다.\n" "원래의 sources.list는 /etc/apt/sources.list.distUpgrade에 저장되어 있습니다." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "패키지 %d개를 삭제할 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "새로운 패키지 %d개를 설치할 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "패키지 %d개를 업그레이드할 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -614,41 +580,38 @@ msgstr "" "\n" "총 %s개의 패키지를 다운로드해야 합니다. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "" -"업그레이드를 받아 설치하는 것은 여러 시간이 걸릴 수 있으며, 이후 어떤 경우에" -"도 취소할 수 없습니다." +msgstr "업그레이드를 받아 설치하는 것은 여러 시간이 걸릴 수 있으며, 이후 어떤 경우에도 취소할 수 없습니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "데이터 손실을 막으려면 열려있는 모든 프로그램과 문서를 닫으십시오." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "시스템이 최신의 상태입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "시스템에 업그레이드할 것이 없습니다. 업그레이드를 취소합니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "%s 제거" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "%s 설치" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "%s 업그레이드" @@ -674,7 +637,6 @@ msgid "%li seconds" msgstr "%li초" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -694,7 +656,6 @@ msgstr "업그레이드가 끝났으며 다시 시작해야 합니다. 지금 #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -709,8 +670,7 @@ msgid "" msgstr "" "실행 중인 업그레이드를 취소하시겠습니까?\n" "\n" -"업그레이드를 취소하면 시스템이 사용할 수 없는 상태가 될 수 있습니다. 업그레이" -"드를 계속 하시기를 강력히 건의합니다." +"업그레이드를 취소하면 시스템이 사용할 수 없는 상태가 될 수 있습니다. 업그레이드를 계속 하시기를 강력히 건의합니다." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" @@ -769,6 +729,7 @@ msgid "_Keep" msgstr "유지(_K)" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "바꾸기(_R)" @@ -804,7 +765,6 @@ msgstr "릴리즈 정보를 다운로드 할 수 없습니다." msgid "Please check your internet connection." msgstr "인터넷 연결 상태를 확인하십시오." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "업그레이드 도구를 실행할 수 없습니다." @@ -846,9 +806,7 @@ msgstr "압축 풀기 실패" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"업그레이드의 압축을 푸는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있" -"습니다. " +msgstr "업그레이드의 압축을 푸는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -858,9 +816,7 @@ msgstr "확인 실패" msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"업그레이드를 확인하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습" -"니다. " +msgstr "업그레이드를 확인하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -870,15 +826,12 @@ msgstr "인증 실패" msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "" -"업그레이드를 인증하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니" -"다. " +msgstr "업그레이드를 인증하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "" -"%(total)li개중 %(current)li번째 파일을 %(speed)s/s의 속도로 받고 있습니다" +msgstr "%(total)li개중 %(current)li번째 파일을 %(speed)s/s의 속도로 받고 있습니다" #: ../UpdateManager/GtkProgress.py:113 #, python-format @@ -901,17 +854,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "중요한 보안 업데이트" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "추천하는 업데이트" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "제안하는 업데이트" @@ -924,7 +874,6 @@ msgstr "Backports" msgid "Distribution updates" msgstr "배포판 업데이트" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "기타 업데이트" @@ -946,7 +895,6 @@ msgstr "전체 선택 취소(_U)" msgid "_Check All" msgstr "전체 선택(_C)" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -980,7 +928,6 @@ msgstr "버전 %(old_version)s에서 %(new_version)s(으)로" msgid "Version %s" msgstr "버전 %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -996,16 +943,14 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"더 이상 보안이나 중요 업데이트를 받을 수 없습니다. 최신의 우분투 리눅스로 업" -"그레이드 하십시오. 업그레이드에 대한 더 많은 정보는 http://www.ubuntu.com에" -"서 보실 수 있습니다." +"더 이상 보안이나 중요 업데이트를 받을 수 없습니다. 최신의 우분투 리눅스로 업그레이드 하십시오. 업그레이드에 대한 더 많은 정보는 " +"http://www.ubuntu.com에서 보실 수 있습니다." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "새 배포판 '%s'을(를) 설치할 수 있습니다" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "소프트웨어 목록이 망가졌습니다." @@ -1016,26 +961,22 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"어떤 소프트웨어도 설치하거나 삭제할 수 없습니다. \"시냅틱\"이나 터미널에서 " -"\"sudo apt-get install -f\"를 실행하여 이 문제를 먼저 해결하십시오." +"어떤 소프트웨어도 설치하거나 삭제할 수 없습니다. \"시냅틱\"이나 터미널에서 \"sudo apt-get install -f\"를 " +"실행하여 이 문제를 먼저 해결하십시오." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "없음" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1050,8 +991,7 @@ msgid "" msgstr "" "업데이트 확인을 직접 해야 합니다.\n" "\n" -"업데이트 확인이 자동으로 되지 않습니다. 이 동작은 인터넷 업데이트 탭" -"의 소프트웨어 소스에서 설정할 수 있습니다." +"업데이트 확인이 자동으로 되지 않습니다. 이 동작은 인터넷 업데이트 탭의 소프트웨어 소스에서 설정할 수 있습니다." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1098,8 +1038,7 @@ msgid "" msgstr "" "배포판 업그레이드를 수행하여 가능한 많은 업데이트를 설치합니다. \n" "\n" -"이것은 완료되지 않은 업그레이드나 비공식 소프트웨어 패키지, 또는 개발버전에" -"서 실행했기 때문일 수 있습니다." +"이것은 완료되지 않은 업그레이드나 비공식 소프트웨어 패키지, 또는 개발버전에서 실행했기 때문일 수 있습니다." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1113,9 +1052,7 @@ msgstr "소프트웨어 업데이트" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "" -"소프트웨어 업데이트는 에러를 고치고, 보안 문제를 제거하며 새로운 기능을 제공" -"합니다." +msgstr "소프트웨어 업데이트는 에러를 고치고, 보안 문제를 제거하며 새로운 기능을 제공합니다." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1142,10 +1079,15 @@ msgid "_Install Updates" msgstr "업데이트 설치(_I)" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "업그레이드(_p)" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "변경 사항" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "업데이트" @@ -1175,12 +1117,10 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"우분투의 사용자 경험을 개선하기 위해 인기 경연에 참여해 주십시오. 그러면 " -"설치된 소프트웨어의 목록과 사용하는 빈도를 수집하여 우분투 프로젝트로 일주일" -"에 한번씩 익명으로 전송합니다.\n" +"우분투의 사용자 경험을 개선하기 위해 인기 경연에 참여해 주십시오. 그러면 설치된 소프트웨어의 목록과 사용하는 빈도를 수집하여 " +"우분투 프로젝트로 일주일에 한번씩 익명으로 전송합니다.\n" "\n" -"그 결과는 인기있는 프로그램의 지원을 개선하고 검색 결과에서 프로그램의 순위" -"를 매기는데 사용합니다." +"그 결과는 인기있는 프로그램의 지원을 개선하고 검색 결과에서 프로그램의 순위를 매기는데 사용합니다." #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" @@ -1268,8 +1208,7 @@ msgid "" msgstr "" "이용할 수 있는 소프트웨어에 대한 정보가 오래되었습니다.\n" "\n" -"새로 추가하거나 변경한 소스로부터 소프트웨어를 설치하거나 업데이트하려면, 이" -"용할 수 있는 소프트웨어에 대한 정보를 다시 읽어야 합니다.\n" +"새로 추가하거나 변경한 소스로부터 소프트웨어를 설치하거나 업데이트하려면, 이용할 수 있는 소프트웨어에 대한 정보를 다시 읽어야 합니다.\n" "\n" "계속하기 위해서는 인터넷 연결이 필요합니다." @@ -1301,11 +1240,10 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"추가하고자 하는 소스 저장소의 APT 줄을 완전히 입력하십시오.\n" +"추가하고자 하는 소스 저장소의 APT 줄을 완전히 입력하십시오.\n" "\n" -"APT 줄은 다음 예와 같이 채널의 종류, 위치, 구성요소를 포함합니다. \"deb " -"http://ftp.debian.org sarge main\"" +"APT 줄은 다음 예와 같이 채널의 종류, 위치, 구성요소를 포함합니다. \"deb http://ftp.debian.org " +"sarge main\"" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1347,8 +1285,7 @@ msgstr "업데이트 관리자" msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." -msgstr "" -"현재 배포판에 새로운 버전이 있어서 업그레이드가 가능한지 자동으로 확인합니다." +msgstr "현재 배포판에 새로운 버전이 있어서 업그레이드가 가능한지 자동으로 확인합니다." #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" @@ -1360,8 +1297,8 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"자동 업데이트 확인 기능을 사용하지 않으면, 채널 목록을 수동으로 다시 읽어야 " -"합니다. 이 옵션은 이 경우에 알림 기능이 나타나지 않도록 합니다." +"자동 업데이트 확인 기능을 사용하지 않으면, 채널 목록을 수동으로 다시 읽어야 합니다. 이 옵션은 이 경우에 알림 기능이 나타나지 않도록 " +"합니다." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1389,246 +1326,199 @@ msgstr "창 크기" msgid "Configure the sources for installable software and updates" msgstr "설치할 수 있는 소프트웨어와 업데이트를 위한 소스를 설정" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "우분투 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "커뮤니티에서 관리" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "장치의 독점 드라이버" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "제한된 소프트웨어" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "우분투 6.10 'Edgy Eft' 씨디롬" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "우분투 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "커뮤니티에서 관리 (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "커뮤니티에서 관리하는 오픈 소스 소프트웨어" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "비자유 드라이버" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "장치의 독점 드라이버 " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "제한된 소프트웨어 (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "우분투 6.06 LTS 'Dapper Drake' 씨디롬" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backport 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "우분투 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "우분투 5.10 'Breezy Badger' 씨디롬" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "우분투 5.10 보안 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "우분투 5.10 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "우분투 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "우분투 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "우분투 5.04 'Hoary Hedgehog' 씨디롬" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "공식적으로 지원함" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "우분투 5.04 보안 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "우분투 5.04 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "우분투 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "우분투 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "커뮤니티에서 관리 (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "비자유 (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "우분투 4.10 'Warty Warthog' 씨디롬" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "더 이상 공식적으로 지원하지 않음" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "저작권이 제한됨" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "우분투 4.10 보안 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "우분투 4.10 업데이트" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "우분투 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "데비안 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "데비안 3.1 \"Sarge\" 보안 업데이트" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "데비안 \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "데비안 \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG 호환이 되지만 비자유 소프트웨어에 의존하는 소프트웨어" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG와 호환이 되지 않는 소프트웨어" #~ msgid "" -#~ "You will loose all customizations, that have been made by yourself or by " -#~ "a script, if you replace the file by its latest version." -#~ msgstr "" -#~ "파일을 최신 버전으로 교체할 경우 직접 또는 스크립트에 의해서 바뀐 모든 것" -#~ "을 잃어버릴 것입니다." +#~ "You will loose all customizations, that have been made by yourself or by a " +#~ "script, if you replace the file by its latest version." +#~ msgstr "파일을 최신 버전으로 교체할 경우 직접 또는 스크립트에 의해서 바뀐 모든 것을 잃어버릴 것입니다." +#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a " -#~ "1Mbit DSL connection" -#~ msgstr "" -#~ "이것을 다운로드하려면 56k 모뎀으로는 약 %s이(가) 걸리고 1Mbit DSL 연결로" -#~ "는 약 %s이(가) 걸립니다." +#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " +#~ "DSL connection" +#~ msgstr "이것을 다운로드하려면 56k 모뎀으로는 약 %s이(가) 걸리고 1Mbit DSL 연결로는 약 %s이(가) 걸립니다." #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "변경 사항 목록이 아직 없습니다. 잠시 후 다시 시도해 주십시오." @@ -1636,12 +1526,10 @@ msgstr "DFSG와 호환이 되지 않는 소프트웨어" #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " #~ "connection." -#~ msgstr "" -#~ "변경 사항 목록을 다운로드하는데 실패했습니다. 인터넷 연결을 확인해 주십시" -#~ "오." +#~ msgstr "변경 사항 목록을 다운로드하는데 실패했습니다. 인터넷 연결을 확인해 주십시오." #~ msgid "By Canonical supported Open Source software" #~ msgstr "Canonical이 지원하는 오픈 소스 소프트웨어" #~ msgid "By copyright or legal issues restricted software" -#~ msgstr "저작권나 법적 문제가 제한된 소프트웨어" +#~ msgstr "저작권나 법적 문제가 제한된 소프트웨어" \ No newline at end of file diff --git a/po/ku.po b/po/ku.po index 54e03ec6..316cd309 100644 --- a/po/ku.po +++ b/po/ku.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-04 06:52+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: ElîxanLoran \n" "Language-Team: Kurdish \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Piştî mehekê" msgid "After %s days" msgstr "Piştî %s roj" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "%s rojanekirin" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Pêşkêşkera Mak" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,7 +122,8 @@ msgid "Error removing the key" msgstr "Di dema rakirina mifteyan de çewtî" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Mifteya ku te hilbijart nehate rakirin. Ji kerema xwe re vê yekê weke " "çewtiyekê ragihîne." @@ -170,7 +168,6 @@ msgstr "Pakêtên agahiyan yên pêwist nayên rojanekirin" msgid "A essential package would have to be removed" msgstr "Divê pakêteke pêwist jê were rakirin" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Rojanekirin nikaribû were hesabkirin" @@ -184,10 +181,9 @@ msgid "" msgstr "" "Dema bilindkirin hesab dikir çewtiyeke ku nayê veçirandin derkete holê.\n" "\n" -"Ji kerema xwe re vê çewtiyê bo 'update-manager' ragihîne, pelgehên ku li /" -"var/log/dist-upgrade/ de ye jî li rapora çewtiyan zêde bike." +"Ji kerema xwe re vê çewtiyê bo 'update-manager' ragihîne, pelgehên ku li " +"/var/log/dist-upgrade/ de ye jî li rapora çewtiyan zêde bike." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Di piştrastkirina çend paketan de çewtî derket" @@ -214,7 +210,6 @@ msgstr "" "Pakêta pêwist nehate barkirin. Ji kerema xwe re vê yekê weke çewtiyekê " "ragihîne. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Pakêta-meta nehate kifşkirin" @@ -296,7 +291,6 @@ msgstr "" "rojanekirin.\n" "Heke tu bibêjî 'Na' wê rojanekirin betal bibe." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Bile çavkaniyên rawêjî pêk bên?" @@ -365,7 +359,6 @@ msgstr "" "bike. Çopa xwe vala bikin û bi 'sudo apt-get clean' pakêtên derbasdar yên " "sazkirinên berê rake." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Tu dixwazî dest bi bilindkirinê bikî?" @@ -437,7 +430,6 @@ msgstr "" "Di dema paqijkirinê de hin pirsgirêk derketin. Ji bo agahiyan ji kerema xwe " "re li peyama jêr binihêre. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Vedigere rewşa pergala orjînal" @@ -448,7 +440,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -456,7 +447,7 @@ msgstr "Bireveberiya paketan tê kontrol kirin" #: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "" +msgstr "Amadekrinên nûjenkirinê biserneket" #: ../DistUpgrade/DistUpgradeControler.py:672 msgid "" @@ -482,8 +473,8 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Piştî ku agahiyê te yên pakêtê hate rojanekirin, yek ji wan pakêtên girîng '%" -"s' êdî nayê dîtin.\n" +"Piştî ku agahiyê te yên pakêtê hate rojanekirin, yek ji wan pakêtên girîng " +"'%s' êdî nayê dîtin.\n" "Dibe ku ev çewtiyeke girîng e, ji kerema xwe re bo pakêta 'update-manager' " "vê çewtiyê ragihîne. Dosyeyên ku li /var/log/dist-upgrade/ de ye jî li " "peyama çewtiyê zêde bike." @@ -504,7 +495,6 @@ msgstr "Li nivîsbariya kevin tê gerandin" msgid "System upgrade is complete." msgstr "Bilindkirina sîstemê temam bû." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -518,10 +508,10 @@ msgstr "Rojanekirin temam bû" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 #, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "" +msgstr "Dosyan dadixe %li daxistin ji %li di %s/s de" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Nêzîka %s ma" @@ -529,11 +519,10 @@ msgstr "Nêzîka %s ma" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 #, python-format msgid "Fetching file %li of %li" -msgstr "" +msgstr "Dosyan dadixe %li daxistin ji %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Guherandin tê bi kar anîn" @@ -552,8 +541,7 @@ msgstr "" "çewtiyê ragihîne. Dosyeyên ku li /var/log/dist-upgrade/ de ye jî li peyama " "xwe ya çewtiyê zêde bike." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -562,25 +550,25 @@ msgstr "" "Pelgeha veavakirinan ya hatiye taybetkirin ya\n" "'%s' bila were guherandin?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Fermana 'diff' nehatiye dîtin" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Çewtiyeke giran derket" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Ji kerema xwe re vê çewtiyê ragihîne.Dosyeyên ku li /var/log/dist-upgrade/ " @@ -590,30 +578,29 @@ msgstr "" "hate tomarkirin." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "%s paket dê were rakirin." -msgstr[1] "%s paket dê werin rakirin." +msgstr[0] "%d pakêt dê were rakirin." +msgstr[1] "%d pakêt dê werine rakirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "%s paket dê were sazkirin" -msgstr[1] "%s paket dê werin sazkirin" +msgstr[0] "Dê %d pakêtên nû were sazkirin." +msgstr[1] "Dê %d pakêtên nû werine sazkirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s paket dê were bilindkirin." -msgstr[1] "%s paket dê werin bilindkirin." +msgstr[0] "Dê %d pakêt were bilindkirin" +msgstr[1] "Dê %d pakêt werine bilindkirin" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -623,7 +610,7 @@ msgstr "" "\n" "Pêwîst e tu bi tevahî %s daxî. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -631,17 +618,16 @@ msgstr "" "Daxistin û sazkirina bilindkirinê dibe ku bi saetan bidome û dû re jî tu " "nikare betal bike." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "Ji bo ku dane winda nebin hemû sepan û pelgeyên ku vekirî ne bigire" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sîstema te rojane ye" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -649,17 +635,17 @@ msgstr "" "Ji bo pergala te bilindkirin tuneye. Karê bilindkirinê wê a niha were " "betalkirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "%s rake" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "%s saz bike" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "%s bilind bike" @@ -685,7 +671,6 @@ msgid "%li seconds" msgstr "%li çirke" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -706,7 +691,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -726,8 +710,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Ji bo bidawîanîna bilindkirinê pergalê ji nû ve bide destpêkirin" +"Ji bo bidawîanîna bilindkirinê pergalê ji nû ve bide " +"destpêkirin" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -771,17 +755,18 @@ msgstr "Termînal" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "" +msgstr "_Ji nûjenkirinê derkeve" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Bidomîne" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "Bi_parêze" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "Bide _ser" @@ -799,7 +784,7 @@ msgstr "Bilindkirinan _Bidomînî" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "" +msgstr "_Destpêkirina nûjenkirinê" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -817,7 +802,6 @@ msgstr "Nîşeyên weşanê nehate daxistin" msgid "Please check your internet connection." msgstr "Ji kerema xwe girêdana înternetê kontrol bike." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Amûra bilindkirinê nikaribû bimeşîne" @@ -913,30 +897,26 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Rojanekirinên ewlekariyê yên girîng" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Rojanekirinên têne pêşniyarkirin" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Rojanekirinên hatine pêşniyarkirin" #: ../UpdateManager/UpdateManager.py:241 msgid "Backports" -msgstr "" +msgstr "Nivîsbariyên bi paş de şandî" #: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" msgstr "Rojanekirinên dîstrîbusiyonê" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Rojanekirinên din" @@ -958,7 +938,6 @@ msgstr "Yekê Jî _Hilnebijêre" msgid "_Check All" msgstr "Hemûyan _Hilbijêrî" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -984,7 +963,7 @@ msgid "Checking for updates" msgstr "Rojanekirin têne venihartin." #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Guhertoya nû: %s (Mezinahî: %s)" @@ -993,7 +972,6 @@ msgstr "Guhertoya nû: %s (Mezinahî: %s)" msgid "Version %s" msgstr "Guherto %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1018,7 +996,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Weşana belavkariya nû dikare bigihêje '%s'" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Pêrista nivîsbariyê xera bûye" @@ -1031,27 +1008,23 @@ msgid "" msgstr "" "Sazkirin an jî rakirina nivîsbariyê qet ne gengaz e. Ji kerema xwe berî her " "tiştî vê pirsgirêkê bi gerînendeyê pakêtan ya \"Synaptic\" and jî bi fermana " -"\"sudo apt-get install -f\" re di termînalê de çareser bike.\r\n" -"\r\n" +"\"sudo apt-get install -f\" re di termînalê de çareser bike. \n" +" \n" "— By ElîxanLoran on 2006-08-25 06:29:14 UTC (2 more)" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ne yek jî" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1074,9 +1047,8 @@ msgid "Not all updates can be installed" msgstr "Di lênihertina CDyê de çewtî" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Dest bi bilindkirinê were kirin?" +msgstr "Rêveberê rojanekirinê tê destpêkirin" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1156,10 +1128,15 @@ msgid "_Install Updates" msgstr "Rojanekirinan _Saz bike" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "_Bilindkirin" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "guhertin" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "rojanekirin" @@ -1233,9 +1210,8 @@ msgstr "Mifteyên peşdanasînî yên belavkariya te paş de vedigerîne" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Taybetmendiyên Nivîsbariyê" +msgstr "Çavkaniyên Nivîsbariyê" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" @@ -1278,6 +1254,13 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" +"Agahiyên nivîsbariyê yên mevcûd ne rojane ye\n" +"\n" +"Ji bo ku tu karibî ji çavkaniyên ku nû lê hatine barkirin yan jî yên " +"guherîne nivîsbarî û rojanekirinan bar bike divê tu agahiyên nivîsbariyê " +"dîsa bar bike.\n" +"\n" +"Ji bo domandinê girêdaneke înternetê ya dixebite pêwist e." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" @@ -1389,240 +1372,192 @@ msgstr "Mezinahiyê paceyê" msgid "Configure the sources for installable software and updates" msgstr "Ji bo nivîsbarî û rojanekirinên têne sazkirin çavkaniyan veava bike" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Yên ji aliyê komekê ber çav hatiye derbaskirin" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "Ji bo cîhazan ajokerên ku çavkaniyên wan girtî ne" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Neazad (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdroma Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" -msgstr "" +msgstr "Yên ji aliyê koman lê hatine nihêrtin" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +"Nivîsbariyên Kodên Çavkaniyên Azad yên ji aliyê koman lê hatine nihêrtin" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Neazad (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Ji bo cîhazan ajokarên xwedî-bawername " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Neazad (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "Nivîsbariya bi mafên weşan û belavkirinê sînor kirî" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdroma Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Rojanekirinên paş de hatine kişandin" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdroma Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 -#, fuzzy msgid "Ubuntu 5.10 Security Updates" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Rojanekirinên Ewlekariyê yên Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 -#, fuzzy msgid "Ubuntu 5.10 Updates" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Rojanekirina Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" -msgstr "" +msgstr "Rojanekirinên Paş de Hatine Kişandin yên Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "Cdroma Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Bi piştgiriya fermî" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Rojanekirinên Ewlekariyên yên Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Rojanekirinên Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" -msgstr "" +msgstr "Rojanekirinên Paş de Hatine Kişandin yên Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Yên ji aliyê koman ve lê tê nihêrîn (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ne-azad (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Cdroma Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Bi piştgirtiya fermî" +msgstr "Êdi bi awayekî fermî nayê destekkirin" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Mafê kopîkrinê yê sînorkirî" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Rojanekirinên Ubuntu 4.10 yên Ewlekariyê" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Rojanekirinên Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" -msgstr "" +msgstr "Ubuntu 4.10 nivîsbariyên bi paş de kişandî (Backports)" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Rojanekirinên Ewlekariyê" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "" +msgstr "DFSG-nivîsbariya hevgirtî ya ne azad" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "nivîsbariya hevgirtî ya ne li gorî -DFSG" #~ msgid "Cancel _Download" #~ msgstr "Daxistinê _betal bike" @@ -1650,4 +1585,4 @@ msgstr "" #~ msgstr "Kanal" #~ msgid " " -#~ msgstr " " +#~ msgstr " " \ No newline at end of file diff --git a/po/lt.po b/po/lt.po index d1e1d4d6..aa34ab8f 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:39+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Mantas Kriaučiūnas \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" -"100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -55,15 +55,13 @@ msgstr "Po mėnesio" msgid "After %s days" msgstr "Po %s dienų" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" -msgstr "Diegiami atnaujinimai" +msgstr "%s atnaujinimai" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -101,11 +98,11 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" -msgstr "" +msgstr "(Programų pradinis kodas)" #: ../SoftwareProperties/SoftwareProperties.py:720 msgid "Source Code" -msgstr "" +msgstr "Programų pradinis kodas" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" @@ -124,12 +121,13 @@ msgid "Error removing the key" msgstr "Šalinant raktą įvyko klaida" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Jūsų pasirinkto rakto pašalinti nepavyko. Praneškite apie tai kaip klaidą." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -168,7 +166,6 @@ msgstr "Negalima atnaujinti reikiamų metapaketų" msgid "A essential package would have to be removed" msgstr "Turėtų būti pašalintas esminis paketas" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nepavyko paskaičiuoti atnaujinimo" @@ -184,7 +181,6 @@ msgstr "" "Iškilo neišsprendžiama problema apskaičiuojant atnaujinimą. Praneškite apie " "tai kaip klaidą." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Klaida autentikuojant keletą paketų" @@ -210,7 +206,6 @@ msgid "" msgstr "" "Buvo neįmanoma įdiegti reikalingo paketo. Praneškite apie tai, kaip klaidą. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 #, fuzzy msgid "Can't guess meta-package" @@ -279,10 +274,9 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" -msgstr "Ar sukurti numatytųjų šaltinių sąrašą?" +msgstr "Ar sukurti numatytųjų programinės įrangos saugyklų sąrašą?" #: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format @@ -307,7 +301,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" -msgstr "Trečiųjų šalių šaltiniai išjungti" +msgstr "Trečiųjų šalių programinės įrangos saugyklos išjungtos" #: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy @@ -344,7 +338,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "At norite pradėti atnaujinimą?" @@ -420,7 +413,6 @@ msgstr "" "Išvalymo metu iškilo problema. Daugiau informacijos rasite žemiau esančiame " "pranešime. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Perkraunama sistema" @@ -431,7 +423,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -461,7 +452,7 @@ msgid "Invalid package information" msgstr "Netinkama paketo informacija" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy, python-format +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -489,7 +480,6 @@ msgstr "Ieškoma pasenusios programinės įrangos" msgid "System upgrade is complete." msgstr "Sistemos atnaujinimas baigtas." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -501,24 +491,23 @@ msgid "Fetching is complete" msgstr "Atnaujinimas užbaigtas" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Atsiunčiamas failas %li iš %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Pritaikomi pakeitimai" @@ -534,9 +523,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -544,62 +532,61 @@ msgstr "" "Ar pakeisti konfigūracijos bylą\n" "„%s“?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Nerasta komanda „diff“" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Įvyko lemtinga klaida" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Praneškite apie tai kaip klaidą ir prie pranešimo pridėkite „/var/log/dist-" "upgrade.log“ bei „/var/log/dist-upgrade-apt.log“ bylas. Atnaujinimas dabar " "bus nutrauktas.\n" -"Jūsų originalioji „sources.list“ byla buvo išsaugota „/etc/apt/sources.list." -"distUpgrade“ aplanke." +"Jūsų originalioji „sources.list“ byla buvo išsaugota " +"„/etc/apt/sources.list.distUpgrade“ aplanke." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Bus pašalintas %s paketas." msgstr[1] "Bus pašalinti %s paketai." msgstr[2] "Bus pašalinta %s paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Bus įdiegtas %s naujas paketas." msgstr[1] "Bus įdiegti %s nauji paketai." msgstr[2] "Bus įdiegta %s naujų paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Bus atnaujintas %s paketas." msgstr[1] "Bus atnaujinti %s paketai." msgstr[2] "Bus atnaujinta %s paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -609,7 +596,7 @@ msgstr "" "\n" "Turite atsisiųsti viso %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -617,35 +604,34 @@ msgid "" msgstr "" "Atnaujinimas gali užtrukti keletą valandų ir vėliau jo negalima atšaukti." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Norint išvengti duomenų praradimo turite užverti visas atvertas programas ir " "dokumentus." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Jūsų sistema atnaujinta" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Pašalinti %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Įdiegti %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Atnaujinti %s" @@ -671,7 +657,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -693,7 +678,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -714,8 +698,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Norėdami užbaigti atnaujinimą paleiskite operacijų sistemą iš naujo" +"Norėdami užbaigti atnaujinimą paleiskite operacijų sistemą iš " +"naujo" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -772,6 +756,7 @@ msgid "_Keep" msgstr "_Palikti" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "Pa_keisti" @@ -809,7 +794,6 @@ msgstr "Nepavyko atsiųsti laidos informacijos" msgid "Please check your internet connection." msgstr "Patikrinkite savo Interneto ryšį." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nepavyko paleisti atnaujinimo priemonės" @@ -883,66 +867,58 @@ msgstr "" "serverio problema. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" +msgstr "Atsiunčiamas failas %(current)li iš %(total)li, %(speed)s/s greičiu" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" +msgstr "Atsiunčiamas failas %(current)li iš %(total)li" #: ../UpdateManager/UpdateManager.py:206 -#, fuzzy msgid "The list of changes is not available" -msgstr "Pakeitimų sąrašas kol kas neprieinamas. Pabandykite vėliau." +msgstr "Pakeitimų sąrašas neprieinamas" #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "Pakeitimų sąrašas kol kas neprieinamas. Pabandykite vėliau." +msgstr "" +"Pakeitimų sąrašas kol kas neprieinamas.\n" +"Pabandykite vėliau." #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "Nepavyko atsiųsti pakeitimų sąrašo. Patikrinkite Interneto ryšį." +msgstr "" +"Nepavyko atsiųsti pakeitimų sąrašo. \n" +"Patikrinkite Interneto ryšį." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 -#, fuzzy msgid "Important security updates" -msgstr "Ubuntu 5.10 saugumo atnaujinimai" +msgstr "Svarbūs saugumo atnaujinimai" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "Rekomenduojami atnaujinimai" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 -#, fuzzy msgid "Proposed updates" -msgstr "Diegiami atnaujinimai" +msgstr "Testuojami atnaujinimai" #: ../UpdateManager/UpdateManager.py:241 -#, fuzzy msgid "Backports" -msgstr "Ubuntu 5.10 atnaujinimai" +msgstr "Naujos programos" #: ../UpdateManager/UpdateManager.py:242 -#, fuzzy msgid "Distribution updates" -msgstr "_Tęsti atnaujinimą" +msgstr "Distributyvo atnaujinimai" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 -#, fuzzy msgid "Other updates" -msgstr "Diegiami atnaujinimai" +msgstr "Kiti atnaujinimai" #: ../UpdateManager/UpdateManager.py:478 #, python-format @@ -963,14 +939,13 @@ msgstr "" msgid "_Check All" msgstr "_Patikrinti" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Atsiuntimo dydis: %s" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy, python-format +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Rodyti ir įdiegti galimus atnaujinimus" @@ -986,21 +961,19 @@ msgid "Update is complete" msgstr "Atnaujinimas užbaigtas" #: ../UpdateManager/UpdateManager.py:719 -#, fuzzy msgid "Checking for updates" -msgstr "Diegiami atnaujinimai" +msgstr "Ieškoma atnaujinimų" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Nauja versija: %s (Dydis: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, python-format msgid "Version %s" -msgstr "Versija %s:" +msgstr "Versija %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1008,7 +981,7 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" -msgstr "Jūsų distribucija daugiau nebepalaikoma" +msgstr "Jūsų distributyvas daugiau nebepalaikomas" #: ../UpdateManager/UpdateManager.py:844 msgid "" @@ -1023,9 +996,8 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "Nauja distributyvo versija '%s' yra išleista" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Programinės įrangos turinys sugadintas" @@ -1040,23 +1012,19 @@ msgstr "" "pasinaudokite „Synaptic“ arba terminale įvykdykite komandą „sudo apt-get " "install -f“, norėdami ištaisyti šią problemą." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1083,8 +1051,8 @@ msgstr "" #, fuzzy msgid "Not all updates can be installed" msgstr "" -"Klaida skanuojant CD\n" -"\n" +"Klaida skanuojant CD \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1168,10 +1136,15 @@ msgstr "Į_diegti atnaujinimus" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "At_naujinti" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Pakeitimai" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1426,253 +1399,197 @@ msgstr "" "Nustatykite programinės įrangos įdiegimo šaltinius bei atnaujinimus iš " "interneto" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 atnaujinimai" +msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Prižiūrima bendruomenės (Universe)" +msgstr "Prižiūrima bendruomenės" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Ne Laisva (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "CD diskas su Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 „Dapper Drake“" +msgstr "Ubuntu 6.06 LTS „Dapper Drake“" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Prižiūrima bendruomenės (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Prižiūrima bendruomenės (Universe)" +msgstr "Prižiūrima bendruomenės (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Prižiūrima bendruomenės (Universe)" +msgstr "Bendruomenės prižiūrima laisva programinė įranga" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Ne Laisva (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "Nuosavybinės įrenginių valdyklės " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Ne Laisva (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 „Dapper Drake“" +msgstr "CD diskas su Ubuntu 6.06 LTS „Dapper Drake“" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Naujos ir atnaujintos programos" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 „Breezy Badger“" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 „Breezy Badger“" +msgstr "CD diskas su Ubuntu 5.10 „Breezy Badger“" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" -msgstr "Ubuntu 5.10 atnaujinimai" +msgstr "Naujos programos Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.10 „Breezy Badger“" +msgstr "Ubuntu 5.04 „Hoary Hedgehog“" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "CD diskas Ubuntu 5.04 „Hoary Hedgehog“" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficialiai palaikoma" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 saugumo atnaujinimai" +msgstr "Ubuntu 5.04 saugumo atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 atnaujinimai" +msgstr "Ubuntu 5.04 atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 atnaujinimai" +msgstr "Naujos programos Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 „Breezy Badger“" +msgstr "Ubuntu 4.10 „Warty Warthog“" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Prižiūrima bendruomenės (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ne Laisva (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "CD diskas su Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Kai kuri programinė įranga nebėra oficialiai palaikoma" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Apribotos autorinės teisės" -#. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 5.10 saugumo atnaujinimai" +msgstr "Ubuntu 4.10 saugumo atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 5.10 atnaujinimai" +msgstr "Ubuntu 4.10 atnaujinimai" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 atnaujinimai" +msgstr "Naujos programos Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 „Sarge“" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 „Sarge“ saugumo atnaujinimai" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian „Etch“ (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.lt.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian „Sid“ (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "Su DFSG suderinama programinė įranga su Ne Laisvomis priklausomybėmis" +msgstr "" +"Su DFSG suderinama programinė įranga su Ne Laisvomis priklausomybėmis" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Su DFSG nesuderinama programinė įranga" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Atsiunčiamas failas %li iš %li, nežinomu greičiu" @@ -1696,8 +1613,7 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Atnaujinama į Ubuntu 6.06 LTS" +#~ "Atnaujinama į Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1719,21 +1635,21 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgstr "" #~ "Ieškoma galimų atnaujinimų\n" #~ "\n" -#~ "Programinės įrangos atnaujinimai gali ištaisyti klaidas, pašalinti " -#~ "saugumo spragas bei suteikti naujas funkcijas." +#~ "Programinės įrangos atnaujinimai gali ištaisyti klaidas, pašalinti saugumo " +#~ "spragas bei suteikti naujas funkcijas." #~ msgid "Oficially supported" #~ msgstr "Prižiūrima oficialiai" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Kai kuriems atnaujinimams reikia pašalinti programinę įrangą. Naudokitės " #~ "funkcija „Žymėti visus atnaujinimus“ paketų tvarkyklėje „Synaptic­“ arba " -#~ "terminale įvykdykite komandą „sudo apt-get dist-upgrade“, kad Jūsų " -#~ "sistema būtų visiškai atnaujinta." +#~ "terminale įvykdykite komandą „sudo apt-get dist-upgrade“, kad Jūsų sistema " +#~ "būtų visiškai atnaujinta." #~ msgid "The following updates will be skipped:" #~ msgstr "Šie atnaujinimai nebus įdiegti:" @@ -1811,8 +1727,8 @@ msgstr "Su DFSG nesuderinama programinė įranga" #, fuzzy #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Skanuojant Jūsų saugyklos informaciją nebuvo rasta tinkamo atnaujinimo " #~ "įrašo.\n" @@ -1824,19 +1740,17 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgstr "Skyriai:" #~ msgid "" -#~ "You need to manually reload the latest information about updates\n" +#~ "You need to manually reload the latest information about " +#~ "updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" -#~ "Jūs turite patys įkelti naujausią informaciją apie atnaujinimus\n" +#~ "Jūs turite patys įkelti naujausią informaciją apie " +#~ "atnaujinimus\n" #~ "\n" #~ "Jūsų sistema automatiškai neieško atnaujinimų. Šią elgseną galite " -#~ "konfigūruoti „Sistema“ -> „Administravimas“ -> „Programinės įrangos " -#~ "savybės“." +#~ "konfigūruoti „Sistema“ -> „Administravimas“ -> „Programinės įrangos savybės“." #~ msgid "Reload the latest information about updates" -#~ msgstr "Įkelti naujausią informaciją apie atnaujinimus" +#~ msgstr "Įkelti naujausią informaciją apie atnaujinimus" \ No newline at end of file diff --git a/po/lv.po b/po/lv.po index 71224185..f1bfe622 100644 --- a/po/lv.po +++ b/po/lv.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: lp-upd-manager-lv\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 19:12+0000\n" -"Last-Translator: mixat \n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-09-05 20:00+0000\n" +"Last-Translator: Raivis Dejus \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,7 +58,6 @@ msgstr "Pēc viena mēneša" msgid "After %s days" msgstr "Pēc %s dienām" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -66,7 +65,6 @@ msgstr "%s atjauninājumi" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -76,7 +74,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Galvenais serveris" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -126,7 +123,8 @@ msgid "Error removing the key" msgstr "Kļūda aizvācot atslēgu" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Jūsu izvēlēto atslēgu nevar noņemt. Lūdzu, ziņojiet par šo kļūdu." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -163,7 +161,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nevar aprēķināt atjauninājumu" @@ -176,7 +173,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -199,7 +195,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -259,7 +254,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -316,7 +310,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -379,7 +372,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -390,7 +382,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -441,7 +432,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -457,7 +447,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -469,7 +459,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -485,39 +474,37 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -525,7 +512,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -533,7 +520,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -541,7 +528,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -549,39 +536,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -607,7 +593,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -627,7 +612,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -698,6 +682,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Aizvietot" @@ -733,7 +718,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -823,17 +807,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -846,7 +827,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -868,7 +848,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -904,7 +883,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -926,7 +904,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -938,23 +915,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nekas" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1051,10 +1024,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1278,232 +1255,187 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiāli atbalstītie" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Sabiedrības uzturētie (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Maksas (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Saistītie autortiesību" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid "Select _All" -#~ msgstr "Izvēlēties _Visu" +#~ msgstr "Izvēlēties _Visu" \ No newline at end of file diff --git a/po/mk.po b/po/mk.po index c7faea21..880eecd4 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:39+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Арангел Ангов \n" "Language-Team: Macedonian \n" "MIME-Version: 1.0\n" @@ -56,15 +56,13 @@ msgstr "После еден месец" msgid "After %s days" msgstr "После %s дена" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "Инсталирам надградби..." #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -128,7 +125,8 @@ msgid "Error removing the key" msgstr "Грешка при отстранување на клучот" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка." @@ -169,7 +167,6 @@ msgstr "Не може да се надградат потребните мета msgid "A essential package would have to be removed" msgstr "Важен пакет мора да се отстрани" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не може да се одреди надградбата" @@ -185,7 +182,6 @@ msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Грешка при автентикација на некои пакети" @@ -213,7 +209,6 @@ msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не може да се погоди мета пакетот" @@ -281,7 +276,6 @@ msgstr "" "изберете „Да“, ќе ги надградам '%s' до '%s' записи.\n" "Ако изберете „не“, надградбата ќе прекине." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 #, fuzzy msgid "Generate default sources?" @@ -295,8 +289,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"По скенирањето на вашиот 'sources.list' не е пронајден валиден запис за '%" -"s'.\n" +"По скенирањето на вашиот 'sources.list' не е пронајден валиден запис за " +"'%s'.\n" "\n" "Дали треба стандардните записи за '%s' да бидат додадени? Ако изберете „Не“, " "надградувањето ќе прекини." @@ -352,7 +346,6 @@ msgstr "" "на %s. Испразнете го ѓубрето и отстранете ги привремените пакети или " "поранешни инсталации со помош на 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Дали сакате да ја започнете надградбата?" @@ -420,7 +413,6 @@ msgstr "" "Се случи некој проблем при расчистувањето. Видете ја пораката подолу за " "повеќе информации. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -431,7 +423,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy @@ -488,7 +479,6 @@ msgstr "Барам застарен софтвер" msgid "System upgrade is complete." msgstr "Надградбата на системот е завршена." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -504,7 +494,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -516,7 +506,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -533,39 +522,37 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Командата „diff“ не беше пронајдена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Се случи фатална грешка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -573,7 +560,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -581,7 +568,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -589,7 +576,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -597,42 +584,41 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "За да спречите загуба на податоци, затворете ги сите отворени апликации и " "документи." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Вашиот систем е надграден!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Отстрани %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Инсталирај %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Надгради %s" @@ -658,7 +644,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -680,7 +665,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -757,6 +741,7 @@ msgid "_Keep" msgstr "_Чувај" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 #, fuzzy msgid "_Replace" msgstr "Освежи" @@ -793,7 +778,6 @@ msgstr "Не можам да ги преземам белешките за из msgid "Please check your internet connection." msgstr "Ве молам проверете ја Вашата интернет врска." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Не можам да ја извршам алатката за надградба" @@ -897,18 +881,15 @@ msgstr "" "Не успеав да ги преземам промените. Ве молам проверете дали Вашата интернет " "врска е активна." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Безбедносни надградби за Debian Stable" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -924,7 +905,6 @@ msgstr "Надградби за Убунту 5.10" msgid "Distribution updates" msgstr "Инсталирам надградби..." -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -948,14 +928,13 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 -#, fuzzy, python-format +#, fuzzy msgid "Download size: %s" msgstr "Преземам промени" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy, python-format +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Инсталирам надградби..." @@ -981,11 +960,10 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Верзија %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1003,15 +981,14 @@ msgid "" "information on upgrading." msgstr "" "Повеќе нема да добивате безбедносни поправки или критични надградби. " -"Надградете го системот на понова верзија на Ubuntu Linux. Видете на http://" -"www.ubuntu.com за повеќе информации за надградувањето." +"Надградете го системот на понова верзија на Ubuntu Linux. Видете на " +"http://www.ubuntu.com за повеќе информации за надградувањето." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Новото издание на дистрибуцијата, '%s', е достапно" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Индексот на софтвер е расипан" @@ -1026,23 +1003,19 @@ msgstr "" "менаџерот за пакети Синаптик или прво извршете „sudo apt-ge install -f“ во " "терминал за да го надминете овој проблем." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1143,10 +1116,15 @@ msgstr "Инсталирам надградби..." #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "Н_адгради" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Промени" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1305,8 +1283,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Внесете ја комплетната линија за APT складиштето за да го додадете\n" +"Внесете ја комплетната линија за APT складиштето за да го " +"додадете\n" "\n" "APT линијата го содржи типот, локацијата и содржината на складиштето за на " "пример \"deb http://ftp.debian.org sarge main\". Во документацијата " @@ -1396,253 +1374,209 @@ msgstr "Големината на прозорецот" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Надградби за Убунту 5.10" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Оддржувано од заедницата (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Додатен софтвер" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Надградби за Убунту 5.04" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Оддржувано од заедницата (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Оддржувано од заедницата (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Оддржувано од заедницата (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Неслободно (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Неслободно (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Надградби за Убунту 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "CD диск со Убунту 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD диск со Убунту 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Безбедносни надградби за Убунту 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Надградби за Убунту 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Надградби за Убунту 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD диск со Убунту 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD диск со Убунту 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официјално поддржано" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Безбедносни надградби за Убунту 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Надградби за Убунту 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Надградби за Убунту 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Оддржувано од заедницата (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Неслободно (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Официјално поддржано" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Безбедносни надградби за Убунту 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Надградби за Убунту 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Надградби за Убунту 5.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Безбедносни надградби за Debian Stable" -#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "Debian Testing" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "Debian Non-US (Unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-компатибилен софтвер со неслободни зависности" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Не-DFSG-компатибилен софтвер" @@ -1670,8 +1604,8 @@ msgstr "Не-DFSG-компатибилен софтвер" #, fuzzy #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го " -#~ "ова како бубачка." +#~ "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " +#~ "како бубачка." #, fuzzy #~ msgid "Hide details" @@ -1777,13 +1711,13 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ "Внесете ја комплетната линија за APT складиштето за да го " #~ "додадете\n" #~ "\n" -#~ "APT линијата го содржи типот, локацијата и содржината на складиштето за " -#~ "на пример \"deb http://ftp.debian.org sarge main\". Во " -#~ "документацијата можете да најдете детален опис на синтаксата." +#~ "APT линијата го содржи типот, локацијата и содржината на складиштето за на " +#~ "пример \"deb http://ftp.debian.org sarge main\". Во документацијата " +#~ "можете да најдете детален опис на синтаксата." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Додајте нова датотека со клуч во доверливиот привезок. Осигурајте се дека " #~ "сте го добиле клучот преку безбеден канал и дека му верувате на неговиот " @@ -1817,8 +1751,8 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr "Отстрани го избраниот клуч од доверливиот привезок." #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Врати ги стандардните клучеви на дистрибуцијата. Ова нема да ги смени " #~ "клучевите инсталирани од корисникот." @@ -1853,8 +1787,8 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Достапни надградби\n" #~ "\n" @@ -1946,8 +1880,7 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr[2] "Избравте %s пакети за надградба, со големина од %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Избравте %s од %s пакет за надградба, со големина од %s" #~ msgstr[1] "Избравте %s од %s пакети за надградба, со големина од %s" #~ msgstr[2] "Избравте %s од %s пакети за надградба, со големина од %s" @@ -1962,11 +1895,11 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr "Веќе работи друг менаџер за пакети" #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "Можете да работите само со една апликација за менаџмент на пакети " -#~ "одеднаш. Ве молам прво исклучете ја оваа апликацијата." +#~ "Можете да работите само со една апликација за менаџмент на пакети одеднаш. " +#~ "Ве молам прво исклучете ја оваа апликацијата." #~ msgid "Updating package list..." #~ msgstr "Ја ажурирам листата на пакети..." @@ -1982,17 +1915,17 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Ве молам надградете до понова верзија на Убунту Линукс. Верзијата на која " -#~ "што работите повеќе нема да биде поддржана во смисол на безбедносни " -#~ "поправки и други технички надградби. Ве молам побарајте информации за " -#~ "надградба на http://www.ubuntulinux.org." +#~ "што работите повеќе нема да биде поддржана во смисол на безбедносни поправки " +#~ "и други технички надградби. Ве молам побарајте информации за надградба на " +#~ "http://www.ubuntulinux.org." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Постои ново издание објавено под кодното име '%s'. Ве молам побарајте ги " #~ "инструкциите за надградба на http://www.ubuntulinux.org." @@ -2001,4 +1934,4 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr "Никогаш пак не ја покажувај поракава" #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Не се пронајдени промени, серверот може да не е надграден сеуште." +#~ msgstr "Не се пронајдени промени, серверот може да не е надграден сеуште." \ No newline at end of file diff --git a/po/ms.po b/po/ms.po index b6e8ea95..45a0d648 100644 --- a/po/ms.po +++ b/po/ms.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:40+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: azlinux \n" "Language-Team: Malay \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Selepas satu bulan" msgid "After %s days" msgstr "Selepas %s hari" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,13 +121,14 @@ msgid "Error removing the key" msgstr "Ralat semasa mengeluarkan kekunci" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Kekunci yang anda pilih tidak dapat di keluarkan. Sila laporkan ini sebagai " "ralat pepijat." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -169,7 +167,6 @@ msgstr "Tidak dapat menaikkan taraf pakej-meta yang diperlukan" msgid "A essential package would have to be removed" msgstr "Satu pakej yang perlu terpaksa dikeluarkan" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menjangka penaikkan taraf" @@ -185,7 +182,6 @@ msgstr "" "Satu masaalah yang tidak dapat perbetulkan berlaku ketika menjangkakan taraf " "penaikkan. Sila laporkan ini sebagai ralat pepijat." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Ralat mengesahkan sesetengah pakej" @@ -213,7 +209,6 @@ msgstr "" "Pakej yang diperlukan tidak dapat dipasang. Sila laporkan ini sebagai ralat " "pepijat. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Pakej meta tidak dapat diduga." @@ -284,25 +279,24 @@ msgstr "" "mirror telah lapuk.\n" "\n" "Adakah anda tetap mahu menulis semula fail 'Sources.list' anda? Jika anda " -"memilih 'Ya' disini ianya akan mengemaskini kesemua kemasukan '%s' kepada '%" -"s'.\n" +"memilih 'Ya' disini ianya akan mengemaskini kesemua kemasukan '%s' kepada " +"'%s'.\n" "Jika anda memilih 'tidak' kemaskinian akan dibatalkan." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:267 -#, fuzzy, python-format +#, fuzzy msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Tiada kemasukan yang sah dijumpai untuk '%s' selepas mengimbas 'sources." -"list' anda.\n" +"Tiada kemasukan yang sah dijumpai untuk '%s' selepas mengimbas " +"'sources.list' anda.\n" "\n" "Adakah kemasukan default untuk '%s' perlu ditambah? Jika anda memilih " "'Tidak' kemaskinian akan dibatalkan." @@ -363,7 +357,6 @@ msgstr "" "cakera keras %s anda. Kosong dan padamkan pakej-pakej sementara dari " "pemasangan sebelum ini menggunakan 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Anda mahu mulakan penaikkan taraf?" @@ -436,7 +429,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -447,7 +439,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -501,7 +492,6 @@ msgstr "Mencari perisian yang lapuk" msgid "System upgrade is complete." msgstr "Naiktaraf sistem sempurna." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -517,7 +507,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -529,7 +519,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -545,60 +534,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Satu pakej yang perlu terpaksa dikeluarkan" msgstr[1] "Satu pakej yang perlu terpaksa dikeluarkan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -606,39 +593,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." -msgstr "Untuk mengelakkan kehilangan data tutup kesemua aplikasi dan dokumen." +msgstr "" +"Untuk mengelakkan kehilangan data tutup kesemua aplikasi dan dokumen." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Buang %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Pasang %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Naiktaraf %s" @@ -664,7 +651,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -684,7 +670,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -756,6 +741,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -791,7 +777,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -881,17 +866,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -904,7 +886,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -926,7 +907,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -961,7 +941,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -983,7 +962,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -995,23 +973,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1116,10 +1090,15 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "Naiktaraf %s" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1341,233 +1320,188 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid "Some software no longer officially supported" -#~ msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." +#~ msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." \ No newline at end of file diff --git a/po/nb.po b/po/nb.po index ffbc5c39..578df94b 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:40+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Hans Petter Birkeland \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" @@ -55,15 +55,13 @@ msgstr "Etter en måned" msgid "After %s days" msgstr "Etter %s dager" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "Installerer oppdateringer" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,10 +72,9 @@ msgstr "" msgid "Main server" msgstr "Hovedtjener" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 -#, fuzzy, python-format +#, fuzzy msgid "Server for %s" msgstr "Tjener for %s" @@ -131,11 +128,13 @@ msgid "Error removing the key" msgstr "Kunne ikke fjerne nøkkelen" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." -msgstr "Nøkkelen du valgte kan ikke fjernes. Vennligst rapporter denne feilen." +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" +"Nøkkelen du valgte kan ikke fjernes. Vennligst rapporter denne feilen." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -174,7 +173,6 @@ msgstr "Kan ikke oppgradere nødvendige meta-pakker" msgid "A essential package would have to be removed" msgstr "En nødvendig pakke må fjernes" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunne ikke forberede oppgraderingen" @@ -190,7 +188,6 @@ msgstr "" "Et uløselig problem oppstod ved forberedelse av oppgraderingen. Vennligst " "rapporter dette som en feil." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kunne ikke autentisere noen pakker" @@ -217,7 +214,6 @@ msgid "" msgstr "" "Kunne ikke installere en nødvendig pakke. Vennligst rapporter denne feilen. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan ikke gjette på meta-pakke" @@ -291,7 +287,6 @@ msgstr "" "alle forekomster av '%s' endres til '%s'.\n" "Hvis du velger \"Nei\" vil oppgraderingen avbrytes." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Vil du opprette standardkilder?" @@ -365,7 +360,6 @@ msgstr "" "papirkurven og fjern midlertidige pakker fra tidligere installasjoner ved å " "bruke 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Ønsker du å starte oppgraderingen?" @@ -441,7 +435,6 @@ msgstr "" "Et problem oppstod under opprydningen. Vennligst se meldingen under for mer " "informasjon. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Gjenoppretter systemets originale tilstand" @@ -452,7 +445,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -482,7 +474,7 @@ msgid "Invalid package information" msgstr "Ugyldig pakkeinformasjon" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy, python-format +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -510,7 +502,6 @@ msgstr "Søker etter utdatert programvare" msgid "System upgrade is complete." msgstr "Systemoppgraderingen er fullført" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -522,24 +513,23 @@ msgid "Fetching is complete" msgstr "Oppdateringen er fullført" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Laster ned fil %li av %li med %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, fuzzy msgid "About %s remaining" msgstr "Rundt %li minutter gjenstår" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Laster ned fil %li av %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Lagrer endringer" @@ -555,9 +545,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -565,57 +554,56 @@ msgstr "" "Vil du erstatte konfigurasjonsfilen\n" "'%s?'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Kommandoen 'diff' ble ikke funnet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "En uopprettelig feil oppsto" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Vennligst rapporter feilen og inkluder filene /var/log/dist-upgrade.log og /" -"var/log/dist-upgrade-apt.log i din melding. Oppgraderingen avbrytes nå.\n" +"Vennligst rapporter feilen og inkluder filene /var/log/dist-upgrade.log og " +"/var/log/dist-upgrade-apt.log i din melding. Oppgraderingen avbrytes nå.\n" "Din orginale sources.list ble lagret i /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s pakke vil bli fjernet." msgstr[1] "%s pakker vil bli fjernet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s pakke vil bli installert." msgstr[1] "%s pakker vil bli installert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pakke vil bli oppgradert." msgstr[1] "%s pakker vil bli oppgradert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -625,7 +613,7 @@ msgstr "" "\n" "Du må laste ned totalt %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -634,45 +622,44 @@ msgstr "" "Oppgraderingen kan ta flere timer og kan ikke avbrytes på noe senere " "tidspunkt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "For å forhindre tap av data bør du lukke alle åpne programmer og dokumenter." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Systemet ditt er oppdatert!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Fjern %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Installér %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Oppgradér %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, fuzzy msgid "%li days %li hours %li minutes" msgstr "Rundt %li dager, %li timer og %li minutter gjenstår" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, fuzzy msgid "%li hours %li minutes" msgstr "Rundt %li timer og %li minutter gjenstår" @@ -687,7 +674,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -709,7 +695,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -787,6 +772,7 @@ msgid "_Keep" msgstr "_Ta vare på" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Erstatt" @@ -823,7 +809,6 @@ msgstr "Kunne ikke laste ned utgivelsesnotatene" msgid "Please check your internet connection." msgstr "Vennligst kontrollér internettforbindelsen." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Kunne ikke kjøre oppgraderingsverktøyet" @@ -899,12 +884,12 @@ msgstr "" "nettverket eller med tjeneren. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Laster ned filen %li av %li med %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Laster ned filen %li av %li med %s/s" @@ -929,19 +914,16 @@ msgstr "" "Kunne ikke laste ned listen med endringer. Vennligst kontrollér " "internettilkoblingen." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 #, fuzzy msgid "Recommended updates" msgstr "Anbefalte oppdateringer" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -957,7 +939,6 @@ msgstr "Ubuntu 5.10 Backports" msgid "Distribution updates" msgstr "_Gjenoppta oppgradering" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -982,7 +963,6 @@ msgstr "" msgid "_Check All" msgstr "Sjekk" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1009,16 +989,15 @@ msgid "Checking for updates" msgstr "Sjekker for tilgjengelige oppdateringer" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Ny versjon: %s (Størrelse: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Versjon %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1035,15 +1014,14 @@ msgid "" "information on upgrading." msgstr "" "Du vil ikke lenger motta flere sikkerhetsmessige eller kritiske " -"oppdateringer. Oppgradér til en nyere utgivelse av Ubuntu. Se http://www." -"ubuntu.com for mer informasjon om oppgradering." +"oppdateringer. Oppgradér til en nyere utgivelse av Ubuntu. Se " +"http://www.ubuntu.com for mer informasjon om oppgradering." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Ny versjon \"%s\" er tilgjengelig" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Programvareoversikten er ødelagt." @@ -1058,23 +1036,19 @@ msgstr "" "pakkehåndteringsprogrammet \"Synaptic\" eller kjør kommandoen \"sudo apt-get " "install -f\" i en terminal for å løse denne situasjonen." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ingen" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1185,10 +1159,15 @@ msgstr "_Installerer oppdateringer" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "O_ppgrader" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Endringer" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1445,250 +1424,206 @@ msgstr "Vindusstørrelsen" msgid "Configure the sources for installable software and updates" msgstr "Sett opp programvarekanaler og oppdateringer" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Oppdateringer" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Vedlikeholdt av miljøet (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Bidratt programvare" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Vedlikeholdt av miljøet (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Vedlikeholdt av miljøet (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Vedlikeholdt av miljøet (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Oppdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Offisielt støttet" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Oppdateringer" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Vedlikeholdt av miljøet (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Noe programvare er ikke lenger offisielt støttet" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begrenset opphavsrett" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" sikkerhetsoppdateringer" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatiblel programvare med Non-Free avhengigheter" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Ikke-DFSG-kompatibel programvare" @@ -1697,6 +1632,7 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "US eksport begrenset programvare" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Laster ned fil %li av %li ved ukjent hastighet" @@ -1720,8 +1656,7 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Oppgraderer til Ubuntu 6.06 LTS" +#~ "Oppgraderer til Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1742,25 +1677,26 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "" #~ "Analyserer systemet\n" #~ "\n" -#~ "Programvareoppdateringer reparerer feil, eliminerer sikkerhetsproblemer " -#~ "og gir deg ny funksjonalitet." +#~ "Programvareoppdateringer reparerer feil, eliminerer sikkerhetsproblemer og " +#~ "gir deg ny funksjonalitet." #~ msgid "Oficially supported" #~ msgstr "Offisielt støttet" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Noen oppdateringer krever fjerning av andre programpakker. Bruk " -#~ "funksjonen \"Merk alle oppgraderinger\" i pakkehåndteringsprogrammet " -#~ "\"Synaptic\" eller kjør kommandoen \"sudo apt-get dist-upgrade\" i en " -#~ "terminal for å oppgradere systemet fullstendig." +#~ "Noen oppdateringer krever fjerning av andre programpakker. Bruk funksjonen " +#~ "\"Merk alle oppgraderinger\" i pakkehåndteringsprogrammet \"Synaptic\" eller " +#~ "kjør kommandoen \"sudo apt-get dist-upgrade\" i en terminal for å oppgradere " +#~ "systemet fullstendig." #~ msgid "The following updates will be skipped:" #~ msgstr "Følgende pakker vil ikke bli oppgradert:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Rundt %li sekunder gjenstår" @@ -1836,8 +1772,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "Backports for Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Fant ikke noen gyldig oppføring for oppgradering ved lesing av " #~ "arkivinformasjon.\n" @@ -1849,8 +1785,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "Du må oppdatere pakkelisten for at endringene skal tre i kraft. Vil du " -#~ "gjøre dette nå?" +#~ "Du må oppdatere pakkelisten for at endringene skal tre i kraft. Vil du gjøre " +#~ "dette nå?" #~ msgid "Sections" #~ msgstr "Seksjoner" @@ -1902,13 +1838,13 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "" #~ "Autentiseringsnøkler\n" #~ "\n" -#~ "Du kan legge til eller fjerne autentiseringsnøkler i dette vinduet. " -#~ "Nøkler gjør det mulig å kontrollere integriteten til programvare som blir " -#~ "lastet ned." +#~ "Du kan legge til eller fjerne autentiseringsnøkler i dette vinduet. Nøkler " +#~ "gjør det mulig å kontrollere integriteten til programvare som blir lastet " +#~ "ned." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Legg til en ny nøkkelfil til den sikre nøkkelringen. Vær sikker på at du " #~ "mottok nøkkelen over en sikker kanal og at du stoler på eieren. " @@ -1939,8 +1875,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "Maksimum størrelse i MB:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "Gjenoppret nøklene som kom med distri" #~ msgid "Set _maximum size for the package cache" @@ -1970,13 +1906,13 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Tilgjengelige oppdateringer\n" #~ "\n" -#~ "De følgende pakkene kan oppgraderes. Du kan oppgradere dem ved å trykke " -#~ "på «Installer»-knappen." +#~ "De følgende pakkene kan oppgraderes. Du kan oppgradere dem ved å trykke på " +#~ "«Installer»-knappen." #~ msgid "Cancel downloading the changelog" #~ msgstr "Avbryt nedlasting av endringslogg" @@ -2052,8 +1988,7 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr[1] "Du har valgt alle de %s oppdaterte pakkene, total størrelse %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Du har valgt %s av %s oppdaterte pakker, størrelse %s" #~ msgstr[1] "Du har valgt %s av de %s oppdaterte pakkene, total størrelse %s" @@ -2061,8 +1996,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "Oppdateringene blir tilført." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Du kan bare kjøre et pakkehåndteringsprogram samtidig. Lukk det andre " #~ "programmet først." @@ -2078,19 +2013,19 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Oppgrader til en nyere versjon av Ubuntu Linux. Versjonen du kjører får " -#~ "ikke sikkerhetsoppdateringer eller andre kritiske oppdateringer lenger. " -#~ "Se http://www.ubuntulinux.org for informasjon om oppgradering." +#~ "Oppgrader til en nyere versjon av Ubuntu Linux. Versjonen du kjører får ikke " +#~ "sikkerhetsoppdateringer eller andre kritiske oppdateringer lenger. Se " +#~ "http://www.ubuntulinux.org for informasjon om oppgradering." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Det er en ny versjon av Ubuntu tilgjengelig!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "En ny versjon med kodenavnet «%s» er tilgjengelig. Se http://www. " #~ "ubuntulinux.org/ for instruksjoner om oppgradering." @@ -2123,9 +2058,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" -#~ "Dette betyr at ved siden av å oppgradere pakkene kreves det ekstra " -#~ "handling (som å installere eller fjerne pakker). Bruk «Synaptic» eller " -#~ "«apt-get dist-upgrade» for å løse problemet." +#~ "Dette betyr at ved siden av å oppgradere pakkene kreves det ekstra handling " +#~ "(som å installere eller fjerne pakker). Bruk «Synaptic» eller «apt-get dist-" +#~ "upgrade» for å løse problemet." \ No newline at end of file diff --git a/po/ne.po b/po/ne.po index 2208de09..286556bc 100644 --- a/po/ne.po +++ b/po/ne.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:40+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Jaydeep Bhusal \n" "Language-Team: Nepali \n" "MIME-Version: 1.0\n" @@ -57,15 +57,13 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -75,7 +73,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -128,8 +125,11 @@ msgid "Error removing the key" msgstr "कुञ्जि हटाउँदा त्रुटि" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." -msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" +"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " +"दिनुहोस" #: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format @@ -165,7 +165,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -177,9 +176,10 @@ msgid "" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" +msgstr "" +"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " +"दिनुहोस" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -201,9 +201,10 @@ msgstr "" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस " +msgstr "" +"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " +"दिनुहोस " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -263,7 +264,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -321,7 +321,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -384,7 +383,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -395,7 +393,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy @@ -413,7 +410,9 @@ msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." -msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" +msgstr "" +"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " +"दिनुहोस" #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -450,7 +449,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -466,7 +464,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -478,7 +476,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -495,60 +492,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -556,40 +551,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "तपाइं को प्रणालि अप-टु-डेट छ!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -615,7 +609,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -635,7 +628,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -707,6 +699,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 #, fuzzy msgid "_Replace" msgstr "फेरि लोड गर्नुहोस" @@ -743,7 +736,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -752,7 +744,9 @@ msgstr "" #, fuzzy msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" -msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" +msgstr "" +"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " +"दिनुहोस" #: ../UpdateManager/DistUpgradeFetcher.py:171 #, fuzzy @@ -837,20 +831,18 @@ msgstr "युबन्टुको एउटा नयाँ विमोचन msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस" +msgstr "" +"परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -866,7 +858,6 @@ msgstr "युबन्टु ५.०४ अद्यावधिकहरु" msgid "Distribution updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -890,14 +881,13 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 -#, fuzzy, python-format +#, fuzzy msgid "Download size: %s" msgstr "परिवर्तनहरु डाउनलोड गर्दै" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy, python-format +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "स्तरवृद्धिहरु स्थापना गर्दै" @@ -922,11 +912,10 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "संस्करण %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -949,7 +938,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -961,23 +949,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1076,10 +1060,15 @@ msgstr "स्तरवृद्धिहरु स्थापना गर् #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "स्तरवृद्धि समाप्त" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "परिवर्तनहरु" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1238,11 +1227,12 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"तपाईंले थप्न चाहेको कोषको पुर्ण एपिटि हरफ प्रविष्ट गर्नुहोस\n" +"तपाईंले थप्न चाहेको कोषको पुर्ण एपिटि हरफ प्रविष्ट " +"गर्नुहोस\n" "\n" -"एपिटि हरफमा कोषको प्रकार, स्थान र सामग्री समाहित हुन्छ, उदाहरण को लागि \"deb " -"http://ftp.debian.org sarge main\". तपाईंले मिसिलिकरण मा वाक्य संरचनाको एउटा " -"विस्तृत विवरण पाउन सक्नुहुन्छ" +"एपिटि हरफमा कोषको प्रकार, स्थान र सामग्री समाहित हुन्छ, उदाहरण को लागि " +"\"deb http://ftp.debian.org sarge main\". तपाईंले मिसिलिकरण मा वाक्य " +"संरचनाको एउटा विस्तृत विवरण पाउन सक्नुहुन्छ" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1326,256 +1316,211 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "योगदान गरिएको सफ्टवेयर" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "नन-फ्री (बहुभर्स)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "नन-फ्री (बहुभर्स)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "कार्यालय बाट समर्थित" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "नन-फ्री (बहुभर्स)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "कार्यालय बाट समर्थित" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "निषेधित प्रतिलिपि अधिकार" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "युबन्टु ४.१० सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "डेबियन अचल सुरक्षा अद्यावधिकहरु" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "डेबियन अचल सुरक्षा अद्यावधिकहरु" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1607,7 +1552,8 @@ msgstr "" #, fuzzy #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" +#~ "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " +#~ "दिनुहोस" #, fuzzy #~ msgid "Hide details" @@ -1663,11 +1609,11 @@ msgstr "" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "कोष जानकारी संग परिवर्तनहरु छन. %s मा तपाईंको स्रोतहरु को सुची को ब्याकअप प्रति " -#~ "भण्डारण गरिएको छ. बचत गर्नुहोस. \n" +#~ "कोष जानकारी संग परिवर्तनहरु छन. %s मा तपाईंको स्रोतहरु को सुची को ब्याकअप " +#~ "प्रति भण्डारण गरिएको छ. बचत गर्नुहोस. \n" #~ "\n" -#~ "तपाईको परिवर्तनहरुले प्रभाव लिनको लागि तपाईंले सर्भरहरु बाट प्याकेज सुची फेरि लोड " -#~ "गर्नुपर्दछ. के तपाईं यो अहिले गर्न चाहनुहुन्छ?" +#~ "तपाईको परिवर्तनहरुले प्रभाव लिनको लागि तपाईंले सर्भरहरु बाट प्याकेज सुची " +#~ "फेरि लोड गर्नुपर्दछ. के तपाईं यो अहिले गर्न चाहनुहुन्छ?" #, fuzzy #~ msgid "Sections" @@ -1721,16 +1667,18 @@ msgstr "" #~ msgstr "" #~ "प्रमाणीकरण कुञ्जिहरु\n" #~ "\n" -#~ "तपाईंले यो संवाद भित्र प्रमाणीकरण कुञ्जिहरु थप्न र हटाउन सक्नुहुन्छ. तपाईंले डाउनलोड " -#~ "गरेको सफ्टवेयर को विश्वसनियता रुजु जाँच गर्नको लागि एउटा कुञ्जिले संभव पार्दछ" +#~ "तपाईंले यो संवाद भित्र प्रमाणीकरण कुञ्जिहरु थप्न र हटाउन सक्नुहुन्छ. तपाईंले " +#~ "डाउनलोड गरेको सफ्टवेयर को विश्वसनियता रुजु जाँच गर्नको लागि एउटा कुञ्जिले " +#~ "संभव पार्दछ" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "विश्वास गरिएको कुञ्जिरिंग मा एउटा नयाँ कुञ्जि फाइल थप्नुहोस. विश्वस्त हुनुहोस कि तपाईंले " -#~ "एउटा सुरक्षित माध्यम माथि कुञ्जि प्राप्त गर्नुभयो र तपाईं मालिकलाइ विश्वास गर्नुहुन्छ. " +#~ "विश्वास गरिएको कुञ्जिरिंग मा एउटा नयाँ कुञ्जि फाइल थप्नुहोस. विश्वस्त " +#~ "हुनुहोस कि तपाईंले एउटा सुरक्षित माध्यम माथि कुञ्जि प्राप्त गर्नुभयो र तपाईं " +#~ "मालिकलाइ विश्वास गर्नुहुन्छ. " #, fuzzy #~ msgid "Add repository..." @@ -1759,11 +1707,11 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "वितरण संग शिप गरिएको पुर्वनिर्धारित कुञ्जिहरु पुर्वावस्थामा ल्याउनुहोस. यसले प्रयोगकर्ता " -#~ "स्थापना गरिएको कुञ्जिहरु परिवर्तन गर्दैन" +#~ "वितरण संग शिप गरिएको पुर्वनिर्धारित कुञ्जिहरु पुर्वावस्थामा ल्याउनुहोस. यसले " +#~ "प्रयोगकर्ता स्थापना गरिएको कुञ्जिहरु परिवर्तन गर्दैन" #~ msgid "Set _maximum size for the package cache" #~ msgstr "प्याकेज क्यासको लागि अधिकतम आकार सेट गर्नुहोस" @@ -1790,13 +1738,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "उपलब्ध अद्यावधिकहरु\n" #~ "\n" -#~ "निम्न प्याकेजहरु स्तरवृद्धि गर्न योग्य पाइयो. तपाईंले तिनिहरु लाइ स्थापना बटन प्रयोग " -#~ "गरेर स्तरवृद्धि गर्न सक्नुहुन्छ" +#~ "निम्न प्याकेजहरु स्तरवृद्धि गर्न योग्य पाइयो. तपाईंले तिनिहरु लाइ स्थापना " +#~ "बटन प्रयोग गरेर स्तरवृद्धि गर्न सक्नुहुन्छ" #~ msgid "Cancel downloading the changelog" #~ msgstr "परिवर्तनलग को डाउनलोड रद्द गर्नुहोस" @@ -1843,11 +1791,11 @@ msgstr "" #~ msgstr "स्तरवृद्धिहरु लागु हुँदैछन" #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "तपाईंले उहि समयमा केवल एउटा प्याकेज व्यवस्थापन अनुप्रयोग चलाउन सक्नुहुन्छ.कृपया पहिला " -#~ "यो अन्य अनुप्रयोग बन्द गर्नुहोस" +#~ "तपाईंले उहि समयमा केवल एउटा प्याकेज व्यवस्थापन अनुप्रयोग चलाउन " +#~ "सक्नुहुन्छ.कृपया पहिला यो अन्य अनुप्रयोग बन्द गर्नुहोस" #~ msgid "Updating package list..." #~ msgstr "प्याकेज सुची स्तरवृद्धि गर्दै" @@ -1861,19 +1809,20 @@ msgstr "" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "कृपया युबन्टु लिनक्स को नयाँ संस्करण मा स्तरवृद्धि गर्नुहोस. तपाईंले चलाइरहेको संस्करण ले " -#~ "सुरक्षा स्थिरहरु वा अन्य सूक्ष्म स्तरवृद्धिहरु प्राप्त गर्नेछैन. कृपया स्तरवृद्धि जानकारी को " -#~ "लागि http://www.ubuntulinux.org हेर्नुहोस" +#~ "कृपया युबन्टु लिनक्स को नयाँ संस्करण मा स्तरवृद्धि गर्नुहोस. तपाईंले " +#~ "चलाइरहेको संस्करण ले सुरक्षा स्थिरहरु वा अन्य सूक्ष्म स्तरवृद्धिहरु प्राप्त " +#~ "गर्नेछैन. कृपया स्तरवृद्धि जानकारी को लागि http://www.ubuntulinux.org " +#~ "हेर्नुहोस" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "एउटा नयाँ संकेतनाम '%s' भएको विमोचन उपलब्ध छ. कृपया स्तरवृद्धि निर्देशन को लागि://" -#~ "www.ubuntulinux.org/ हेर्नुहोस." +#~ "एउटा नयाँ संकेतनाम '%s' भएको विमोचन उपलब्ध छ. कृपया स्तरवृद्धि निर्देशन को " +#~ "लागि://www.ubuntulinux.org/ हेर्नुहोस." #~ msgid "Never show this message again" #~ msgstr "यो संदेश फेरि कहिले पनि नदेखाउनुहोस" @@ -1894,8 +1843,8 @@ msgstr "" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "यसको मतलब स्थापना गरिएका प्याकेजहरु को केहि निर्भरताहरु सन्तुष्ट छैनन. कृपया स्थिति " -#~ "ठीक गर्नको लागि \"साइनाप्टिक\" अथवा \"एपिटि-गेट\" प्रयोग गर्नुहोस" +#~ "यसको मतलब स्थापना गरिएका प्याकेजहरु को केहि निर्भरताहरु सन्तुष्ट छैनन. कृपया " +#~ "स्थिति ठीक गर्नको लागि \"साइनाप्टिक\" अथवा \"एपिटि-गेट\" प्रयोग गर्नुहोस" #~ msgid "It is not possible to upgrade all packages." #~ msgstr "सबै प्याकेजहरु स्तरवृद्धि गर्न संभव छैन" @@ -1903,12 +1852,12 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" -#~ "यसको मतलब प्याकेजहरु को उचित स्तरवृद्धि बाहेक केहि अधिक कार्य (जस्तै प्याकेजहरुको स्थापन " -#~ "र विस्थापन) आवश्यक छ. कृपया स्थिति ठीक गर्नको लागि साइनाप्टिक \"स्मार्ट स्तरवृद्धि\" " -#~ "अथवा \"एपिटि-गेट डिस्ट-स्तरवृद्धि\" प्रयोग गर्नुहोस" +#~ "यसको मतलब प्याकेजहरु को उचित स्तरवृद्धि बाहेक केहि अधिक कार्य (जस्तै " +#~ "प्याकेजहरुको स्थापन र विस्थापन) आवश्यक छ. कृपया स्थिति ठीक गर्नको लागि " +#~ "साइनाप्टिक \"स्मार्ट स्तरवृद्धि\" अथवा \"एपिटि-गेट डिस्ट-स्तरवृद्धि\" प्रयोग " +#~ "गर्नुहोस" #~ msgid "Initializing and getting list of updates..." -#~ msgstr "अद्यावधिकहरुको इनिसियलाइज गर्दै र सुची प्राप्त गर्दै" +#~ msgstr "अद्यावधिकहरुको इनिसियलाइज गर्दै र सुची प्राप्त गर्दै" \ No newline at end of file diff --git a/po/nl.po b/po/nl.po index 412ea2ae..d43312ff 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:40+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Tino Meinen \n" "Language-Team: Nederlands \n" "MIME-Version: 1.0\n" @@ -54,15 +54,13 @@ msgstr "Na één maand" msgid "After %s days" msgstr "Na %s dagen" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "%s updates" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Hoofdserver" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -90,15 +87,13 @@ msgstr "Andere servers" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "Software-updates" +msgstr "Softwarekanaal" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 -#, fuzzy msgid "Active" -msgstr "actief" +msgstr "Actief" #: ../SoftwareProperties/SoftwareProperties.py:714 msgid "(Source Code)" @@ -127,20 +122,21 @@ msgid "Error removing the key" msgstr "Fout bij het verwijderen van de sleutel" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "De door u geselecteerde sleutel kon niet verwijderd worden. Gelieve dit als " "fout te melden." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" "%s" msgstr "" -"Fout tijdens het lezen van de cd↵\n" -"↵\n" +"Fout bij het lezen van de cd\n" +"\n" "%s" #: ../SoftwareProperties/SoftwareProperties.py:1096 @@ -172,23 +168,22 @@ msgstr "Kan de vereiste meta-pakketten niet upgraden" msgid "A essential package would have to be removed" msgstr "Een essentieel pakket zou verwijderd worden" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kan de vereisten voor de upgrade niet berekenen" #: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Tijdens het berekenen van de upgrade ontstond er een onoplosbaar probleem. " -"Gelieve dit als fout te rapporteren." +"Tijdens het berekenen van de upgrade ontstond er een onoplosbaar probleem.\n" +"\n" +"Meld deze fout voor het pakket ‘update-manager’ in een foutrapportage en " +"voeg daarbij de bestanden die zich in /var/log/dist-upgrade/ bevinden." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fout bij het bepalen van de echtheid van sommige pakketten" @@ -217,13 +212,11 @@ msgstr "" "Het was niet mogelijk om een vereist pakket te installeren. Gelieve dit als " "fout te rapporteren. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan het meta-pakket niet raden" #: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -232,19 +225,17 @@ msgid "" "before proceeding." msgstr "" "Uw systeem bevat geen van de volgende pakketten:\n" -"ubuntu-desktop, kubuntu-desktop of edubuntu-desktop\n" -"Hierdoor was het niet mogelijk om de versie van Ubuntu te detecteren.\n" -"\n" -"Installeer eerst één van de bovenstaande pakketten met Synaptic of apt-get " +"ubuntu-desktop, kubuntu-desktop of edubuntu-desktop, waardoor het niet " +"mogelijk is om uw versie van Ubuntu te bepalen.\n" +" Installeer eerst één van de bovenstaande pakketten met Synaptic of apt-get " "voordat u verder gaat." #: ../DistUpgrade/DistUpgradeControler.py:74 -#, fuzzy msgid "Failed to add the CD" -msgstr "Ophalen is mislukt" +msgstr "Toevoegen van de cd is mislukt" #: ../DistUpgrade/DistUpgradeControler.py:75 -#, fuzzy, python-format +#, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" @@ -253,7 +244,7 @@ msgid "" "'%s'" msgstr "" "De upgrade is gestopt omdat de cd niet toegevoegd kon worden. Meld dit als " -"een bug als dit een goede Ubuntu-cd is.\n" +"een fout als dit een goede Ubuntu-cd is.\n" "\n" "De foutmelding was:\n" "'%s'" @@ -273,6 +264,11 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" +"De upgrade-procedure kan gebruik maken van een netwerkverbinding om de " +"laatste updates, en pakketten die niet op de huidige cd staan, op te halen\n" +"Wanneer u een snelle internetverbinding heeft of uw toegang tot het netwerk " +"is goedkoop, kunt u hier het beste op ‘Ja’ klikken. Wanneer netwerken duur " +"is voor u kunt u beter ‘Nee’ kiezen." #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -298,7 +294,6 @@ msgstr "" "zal overal '%s' worden vervangen door '%s'.\n" "Wanneer u 'Nee' kiest, zal de update worden geannuleerd." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "De standaard bronnenlijst genereren?" @@ -334,15 +329,14 @@ msgid "Third party sources disabled" msgstr "Pakketbronnen van derden uitgeschakeld" #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" "Enkele pakketbronnen van derden in uw sources.list zijn uitgeschakeld. U " -"kunt ze na de upgrade weer inschakelen via het menu Systeem -> Beheer -> " -"Software-eigenschappen of met het programma Synaptic." +"kunt ze na de upgrade weer inschakelen met het programma ‘software-" +"eigenschappen’ of met ‘synaptic’." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -371,7 +365,6 @@ msgstr "" "vrijgemaakt. Leeg uw prullenbak en verwijder de tijdelijke pakketten van " "vorige installaties via 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Wilt u beginnen met de upgrade?" @@ -381,7 +374,6 @@ msgid "Could not install the upgrades" msgstr "Kon de upgrades niet installeren" #: ../DistUpgrade/DistUpgradeControler.py:461 -#, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -391,7 +383,10 @@ msgid "" msgstr "" "De upgrade wordt nu afgebroken. Uw systeem bevindt zich mogelijk in een " "onbruikbare toestand. Er is een hersteloperatie uitgevoerd (dpkg --configure " -"-a)." +"-a).\n" +"\n" +"Rapporteer deze fout voor het pakket 'update-manager' en voeg hierbij de " +"bestanden die zich in /var/log/dist-upgrade/ bevinden." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -407,10 +402,9 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" -msgstr "" +msgstr "Ondersteuning voor bepaalde toepassingen is beëindigd." #: ../DistUpgrade/DistUpgradeControler.py:517 -#, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -418,11 +412,12 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Deze geïnstalleerde pakketten worden niet meer officieel ondersteund, maar " -"worden door de gemeenschap beheerd ('universe').\n" +"De volgende pakketten worden niet meer door Canonical Ltd. ondersteund. U " +"kunt nog wel ondersteuning krijgen uit de gemeenschap.\n" "\n" -"Indien 'universe' niet geactiveerd is zal bij de volgende stap gevraagd " -"worden om deze pakketten te verwijderen." +"Indien u ‘door de gemeenschap onderhouden software’ (universe) niet " +"geactiveerd heeft zal bij de volgende stap gevraagd worden om deze pakketten " +"te verwijderen." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -448,7 +443,6 @@ msgstr "" "Tijdens het opruimen deed zich een probleem voor. Zie onderstaand bericht " "voor meer informatie. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "De oorspronkelijke toestand wordt hersteld" @@ -456,29 +450,28 @@ msgstr "De oorspronkelijke toestand wordt hersteld" #: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Backport van ‘%s’ ophalen" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Pakkettenbeheer controleren" #: ../DistUpgrade/DistUpgradeControler.py:671 -#, fuzzy msgid "Preparing the upgrade failed" -msgstr "Upgrade voorbereiden" +msgstr "Voorbereiden van de upgrade is mislukt" #: ../DistUpgrade/DistUpgradeControler.py:672 -#, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -"Tijdens het berekenen van de upgrade ontstond er een onoplosbaar probleem. " -"Gelieve dit als fout te rapporteren." +"Het voorbereiden van het systeem voor de upgrade is mislukt. \n" +" \n" +"Meld deze fout voor het pakket ‘update-manager’ in een foutrapportage en " +"voeg daarbij de bestanden die zich in /var/log/dist-upgrade/ bevinden." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -489,7 +482,7 @@ msgid "Invalid package information" msgstr "Ongeldige pakketinformatie" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy, python-format +#, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -497,9 +490,11 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Nu de pakketinformatie bijgewerkt is, kan het essentiële pakket '%s' niet " -"meer gevonden worden.\n" -"Dit is een ernstige fout, die gerapporteerd moet worden." +"Nu uw pakkettenlijst bijgewerkt is, kan het essentiële pakket ‘%s’ niet meer " +"gevonden worden.\n" +"Dit is een ernstige fout, die gemeld moet worden. Rapporteer deze fout voor " +"het pakket ‘update-manager’ en voeg daarbij de bestanden die zich in " +"/var/log/dist-upgrade/ bevinden." #: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" @@ -517,36 +512,33 @@ msgstr "Zoeken naar overbodige software" msgid "System upgrade is complete." msgstr "Systeemupgrade is voltooid." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Plaats '%s' in station '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "De update is voltooid" +msgstr "Het downloaden is voltooid" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Downloaden van bestand %li uit %li met %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, python-format msgid "About %s remaining" -msgstr "Ongeveer %li minuten resterend" +msgstr "Ongeveer %s resterend" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Downloaden van bestand %li uit %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Wijzigingen worden doorgevoerd" @@ -561,70 +553,72 @@ msgid "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +"De upgrade wordt nu afgesloten. Rapporteer deze fout voor het pakket ‘update-" +"manager’ en voeg hierbij de bestanden die zich in /var/log/dist-upgrade/ " +"bevinden." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -"Het configuratiebestand vervangen?\n" +"Het aangepaste configuratiebestand vervangen?\n" "'%s'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Wanneer u besluit dit configuratiebestand te vervangen door een nieuwere " +"versie zullen al uw gemaakte wijzigingen verloren gaan." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "De opdracht 'diff' is niet gevonden" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Er is een ernstige fout ontstaan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Rapporteer dit als fout en voeg de bestanden /var/log/dist-upgrade.log en /" -"var/log/dist-upgrade-apt.log bij in uw foutrapport. De upgrade zal nu " -"worden afgebroken.\n" -"Uw oorspronkelijke sources.list is opgeslagen in /etc/apt/sources.list." -"distUpgrade." +"Meld dit als een fout en voeg de bestanden /var/log/dist-upgrade/main.log en " +"/var/log/dist-upgrade/apt.log bij uw foutrapport. De upgrade zal nu worden " +"afgebroken.\n" +"Uw oorspronkelijke sources.list is opgeslagen in " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "Er zal %s pakket verwijderd worden." -msgstr[1] "Er zullen %s pakketten verwijderd worden." +msgstr[0] "%d pakket zal verwijderd worden." +msgstr[1] "%d pakketten zullen verwijderd worden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "Er zal %s nieuw pakket geïnstalleerd worden." -msgstr[1] "Er zullen %s nieuwe pakketten geïnstalleerd worden." +msgstr[0] "%d nieuw pakket zal geïnstalleerd worden." +msgstr[1] "%d nieuwe pakketten zullen geïnstalleerd worden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "%s pakket zal een upgrade krijgen" -msgstr[1] "%s pakketten zullen een upgrade krijgen." +msgstr[0] "%d pakket zal een upgrade krijgen" +msgstr[1] "%d pakketten zullen een upgrade krijgen." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -634,7 +628,7 @@ msgstr "" "\n" "U moet in totaal %s downloaden. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -643,67 +637,69 @@ msgstr "" "Het upgraden kan enkele uren in beslag nemen en kan tussentijds niet worden " "afgebroken." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Sluit alle openstaande toepassingen en documenten om dataverlies te " "voorkomen." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Uw systeem is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" +"Er zijn geen upgrades beschikbaar voor uw systeem. De upgrade wordt nu " +"afgebroken." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "%s verwijderen" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "%s installeren" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "%s upgraden" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, python-format msgid "%li days %li hours %li minutes" -msgstr "Ongeveer %li dagen %li uur en %li minuten resterend" +msgstr "%li dagen %li uur en %li minuten" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, python-format msgid "%li hours %li minutes" -msgstr "Ongeveer %li uur en %li minuten resterend" +msgstr "%li uur en %li minuten" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minuten" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li seconden" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Deze download duurt ongeveer %s met een 1Mbit DSL-verbinding of %s met een " +"56k modem" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -718,7 +714,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -746,7 +741,7 @@ msgstr "Upgrade starten?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Upgraden van Ubuntu naar versie 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -782,19 +777,19 @@ msgid "Terminal" msgstr "Terminalvenster" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_Upgrade hervatten" +msgstr "Upgrade _annuleren" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Doorgaan" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Behouden" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Vervangen" @@ -811,9 +806,8 @@ msgid "_Resume Upgrade" msgstr "_Upgrade hervatten" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_Upgrade hervatten" +msgstr "Upgrade _starten" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -831,7 +825,6 @@ msgstr "Kon de versie-informatie niet downloaden" msgid "Please check your internet connection." msgstr "Controleer uw internetverbinding." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Kon het upgrade-programma niet uitvoeren" @@ -906,72 +899,58 @@ msgstr "" "met het netwerk of de server. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "Downloaden van bestand %li uit %li met %s/s" +msgstr "Downloaden van bestand %(current)li uit %(total)li met %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "Downloaden van bestand %li uit %li met %s/s" +msgstr "Downloaden van bestand %(current)li uit %(total)li" #: ../UpdateManager/UpdateManager.py:206 -#, fuzzy msgid "The list of changes is not available" -msgstr "" -"Een overzicht van de wijzigingen in dit pakket is nog niet beschikbaar. " -"Probeer het later nog eens." +msgstr "Een overzicht van de wijzigingen is nog niet beschikbaar." #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -"Een overzicht van de wijzigingen in dit pakket is nog niet beschikbaar. " +"Een overzicht van de wijzigingen is nog niet beschikbaar.\n" "Probeer het later nog eens." #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Kon de lijst met wijzigingen niet downloaden. Controleer uw " -"internetverbinding." +"Kon de lijst met wijzigingen niet downloaden. \n" +"Controleer uw internetverbinding." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 -#, fuzzy msgid "Important security updates" -msgstr "Ubuntu 5.10 veiligheidsupdates" +msgstr "Belangrijke veiligheidsupdates" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Aanbevolen updates" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 -#, fuzzy msgid "Proposed updates" -msgstr "Up_dates installeren" +msgstr "Voorgestelde updates" #: ../UpdateManager/UpdateManager.py:241 -#, fuzzy msgid "Backports" -msgstr "Ubuntu 5.10 backports" +msgstr "Backports" #: ../UpdateManager/UpdateManager.py:242 -#, fuzzy msgid "Distribution updates" -msgstr "_Upgrade hervatten" +msgstr "Distributie-updates" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 -#, fuzzy msgid "Other updates" -msgstr "Up_dates installeren" +msgstr "Andere updates" #: ../UpdateManager/UpdateManager.py:478 #, python-format @@ -979,21 +958,18 @@ msgid "Version %s: \n" msgstr "Versie %s: \n" #: ../UpdateManager/UpdateManager.py:539 -#, fuzzy msgid "Downloading list of changes..." -msgstr "Het overzicht van de wijzigingen wordt gedownload..." +msgstr "Een overzicht van de wijzigingen wordt gedownload..." #: ../UpdateManager/UpdateManager.py:566 -#, fuzzy msgid "_Uncheck All" -msgstr "Alles deselecteren" +msgstr "Alles _deselecteren" #: ../UpdateManager/UpdateManager.py:572 #, fuzzy msgid "_Check All" msgstr "_Controleren" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1015,23 +991,21 @@ msgid "Update is complete" msgstr "De update is voltooid" #: ../UpdateManager/UpdateManager.py:719 -#, fuzzy msgid "Checking for updates" -msgstr "Up_dates installeren" +msgstr "Zoeken naar beschikbare updates" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "Nieuwe versie: %s (Grootte: %s)" +msgstr "Van versie: %(old_version)s naar %(new_version)s" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, python-format msgid "Version %s" -msgstr "Versie %s:" +msgstr "Versie %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 -#, fuzzy, python-format +#, fuzzy msgid "(Size: %s)" msgstr "(Grootte: %s)" @@ -1046,15 +1020,14 @@ msgid "" "information on upgrading." msgstr "" "U zult niet langer veiligheidsupdates of kritieke updates krijgen. Voer een " -"upgrade uit naar een nieuwere versie van Ubuntu Linux. Zie http://www.ubuntu." -"com voor meer informatie over upgraden." +"upgrade uit naar een nieuwere versie van Ubuntu Linux. Zie " +"http://www.ubuntu.com voor meer informatie over upgraden." #: ../UpdateManager/UpdateManager.py:863 -#, fuzzy, python-format +#, python-format msgid "New distribution release '%s' is available" -msgstr "De nieuwe Ubuntu-versie '%s' is beschikbaar" +msgstr "De nieuwe distributie-versie ‘%s’ is beschikbaar" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Software-index is beschadigd" @@ -1069,30 +1042,25 @@ msgstr "" "Gebruik het pakkettenbeheerprogramma \"Synaptic\" of gebruik \"sudo apt-get " "install -f\" in een terminalvenster om eerst dit probleem te verhelpen." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Geen" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" @@ -1102,33 +1070,31 @@ msgstr "" "U moet zelf controleren of er updates zijn\n" "\n" "Uw systeem controleert niet automatisch of er updates zijn. U kunt dit " -"configureren in \"Systeem\" -> \"Beheer\" -> \"Software-eigenschappen\"." +"configureren in Softwarebronnen op het tabblad Internet-" +"updates." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" msgstr "Houd uw systeem up-to-date" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" msgstr "" -"Fout tijdens het lezen van de cd↵\n" -"↵\n" +"Niet alle updates kunnen geïnstalleerd worden \n" +"↵ \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "Upgrade starten?" +msgstr "Update-beheer opstarten" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" msgstr "Wijzigingen" #: ../data/glade/UpdateManager.glade.h:8 -#, fuzzy msgid "Changes and description of the update" -msgstr "Veranderingen en beschrijving van de update" +msgstr "Wijzigingen en omschrijving van de update" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1153,6 +1119,11 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"Voer een upgrade van de distributie uit om zoveel mogelijk updates te " +"installeren. \n" +"\n" +"Dit kan voorkomen bij een onvoltooide upgrade, onofficiële softwarepaketten " +"of bij gebruik van een ontwikkelaarsversie." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1183,9 +1154,8 @@ msgid "_Check" msgstr "_Controleren" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "_Upgrade hervatten" +msgstr "_Distributie-upgrade" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" @@ -1197,30 +1167,32 @@ msgstr "Up_dates installeren" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy -msgid "changes" -msgstr "Wijzigingen" +msgid "_Upgrade" +msgstr "U_pgraden" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "wijzigingen" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" -msgstr "" +msgstr "updates" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Internet-updates" +msgstr "Automatische updates" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "cd-rom/dvd" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" msgstr "Internet-updates" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Internet-updates" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1232,11 +1204,18 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Om Ubuntu nog verder te verbeteren kunt u meedoen met de zogenaamde " +"populariteitswedstrijd. Er wordt dan wekelijks een anonieme rapportage naar " +"Ubuntu verzonden met een overzicht van de geïnstalleerde software en hoe " +"vaak deze gebruikt wordt.\n" +"\n" +"De resultaten worden gebruikt om de ondersteuning voor populaire programma's " +"te verbeteren en voor het bepalen van de rangorde van de resultaten bij het " +"zoeken naar programma's." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "_CD-rom toevoegen" +msgstr "Cd-rom toevoegen" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1247,9 +1226,8 @@ msgid "D_elete downloaded software files:" msgstr "Gedownloade softwarebestanden _verwijderen:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "Downloaden is voltooid" +msgstr "Downloaden van:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1277,34 +1255,32 @@ msgstr "Herstel de standaard sleutels van uw distributie" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "Software-eigenschappen" +msgstr "Softwarebronnen" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" -msgstr "" +msgstr "Broncode" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "Statistieken" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "Statistische informatie verzenden" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "Derden" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "_Automatisch controleren op aanwezigheid van updates:" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "Up_dates wel in de achtergrond downloaden, maar niet installeren" +msgstr "Up_dates wel automatisch downloaden, maar niet installeren" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1315,7 +1291,6 @@ msgid "_Install security updates without confirmation" msgstr "_Veiligheids-updates zonder te vragen installeren" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1324,10 +1299,10 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"De informatie in het kanaal is verouderd\n" +"De informatie over beschikbare software is verouderd\n" "\n" -"Om uit nieuwe of gewijzigde kanalen software en updates te installeren, moet " -"u de kanaalinformatie herladen.\n" +"Om updates te installeren uit nieuwe of gewijzigde softwarebronnen moet u de " +"informatie over beschikbare software vernieuwen.\n" "\n" "U heeft een internetverbinding nodig om door te gaan." @@ -1352,7 +1327,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1360,11 +1334,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Voer de volledige APT-regel in van het kanaal dat u wilt toevoegen\n" +"Voer de volledige APT-regel in van het software-warenhuis dat u als " +"bron wilt toevoegen\n" "\n" -"De APT-regel bevat het type, de locatie en de componenten van een kanaal, " -"bijvoorbeeld: \"deb http://ftp.debian.org sarge main\"." +"De APT-regel bevat het type, de locatie en de componenten van een software-" +"warenhuis, bijvoorbeeld: \"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1380,16 +1354,15 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" -msgstr "" +msgstr "Bron bewerken" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" msgstr "De cd-rom wordt geanalyseerd" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 -#, fuzzy msgid "_Add Source" -msgstr "Bron toevoegen" +msgstr "_Bron toevoegen" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1416,14 +1389,13 @@ msgid "Check for new distribution releases" msgstr "Controleren op nieuwe distributieversies" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy msgid "" "If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"Wanneer automatisch controleren voor updates uitgeschakeld is, moet u de " -"kanaallijst zelf herladen. Met deze optie kunt u er voor zorgen dat in dat " +"Indien automatisch controleren voor updates uitgeschakeld is, moet u de " +"kanalenlijst zelf herladen. Met deze optie kunt u er voor zorgen dat in dat " "soort gevallen geen herinnering gegeven wordt." #: ../data/update-manager.schemas.in.h:4 @@ -1439,12 +1411,11 @@ msgid "Stores the size of the update-manager dialog" msgstr "Onthoudt de grootte van het dialoogvenster van de update-manager" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" -"Slaat de toestand op van het vensterdeel dat de lijst met wijzigingen en de " +"Onthoudt de toestand van het vensterdeel dat de lijst met wijzigingen en de " "omschrijvingen bevat." #: ../data/update-manager.schemas.in.h:8 @@ -1452,261 +1423,194 @@ msgid "The window size" msgstr "De venstergrootte" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "Software-kanalen en internet-updates configureren" +msgstr "Softwarekanalen en internet-updates configureren" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 updates" +msgstr "Ubuntu 6.10 ‘Edgy Eft’" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 -#, fuzzy msgid "Community maintained" -msgstr "Door de gemeenschap beheerd (Universe)" +msgstr "Door de gemeenschap beheerd" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 -#, fuzzy msgid "Proprietary drivers for devices" -msgstr "Proprietaire drivers voor apparaten" +msgstr "Niet-vrije stuurprogramma's voor apparaten" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Niet-vrij (Multiverse)" +msgstr "Beperkte software" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cd-rom met Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS ‘Dapper Drake’" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -#, fuzzy msgid "Canonical supported Open Source software" -msgstr "Door de gemeenschap beheerd (Universe)" +msgstr "Door Canonical beheerde Open Source software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 -#, fuzzy msgid "Community maintained (universe)" -msgstr "Door de gemeenschap beheerd (Universe)" +msgstr "Door de gemeenschap beheerd (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 -#, fuzzy msgid "Community maintained Open Source software" -msgstr "Door de gemeenschap beheerd (Universe)" +msgstr "Door de gemeenschap beheerde Open Source software" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Niet-vrij (Multiverse)" +msgstr "Niet-vrije stuurprogramma's" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 -#, fuzzy msgid "Proprietary drivers for devices " -msgstr "Proprietaire drivers voor apparaten " +msgstr "Niet-vrije stuurprogramma's voor apparaten " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Niet-vrij (Multiverse)" +msgstr "Beperkte software (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +"Software die door auteursrechten of wettelijke regelingen beperkt wordt." -#. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Cd-rom met Ubuntu 6.06 LTS ‘Dapper Drake’" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Updates die van een nieuwere distributie afkomstig zijn (backports)" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Cd-rom met Ubuntu 5.10 ‘Breezy Badger’" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 veiligheidsupdates" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 updates" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.04 ‘Hoary Hedgehog’" -#. Description #: ../data/channels/Ubuntu.info.in:165 -#, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Cd-rom met Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "Cd-rom met Ubuntu 5.04 ‘Hoary Hedgehog’" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officieel ondersteund" -#. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 veiligheidsupdates" +msgstr "Ubuntu 5.04 veiligheidsupdates" -#. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 updates" +msgstr "Ubuntu 5.04 updates" -#. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 backports" +msgstr "Ubuntu 5.04 backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 4.10 ‘Warty Warthog’" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Door de gemeenschap beheerd (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Niet-vrij (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 -#, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "Cd-rom met Ubuntu 4.10 'Warty Warthog'" +msgstr "Cd-rom met Ubuntu 4.10 ‘Warty Warthog’" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "Bepaalde software wordt niet meer officieel ondersteund" +msgstr "Niet meer officieel ondersteund" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Beperkte auteursrechten" -#. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 5.10 veiligheidsupdates" +msgstr "Ubuntu 4.10 veiligheidsupdates" -#. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 5.10 updates" +msgstr "Ubuntu 4.10 updates" -#. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 backports" +msgstr "Ubuntu 4.10 backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" veiligheidsupdates" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (onstabiel)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatibel met DFSG, maar met niet-vrije afhankelijkheden" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software niet compatibel met DFSG" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Downloaden van bestand %li uit %li, snelheid onbekend" @@ -1730,8 +1634,8 @@ msgstr "Software niet compatibel met DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Bezig met upgraden naar Ubuntu " -#~ "6.06 LTS" +#~ "Bezig met upgraden naar Ubuntu 6.06 " +#~ "LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1752,8 +1656,8 @@ msgstr "Software niet compatibel met DFSG" #~ msgstr "" #~ "Uw system wordt gecontroleerd\n" #~ "\n" -#~ "Software-updates repareren fouten, verhelpen veiligheidsproblemen en " -#~ "leveren nieuwe mogelijkheden." +#~ "Software-updates repareren fouten, verhelpen veiligheidsproblemen en leveren " +#~ "nieuwe mogelijkheden." #, fuzzy #~ msgid "Oficially supported" @@ -1761,18 +1665,18 @@ msgstr "Software niet compatibel met DFSG" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Enkele updates vereisen dat andere softwarepaketten verwijderd worden. " -#~ "Gebruik de functie \"Pakketten bijwerken\" van het " -#~ "pakkettenbeheerprogramma \"Synaptic\" of gebruik: \"sudo apt-get dist-" -#~ "upgrade\" in een terminalvenster om uw systeem compleet bij te werken met " -#~ "de laatste updates." +#~ "Gebruik de functie \"Pakketten bijwerken\" van het pakkettenbeheerprogramma " +#~ "\"Synaptic\" of gebruik: \"sudo apt-get dist-upgrade\" in een " +#~ "terminalvenster om uw systeem compleet bij te werken met de laatste updates." #~ msgid "The following updates will be skipped:" #~ msgstr "De volgende updates worden overgeslagen:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Ongeveer %li seconden resterend" @@ -1836,7 +1740,7 @@ msgstr "Software niet compatibel met DFSG" #~ msgid "Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Ubuntu 6.06 LTS\r\n" +#~ "Ubuntu 6.06 LTS \n" #~ "Ubuntu 6.06 updates" #~ msgid "Ubuntu 6.06 LTS Security Updates" @@ -1846,4 +1750,4 @@ msgstr "Software niet compatibel met DFSG" #~ msgstr "Ubuntu 6.06 LTS updates" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS backports" +#~ msgstr "Ubuntu 6.06 LTS backports" \ No newline at end of file diff --git a/po/nn.po b/po/nn.po index ad52df59..dc1d3472 100644 --- a/po/nn.po +++ b/po/nn.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-06-19 15:52+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Willy André Bergstrøm \n" "Language-Team: Norwegian Nynorsk \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Etter ein månad" msgid "After %s days" msgstr "Etter %s dagar" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -126,7 +123,8 @@ msgid "Error removing the key" msgstr "Kunne ikkje fjerne nykjelen" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Nykjelen du valde kan ikkje fjernast. Ver venleg å rapportere denne feilen." @@ -166,7 +164,6 @@ msgstr "Kan ikkje oppgradere naudsynte meta-pakkar" msgid "A essential package would have to be removed" msgstr "Ein naudsynt pakke vil måtte fjernast" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunne ikkje forberede oppgraderinga" @@ -179,7 +176,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kunne ikkje autentisere somme pakkar" @@ -207,7 +203,6 @@ msgstr "" "Ein naudsynt pakke kunne ikkje installerast. Ver venleg og rapporter denne " "feilen. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan ikkje gjette på meta-pakke" @@ -274,7 +269,6 @@ msgstr "" "vil det oppdatere alle forekomstar av '%s' til '%s'.\n" "Om du veljer \"Nei\" vil oppgraderinga verte avbroten." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Vil du opprette standardkjelder?" @@ -287,8 +281,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Inga gyldig oppføring for \"%s\" vart funne under gjennomsøking av \"sources." -"list\"-fila di.\n" +"Inga gyldig oppføring for \"%s\" vart funne under gjennomsøking av " +"\"sources.list\"-fila di.\n" "\n" "Vil du legge till standard oppføring for \"%s\"? Om du vel \"Nei\" vil " "oppdateringa verte avbroten." @@ -340,7 +334,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -403,7 +396,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -414,7 +406,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -465,7 +456,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -481,7 +471,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -493,7 +483,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -509,60 +498,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -570,39 +557,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -628,7 +614,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -648,11 +633,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -719,6 +703,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -754,7 +739,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -844,17 +828,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -867,7 +848,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -889,7 +869,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -924,7 +903,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -946,7 +924,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -958,23 +935,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1071,10 +1044,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1296,229 +1273,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/oc.po b/po/oc.po index d09ca31f..eed871b2 100644 --- a/po/oc.po +++ b/po/oc.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-09-30 00:43+0000\n" -"Last-Translator: Yannig MARCHEGAY (Kokoyaya) \n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:16+0000\n" +"Last-Translator: Yannig MARCHEGAY (Kokoyaya) " +"\n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +56,6 @@ msgstr "Un mes aprèp" msgid "After %s days" msgstr "%s jorns aprèp" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "%s mesas a jorn" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -126,12 +123,13 @@ msgid "Error removing the key" msgstr "Error al moment de suprimir la clau" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Avem pas poscut suprimir la clau qu'avètz seleccionada. Raportatz l'anomalia." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -167,7 +165,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossible calcular la mesa a jorn" @@ -180,7 +177,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -203,7 +199,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -263,7 +258,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -320,7 +314,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Volètz començar la mesa a jorn ?" @@ -383,7 +376,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -394,7 +386,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -445,7 +436,6 @@ msgstr "Recèrca de logicials obsolets" msgid "System upgrade is complete." msgstr "La mesa a jorn del sistèma es acabada." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -461,7 +451,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Environ %s restantas" @@ -473,7 +463,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicacion dels cambis" @@ -489,61 +478,59 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Impossible de trobar la comanda 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -553,39 +540,38 @@ msgstr "" "\n" "Debètz telecargar un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Suprimir %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Installar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Metre a jorn %s" @@ -611,7 +597,6 @@ msgid "%li seconds" msgstr "%li segondas" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -631,7 +616,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -703,6 +687,7 @@ msgid "_Keep" msgstr "_Conservar" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Remplaçar" @@ -738,7 +723,6 @@ msgstr "Impossible de telecargar las informacions de version" msgid "Please check your internet connection." msgstr "Verificatz vòstra connexion internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossible aviar l'esplech de mesa a jorn" @@ -828,17 +812,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -853,7 +834,6 @@ msgstr "Ubuntu 5.10 'Breezy Badger'" msgid "Distribution updates" msgstr "Mesas a jorn per internet" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -877,7 +857,6 @@ msgstr "" msgid "_Check All" msgstr "_Verificar" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -909,11 +888,10 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Version %s :" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -935,7 +913,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -947,23 +924,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1069,10 +1042,15 @@ msgstr "_Installar las mesas a jorn" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "_Metre a jorn" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Cambis" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "mesas a jorn" @@ -1298,244 +1276,200 @@ msgstr "La talha de la fenèstra" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Pas liure (multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM que conten Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Pas liure (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Pas liure (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM que conten Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM que conten Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Pas liure (multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Mesas a jorn de securitat per Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (en tèst)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (instable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1561,4 +1495,4 @@ msgstr "" #~ msgstr "_Personalisar" #~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 6.06 LTS" +#~ msgstr "Ubuntu 6.06 LTS" \ No newline at end of file diff --git a/po/pa.po b/po/pa.po index 25960a09..0e940c7d 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:43+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:16+0000\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" "MIME-Version: 1.0\n" @@ -56,15 +56,13 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,7 +122,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -162,7 +160,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -175,7 +172,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -198,7 +194,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -258,7 +253,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -315,7 +309,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -378,7 +371,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -389,7 +381,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -441,7 +432,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -457,7 +447,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -469,7 +459,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -485,60 +474,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -546,39 +533,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -604,7 +590,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -624,7 +609,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -697,6 +681,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -734,7 +719,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -826,18 +810,15 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -852,7 +833,6 @@ msgstr "" msgid "Distribution updates" msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -875,14 +855,13 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy, python-format +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." @@ -911,7 +890,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -933,7 +911,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -945,23 +922,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1062,10 +1035,15 @@ msgid "_Install Updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1299,229 +1277,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1574,4 +1507,4 @@ msgstr "" #, fuzzy #~ msgid "Sections:" -#~ msgstr "ਵੇਰਵਾ" +#~ msgstr "ਵੇਰਵਾ" \ No newline at end of file diff --git a/po/pl.po b/po/pl.po index f438b3ec..512fc57c 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,15 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: update-manager cvs\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-09-02 19:44+0000\n" -"Last-Translator: White Eagle \n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-10 08:44+0000\n" +"Last-Translator: Tomasz Dominikowski \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -55,7 +54,6 @@ msgstr "Po miesiącu" msgid "After %s days" msgstr "Po %s dniach" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +61,6 @@ msgstr "%s aktualizacji" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Serwer główny" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +119,8 @@ msgid "Error removing the key" msgstr "Błąd podczas usuwania klucza" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -166,7 +163,6 @@ msgstr "Nie można zaktualizować wymaganych meta-pakietów" msgid "A essential package would have to be removed" msgstr "Niezbędny pakiet musiałby zostać usunięty" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nie można przetworzyć aktualizacji" @@ -183,7 +179,6 @@ msgstr "" "Prosimy zgłosić błąd pakietu \"update-manager\" dołączając w zgłoszeniu " "pliki z folderu /var/log/dist-upgrade/ ." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Błąd podczas uwierzytelniania niektórych pakietów" @@ -207,9 +202,9 @@ msgstr "Nie można zainstalować \"%s\"" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd. " +msgstr "" +"Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nie można odnaleźć żadnego z wymaganych meta-pakietów" @@ -286,11 +281,10 @@ msgstr "" "lustrzanego dla aktualizacji. To może się zdarzyć, jeśli używasz wewnętrzny " "serwer lustrzany lub informacje o serwerze są nieaktualne.\n" "\n" -"Czy chcesz przepisać plik \"sources.list\" mimo tego? Jeśli wybierzesz \"Tak" -"\" wpisy \"%s\" do \"%s\" zostaną zaktualizowane.\n" +"Czy chcesz przepisać plik \"sources.list\" mimo tego? Jeśli wybierzesz " +"\"Tak\" wpisy \"%s\" do \"%s\" zostaną zaktualizowane.\n" "Jeśli wybierzesz \"Nie\" aktualizacja zostanie anulowana." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Wygenerować domyślne źródła?" @@ -303,8 +297,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Po zeskanowaniu \"sources.list\" nie odnaleziono poprawnego wpisu dla \"%s" -"\".\n" +"Po zeskanowaniu \"sources.list\" nie odnaleziono poprawnego wpisu dla " +"\"%s\".\n" "\n" "Czy mam dodać domyślne wpisy dla \"%s\"? Jeśli wybierzesz \"Nie\" " "aktualizacja zostanie anulowana." @@ -332,8 +326,8 @@ msgid "" "synaptic." msgstr "" "Niektóre kanały osób trzecich w pliku sources.list zostały wyłączone. Możesz " -"ponownie je włączyć po aktualizacji używając narzędzia \"software-properties" -"\" lub programu Synaptic." +"ponownie je włączyć po aktualizacji używając narzędzia \"software-" +"properties\" lub programu Synaptic." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -358,11 +352,10 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"Aktualizacja zostanie zatrzymana. Proszę zwolnić co najmniej %s miejsca na %" -"s. Opróżnij kosz i usuń tymczasowe pakiety z poprzednich instalacji używając " -"\"sudo apt-get clean\"." +"Aktualizacja zostanie zatrzymana. Proszę zwolnić co najmniej %s miejsca na " +"%s. Opróżnij kosz i usuń tymczasowe pakiety z poprzednich instalacji " +"używając \"sudo apt-get clean\"." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Czy chcesz rozpocząć aktualizację?" @@ -409,6 +402,11 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" +"Canonical Ltd. nie zapewnia już wsparcia dla tych pakietów. Nadal możesz " +"uzyskać wsparcie od społeczności Ubuntu.\n" +"\n" +"Jeśli nie włączyłeś repozytoriów utrzymywanych przez społeczność (universe), " +"zostanie zasugerowane ich usunięcie w następnym kroku." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -434,7 +432,6 @@ msgstr "" "Wystąpił problem podczas oczyszczania. Więcej informacji znajduje się w " "poniższych wiadomościach. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Przywracanie pierwotnego stanu systemu" @@ -442,10 +439,9 @@ msgstr "Przywracanie pierwotnego stanu systemu" #: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Pobieranie backportu \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -453,7 +449,7 @@ msgstr "Sprawdzanie menedżera pakietów" #: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "" +msgstr "Przygotowanie aktualizacji nie powiodło się" #: ../DistUpgrade/DistUpgradeControler.py:672 msgid "" @@ -461,6 +457,9 @@ msgid "" "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" +"Przygotowanie systemu do aktualizacji nie powiodło się. Proszę zgłosić to " +"jako błąd pakietu \"update-manager\" i dołączyć do raportu pliki z " +"/var/log/dist-upgrade ." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -481,8 +480,8 @@ msgid "" msgstr "" "Po aktualizacji informacji o pakietach niezbędny pakiet \"%s\" nie może " "zostać odnaleziony.\n" -"To wskazuje na poważny problem, proszę zgłosić błąd pakietu \"update-manager" -"\" i dołączyć pliki zawarte w /var/log/dist-upgrade/ w raporcie." +"To wskazuje na poważny problem, proszę zgłosić błąd pakietu \"update-" +"manager\" i dołączyć pliki zawarte w /var/log/dist-upgrade/ w raporcie." #: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" @@ -500,7 +499,6 @@ msgstr "Wyszukiwanie zdezaktualizowanego oprogramowania" msgid "System upgrade is complete." msgstr "Aktualizacja systemu zakończona powodzeniem." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -516,7 +514,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Pobieranie pliku %li z %li z prędkością %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Pozostało około %s" @@ -528,7 +526,6 @@ msgstr "Pobieranie pliku %li z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Zatwierdzanie zmian" @@ -546,8 +543,7 @@ msgstr "" "Aktualizacja zostaje przerwana. Prosimy o wysłanie raportu o błędzie pakietu " "'update-manager' dołączając pliki w /var/log/dist-upgrade/." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -556,36 +552,37 @@ msgstr "" "Zastąpić własny plik konfiguracji\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Utracisz wszystkie wprowadzone zmiany do tego pliku konfiguracyjnego, jeśli " +"wybierzesz jego zamianę na nowszą wersję." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Polecenie \"diff\" nie zostało odnalezione" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Wystąpił błąd krytyczny" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Prosimy o wysłanie raportu o tym błędzie i dołączeniu plików /var/log/dist-" "upgrade/main.log i /var/log/dist-upgrade/apt.log w swoim raporcie. " "Aktualizacja zostaje przerwana.\n" -"Pierwotny plik sources.list został zapisany w /etc/apt/sources.list." -"distUpgrade." +"Pierwotny plik sources.list został zapisany w " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -593,7 +590,7 @@ msgstr[0] "%d pakiet zostanie usunięty." msgstr[1] "%d pakiety zostaną usunięte." msgstr[2] "%d pakietów zostanie usuniętych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -601,7 +598,7 @@ msgstr[0] "%d nowy pakiet zostanie zainstalowany." msgstr[1] "%d nowe pakiety zostaną zainstalowane." msgstr[2] "%d nowych pakietów zostanie zainstalowanych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -609,7 +606,7 @@ msgstr[0] "%d pakiet zostanie zaktualizowany." msgstr[1] "%d pakiety zostaną zaktualizowane." msgstr[2] "%d pakietów zostanie zaktualizowanych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -620,7 +617,7 @@ msgstr "" "\n" "Musisz pobrać w sumie %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -628,35 +625,34 @@ msgstr "" "Pobieranie i instalacja aktualizacji może potrwać kilka godzin i nie może " "zostać przerwana." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Aby zapobiec utracie danych proszę zamknąć wszystkie otwarte aplikacje i " "dokumenty." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Twój system jest w pełni zaktualizowany" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Brak dostępnych aktualizacji. Aktualizacja zostanie anulowana." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Usuń %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Instaluj %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Aktualizuj %s" @@ -682,13 +678,14 @@ msgid "%li seconds" msgstr "%li sekund" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Pobieranie może trwać około %s przy łączu 1 Mbit i około %s przy łączu " +"56kbit." #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -704,7 +701,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -769,17 +765,18 @@ msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "" +msgstr "_Przerwij aktualizację" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "K_ontynuuj" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Zachowaj" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "Zas_tąp" @@ -797,7 +794,7 @@ msgstr "_Wznów aktualizację" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "" +msgstr "_Rozpocznij aktualizację" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -815,7 +812,6 @@ msgstr "Pobranie informacji o wydaniu było niemożliwe" msgid "Please check your internet connection." msgstr "Proszę sprawdzić swoje połączenie internetowe." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nie można było uruchomić narzędzia aktualizacji" @@ -849,7 +845,8 @@ msgstr "Pobranie nie powiodło się" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "Pobranie aktualizacji nie powiodło się. To może być problem sieciowy. " +msgstr "" +"Pobranie aktualizacji nie powiodło się. To może być problem sieciowy. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -872,6 +869,8 @@ msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" +"Weryfikacja aktualizacji nie powiodła się. Mógł wystąpić problem z siecią " +"lub z serwerem. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -888,12 +887,12 @@ msgstr "" #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "" +msgstr "Pobieranie pliku %(current)li z %(total)li z prędkością %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 #, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "" +msgstr "Pobieranie pliku %(current)li z %(total)li" #: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" @@ -904,24 +903,25 @@ msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" +"Lista zmian nie jest dostępna.\n" +"Proszę spróbować później." #: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" +"Nie udało się pobrać listy zmian. \n" +"Proszę sprawdzić swoje połączenie intenetowe." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Ważne aktualizacje bezpieczeństwa" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Aktualizacje polecane" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Aktualizacje proponowane" @@ -932,9 +932,8 @@ msgstr "Backporty" #: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "" +msgstr "Aktualizacje dystrybucji" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Inne aktualizacje" @@ -946,7 +945,7 @@ msgstr "Wersja %s: \n" #: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." -msgstr "" +msgstr "Pobieranie listy zmian..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" @@ -956,7 +955,6 @@ msgstr "Odznacz wszystkie" msgid "_Check All" msgstr "Zaznacz wszystkie" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -985,14 +983,13 @@ msgstr "Sprawdzanie dostępności aktualizacji" #: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "" +msgstr "Z wersji %(old_version)s do %(new_version)s" #: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Wersja %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1017,7 +1014,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Nowe wydanie dystrybucji \"%s\" jest dostępne" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Spis oprogramowania jest uszkodzony" @@ -1032,23 +1028,19 @@ msgstr "" "Proszę użyć \"Synaptic Menedżer Pakietów\" lub wydać polecenie \"sudo apt-" "get install -f\" w terminalu, aby naprawić ten problem." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Brak" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1061,6 +1053,10 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" +"Musisz sprawdzić dostępność aktualizacji ręcznie\n" +"\n" +"Aktualizacja automatyczna nie jest włączona. Możesz ustawić tę funkcję w " +"Źródła oprogramowania w zakładce Aktualizacje internetowe" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1068,7 +1064,8 @@ msgstr "Utrzymuj system w pełni zaktualizowany" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "Nie wszystkie aktualizacje mogą zostać zainstalowane" +msgstr "" +"Nie wszystkie aktualizacje mogą zostać zainstalowane" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" @@ -1152,10 +1149,14 @@ msgid "_Install Updates" msgstr "_Instaluj aktualizacje" #: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "zmiany" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "aktualizacje" @@ -1195,7 +1196,7 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" -msgstr "" +msgstr "Dodaj CD-ROM" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1395,6 +1396,7 @@ msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" +"Zapamiętuje położenie wysuwalnego obszaru zawierającego listę zmian i opis" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" @@ -1404,233 +1406,191 @@ msgstr "Rozmiar okna" msgid "Configure the sources for installable software and updates" msgstr "Konfiguruj źródła pakietów oprogramowania i aktualizacji" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Pod opieką społeczeństwa" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Własnościowe sterowniki dla urządzeń" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Ograniczone oprogramowanie" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM z Ubuntu 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" -msgstr "" +msgstr "Oprogramowanie Open Source wspierane przez firmę Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Obsługiwane przez społeczność (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Oprogramowanie Open Source pod opieką społeczeństwa" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Sterowniki nie-wolnodostępne" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Własnościowe sterowniki dla urządzeń " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Oprogramowanie nie-wolnodostępne (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +"Oprogramowanie ograniczone prawami autorskimi lub problemami natury prawnej" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM z Ubuntu 6.06 LTS \"Dapper Drake\"" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Aktualizacje backportowane" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM z Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Aktualizacje dla Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Aktualizacje dla Ubuntu 5.10 (backporty)" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM z Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Wspierane oficjalnie" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Aktualizacje dla Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Aktualizacje dla Ubuntu 5.04 (backporty)" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu·4.10·\"Warty·Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Utrzymywane przez społeczność (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nie-wolnodostępne (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM z Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Już nieobsługiwane" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "O ograniczonych prawach kopiowania" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Uaktualnienia bezpieczeństwa dla Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Aktualizacje dla Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Aktualizacje dla Ubuntu 4.10 (backporty)" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Debiana 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (wersja testowa)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (wersja unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Oprogramowanie kompatybilne z DFSG z zależnościami Non-Free" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Oprogramowanie niekompatybilne z DFSG." +#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1641,22 +1601,21 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please " -#~ "report this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " #~ msgstr "" -#~ "Wystąpił nierozwiązywalny problem podczas przetwarzania aktualizacji. " -#~ "Proszę zgłosić to jako błąd. " +#~ "Wystąpił nierozwiązywalny problem podczas przetwarzania aktualizacji. Proszę " +#~ "zgłosić to jako błąd. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " -#~ "edubuntu-desktop package and it was not possible to detect which version " -#~ "of ubuntu you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "System nie zawiera żadnego z pakietów: ubuntu-desktop, kubuntu-desktop " -#~ "lub edubuntu-desktop. Nie jest możliwe określenie używanej wersji " -#~ "Ubuntu.\n" +#~ "System nie zawiera żadnego z pakietów: ubuntu-desktop, kubuntu-desktop lub " +#~ "edubuntu-desktop. Nie jest możliwe określenie używanej wersji Ubuntu.\n" #~ " Przed kontynuowaniem proszę zainstalować jeden z powyższych pakietów." #~ msgid "" @@ -1669,8 +1628,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "lub za pomocą Synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." #~ msgstr "" #~ "Aktualizacja została przerwana. System może znajdować się w stanie " #~ "nienadającym się do użytku. Uruchamianie naprawiania systemu (dpkg --" @@ -1692,6 +1651,7 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "Jeśli nie masz włączonego \"universe\" w następnym kroku zostanie " #~ "zasugerowane ich usunięcie. " +#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1701,30 +1661,37 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "być odnaleziony.\n" #~ "To wskazuje na poważny problem, proszę zgłosić ten błąd." +#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "Około %li dni %li godzin %li minut pozostało" +#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "Około %li godzin %li minut pozostało" +#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Około %li minut pozostało" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Około %li sekund pozostało" #~ msgid "Download is complete" #~ msgstr "Pobieranie zostało zakończone." +#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Pobieranie pliku %li z %li z prędkością %s/s" +#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Pobieranie pliku %li z %li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "Aktualizacja została przerwana. Proszę zgłosić ten błąd." +#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1733,40 +1700,42 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "\"%s\"?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade." -#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " -#~ "now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "Proszę zgłosić ten błąd i w raporcie dołączyć pliki ~/dist-upgrade.log " -#~ "oraz ~/dist-upgrade-apt.log. Aktualizacja została przerwana.\n" -#~ "Pierwotny plik sources.list został zapisany w /etc/apt/sources.list." -#~ "distUpgrade." +#~ "Proszę zgłosić ten błąd i w raporcie dołączyć pliki ~/dist-upgrade.log oraz " +#~ "~/dist-upgrade-apt.log. Aktualizacja została przerwana.\n" +#~ "Pierwotny plik sources.list został zapisany w " +#~ "/etc/apt/sources.list.distUpgrade." +#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s pakiet zostanie usunięty." #~ msgstr[1] "%s pakiety zostaną usunięte." #~ msgstr[2] "%s pakietów zostanie usuniętych." +#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s nowy pakiet zostanie zainstalowany." #~ msgstr[1] "%s nowe pakiety zostaną zainstalowane." #~ msgstr[2] "%s nowy pakietów zostanie zainstalowane." +#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s pakiet zostanie zaktualizowany." #~ msgstr[1] "%s pakiety zostaną zaktualizowane." #~ msgstr[2] "%s pakietów zostanie zaktualizowanych." +#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Konieczne pobranie ogółem %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time " -#~ "later." +#~ "The upgrade can take several hours and cannot be canceled at any time later." #~ msgstr "" #~ "Aktualizacja może trwać wiele godzin i nie może zostać później anulowana." @@ -1788,15 +1757,17 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "Aktualizacja Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or " -#~ "with the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " #~ msgstr "" -#~ "Weryfikacja aktualizacji nie powiodła się. To może być problem sieciowy " -#~ "lub z serwerem. " +#~ "Weryfikacja aktualizacji nie powiodła się. To może być problem sieciowy lub " +#~ "z serwerem. " +#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Pobieranie pliku %li z %li z prędkością %s/s" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Pobieranie pliku %li z %li z nieznaną prędkością" @@ -1830,13 +1801,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Niektóre aktualizacje wymagają dalszego usuwania oprogramowania. Aby " -#~ "ukończyć proces aktualizacji użyj opcji \"Zaznacz wszystko do aktualizacji" -#~ "\" w Mendżerze Pakietów Synaptic albo uruchom \"sudo apt-get dist-upgrade" -#~ "\" w terminalu." +#~ "ukończyć proces aktualizacji użyj opcji \"Zaznacz wszystko do aktualizacji\" " +#~ "w Mendżerze Pakietów Synaptic albo uruchom \"sudo apt-get dist-upgrade\" w " +#~ "terminalu." #~ msgid "The following updates will be skipped:" #~ msgstr "Następujące pakiety zostaną pominięte:" @@ -1850,18 +1821,17 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "Select _All" #~ msgstr "Zaznacz w_szystkie" +#, python-format #~ msgid "From version %s to %s" #~ msgstr "Z wersji %s do %s" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" -#~ "Wymagane jest ręczne sprawdzenie dostępności aktualizacji\n" +#~ "Wymagane jest ręczne sprawdzenie dostępności aktualizacji\n" #~ "\n" #~ "System nie sprawdza dostępności aktualizacji automatycznie. To ustawienie " #~ "można to zmienić w \"System\" -> \"Administracja\" -> \"Software " @@ -1875,8 +1845,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "" #~ "Sprawdzanie systemu\n" #~ "\n" -#~ "Aktualizacje oprogramowania mogą poprawić błędy, wyeliminować słabe " -#~ "punkty bezpieczeństwa i dostarczyć nowe funkcje." +#~ "Aktualizacje oprogramowania mogą poprawić błędy, wyeliminować słabe punkty " +#~ "bezpieczeństwa i dostarczyć nowe funkcje." #~ msgid "Cancel _Download" #~ msgstr "_Przerwij pobieranie" @@ -1884,8 +1854,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and " -#~ "updates from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" @@ -1897,33 +1867,31 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "Aby kontynuować potrzebne jest działające połączenie internetowe." #~ msgid "" -#~ "Enter the complete APT line of the source that you want to add\n" +#~ "Enter the complete APT line of the source that you want to " +#~ "add\n" #~ "\n" #~ "The APT line includes the type, location and components of a source, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Wpisz pełny wiersz APT opisujący kanał który chcesz dodać\n" +#~ "Wpisz pełny wiersz APT opisujący kanał który chcesz dodać\n" #~ "\n" -#~ "Wiersz APT zawiera typ, lokalizację i zawartość kanału, przykładowo " -#~ "\"deb http://ftp.debian.org sarge main\"." +#~ "Wiersz APT zawiera typ, lokalizację i zawartość kanału, przykładowo \"deb " +#~ "http://ftp.debian.org sarge main\"." #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in " -#~ "this case." +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." #~ msgstr "" -#~ "Jeśli automatycznie sprawdzanie dostępności aktualizacji jest wyłączone " -#~ "to koniecznie jest ręczne wczytanie listy kanałów. Ta opcja pozwala na " -#~ "ukrycie pokazywanego w tym przypadku.powiadamiania." +#~ "Jeśli automatycznie sprawdzanie dostępności aktualizacji jest wyłączone to " +#~ "koniecznie jest ręczne wczytanie listy kanałów. Ta opcja pozwala na ukrycie " +#~ "pokazywanego w tym przypadku.powiadamiania." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " #~ "description" #~ msgstr "" -#~ "Zapamiętuje stan obszaru z listą zmian i opisem poszczególnych " -#~ "aktualizacji" +#~ "Zapamiętuje stan obszaru z listą zmian i opisem poszczególnych aktualizacji" #~ msgid "" #~ "OpenSource software that is officially supported by Canonical Ltd. (main)" @@ -1936,8 +1904,7 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "Proprietary drivers for devices (restricted) " #~ msgstr "Własnościowe sterowniki dla urządzeń (restricted) " -#~ msgid "" -#~ "Software that is restricted by copyright or legal issues (multiverse)" +#~ msgid "Software that is restricted by copyright or legal issues (multiverse)" #~ msgstr "" #~ "Oprogramowanie ograniczone prawami kopiowania lub wątpliowściami prawnymi " #~ "(multiverse)" @@ -2014,8 +1981,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "Aktualizacje dla Ubuntu 6.06 LTS (Backporty)" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Podczas skanowania informacji o repozytoriach nie odnaleziono poprawnych " #~ "wpisów potrzebnych do aktualizacji.\n" @@ -2082,13 +2049,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Dostępne aktualizacje\n" #~ "\n" -#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować " -#~ "klikając przycisk Instaluj." +#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować klikając " +#~ "przycisk Instaluj." #~ msgid "Repository" #~ msgstr "Repozytorium" @@ -2108,21 +2075,20 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "" #~ "Klucze autentykacyjne\n" #~ "\n" -#~ "W tym oknie dialogowym można dodawać i usuwać klucze autentykacyjne. " -#~ "Klucz pozwala na sprawdzenie integralności oprogramowania które jest " -#~ "pobierane z sieci." +#~ "W tym oknie dialogowym można dodawać i usuwać klucze autentykacyjne. Klucz " +#~ "pozwala na sprawdzenie integralności oprogramowania które jest pobierane z " +#~ "sieci." #~ msgid "A_uthentication" #~ msgstr "A_utentykacja" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Dodaje plik z kluczem do listy zaufanych kluczy. Należy upewnić sie, że " -#~ "został otrzymany bezpiecznym kanałem oraz, że pochodzi z zaufanego " -#~ "źródła. " +#~ "został otrzymany bezpiecznym kanałem oraz, że pochodzi z zaufanego źródła. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "Usuwaj _tymczasowe pliki z pakietami" @@ -2144,11 +2110,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Przywraca domyślne klucze rozprowadzane wraz z dystrybucją. Nie wpływa to " -#~ "na klucze zainstalowane przez użytkownika." +#~ "Przywraca domyślne klucze rozprowadzane wraz z dystrybucją. Nie wpływa to na " +#~ "klucze zainstalowane przez użytkownika." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Maksymalny rozmiar pamięci podręcznej" @@ -2172,9 +2138,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "Oznacza to, że pewne zależności instalowanych pakietów nie są spełnione." -#~ "Aby rozwiązać problem proszę skorzystać z programu \"Synaptic\" lub \"apt-" -#~ "get\"." +#~ "Oznacza to, że pewne zależności instalowanych pakietów nie są spełnione.Aby " +#~ "rozwiązać problem proszę skorzystać z programu \"Synaptic\" lub \"apt-get\"." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "Nie można uaktualnić wszystkich pakietów" @@ -2182,13 +2147,12 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" #~ "Oznacza to, że do aktualizacji wymagane sa dodatkowe działania (takie jak " -#~ "dodanie lub usunięcie pakietów). Aby rozwiązać problem proszę skorzystać " -#~ "z funkcji \"sprytnej aktualizacji\" programu Synaptic lub wykonać " -#~ "polecenie \"apt-get dist-upgrade\"." +#~ "dodanie lub usunięcie pakietów). Aby rozwiązać problem proszę skorzystać z " +#~ "funkcji \"sprytnej aktualizacji\" programu Synaptic lub wykonać polecenie " +#~ "\"apt-get dist-upgrade\"." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" @@ -2199,11 +2163,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "Aktualizacje są teraz instalowane." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. " -#~ "Należy najpierw zamknąć aplikację która teraz działa." +#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. Należy " +#~ "najpierw zamknąć aplikację która teraz działa." #~ msgid "Updating package list..." #~ msgstr "Aktualizacja listy pakietów..." @@ -2213,14 +2177,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Proszę uaktualnić dystrybucję do nowszej wersji Ubuntu Linux. Obecna " -#~ "wersja nie będzie już otrzymywać uaktualnień bezpieczeństwa oraz innych " -#~ "krytycznych uaktualnień. Informacje o tym jak uaktualnić dystrybucję " -#~ "można znaleźć na stronie http://www.ubuntulinux.org (Witryna w języku " -#~ "angielskim)" +#~ "Proszę uaktualnić dystrybucję do nowszej wersji Ubuntu Linux. Obecna wersja " +#~ "nie będzie już otrzymywać uaktualnień bezpieczeństwa oraz innych krytycznych " +#~ "uaktualnień. Informacje o tym jak uaktualnić dystrybucję można znaleźć na " +#~ "stronie http://www.ubuntulinux.org (Witryna w języku angielskim)" #, fuzzy #~ msgid "There is a new release of Ubuntu available!" @@ -2231,11 +2194,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. " -#~ "Należy najpierw zamknąć aplikację która teraz działa." +#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. Należy " +#~ "najpierw zamknąć aplikację która teraz działa." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Inicjowanie i pobieranie listy aktualizacji..." @@ -2273,13 +2236,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Dostępne aktualizacje\n" #~ "\n" -#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować " -#~ "klikając przycisk Instaluj." +#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować klikając " +#~ "przycisk Instaluj." #~ msgid "CD disk" -#~ msgstr "Płyta CD" +#~ msgstr "Płyta CD" \ No newline at end of file diff --git a/po/pt.po b/po/pt.po index b58467c3..815988d6 100644 --- a/po/pt.po +++ b/po/pt.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-06 18:27+0000\n" -"Last-Translator: Susana \n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 11:04+0000\n" +"Last-Translator: Tiago Silva \n" "Language-Team: Ubuntu Portuguese Team \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -53,7 +53,6 @@ msgstr "Após um mês" msgid "After %s days" msgstr "Depois de %s dias" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,7 +60,6 @@ msgstr "actualizações do %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,7 +69,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "Erro ao remover a chave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "A chave que seleccionou não pôde ser removida. Por favor reporte este erro." @@ -167,7 +165,6 @@ msgstr "Não foi possível actualizar os meta-pacotes necessários" msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossível de calcular a actualização" @@ -184,7 +181,6 @@ msgstr "" "Por favor reporte este erro no pacote 'update-manager' e inclua os ficheiros " "contidos em /var/log/dist-upgrade/ no seu relatório de erro." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro ao autenticar alguns pacotes" @@ -211,7 +207,6 @@ msgid "" msgstr "" "Foi impossível instalar um pacote essencial. Por favor reporte este erro. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossível de descobrir meta-pacote" @@ -293,7 +288,6 @@ msgstr "" "Se escolher 'Sim' ele vai actualizar todos os '%s' para '%s' pacotes.↵\n" "Se escolher \"não\" a actualização irá ser cancelada." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Gerar as fontes padrão?" @@ -362,11 +356,10 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"A actualização abortará agora. Por favor liberte %s de espaço em disco em %" -"s. Esvazie o lixo e remova pacotes temporários de instalações anteriores " +"A actualização abortará agora. Por favor liberte %s de espaço em disco em " +"%s. Esvazie o lixo e remova pacotes temporários de instalações anteriores " "usando 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Deseja iniciar a actualização?" @@ -406,7 +399,6 @@ msgid "Support for some applications ended" msgstr "O suporte para algumas aplicações já terminou." #: ../DistUpgrade/DistUpgradeControler.py:517 -#, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -414,11 +406,11 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Estes pacotes instalados já não são suportados oficialmente, e agora são " -"apenas suportados pela comunidade ('universe').\n" +"A Canonical Ltd. já não suporta oficialmente os pacotes de software que se " +"seguem. Pode ainda obter suporte a partir da comunidade.\n" "\n" -"Se não tem o repositório 'universe' activo será sugerida a remoção destes " -"pacotes no próximo passo." +"Caso não tenha activado o software mantido pela comunidade (universe), irá " +"ser sugerida a remoção destes pacotes no próximo passo." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -444,7 +436,6 @@ msgstr "" "Ocorreu algum problema durante a limpeza. Por favor verifique a mensagem " "abaixo para mais informação. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "A restaurar o estado original do sistema" @@ -455,7 +446,6 @@ msgid "Fetching backport of '%s'" msgstr "A obter backport de '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -514,7 +504,6 @@ msgstr "À procura de software obsoleto" msgid "System upgrade is complete." msgstr "A actualização do sistema está completa." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -530,7 +519,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "A obter o ficheiro %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Cerca de %s restantes" @@ -542,7 +531,6 @@ msgstr "A obter o ficheiro %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando alterações" @@ -558,11 +546,10 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "A actualização será agora abortada. Por favor relate a ocorrência deste erro " -"no pacote 'update-manager' e inclua os ficheiros que se encontram em /var/" -"log/dist-upgrade/ no relatório de erro." +"no pacote 'update-manager' e inclua os ficheiros que se encontram em " +"/var/log/dist-upgrade/ no relatório de erro." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -571,7 +558,7 @@ msgstr "" "Substituir ficheiro de configuração personalizado\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." @@ -579,52 +566,51 @@ msgstr "" "Perderá todas as alterações que fez a este ficheiro de configuração caso o " "substitua por uma versão mais recente." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "O comando 'diff' não foi encontrado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Ocorreu um erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Por favor relate este erro e inclua os ficheiros /var/log/dist-upgrade/main." -"log e /var/log/dist-upgrade/apt.log no seu relatório de erro. A actualização " -"abortará agora.\n" -"O ficheiro original sources.list foi guardado em /etc/apt/sources.list." -"distUpgrade." +"Por favor relate este erro e inclua os ficheiros /var/log/dist-" +"upgrade/main.log e /var/log/dist-upgrade/apt.log no seu relatório de erro. A " +"actualização abortará agora.\n" +"O ficheiro original sources.list foi guardado em " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "o pacote %d será removido." msgstr[1] "os pacotes %d serão removidos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d novo pacote será instalado." msgstr[1] "%d novos pacotes serão instalados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pacote será actualizado." msgstr[1] "%d pacotes serão actualizados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, python-format msgid "" "\n" "\n" @@ -632,9 +618,9 @@ msgid "" msgstr "" "\n" "\n" -"Tem de efectuar o download de um total de %s. " +"Tem que descarregar um de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -642,19 +628,18 @@ msgstr "" "A obtenção e instalação da actualização poderá demorar várias horas e não " "poderá ser cancelada a qualquer instante posteriormente." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Para prevenir a perda de dados feche todas as aplicações e documentos " "abertos." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -662,17 +647,17 @@ msgstr "" "Não há actualizações disponíveis para o seu sistema. A actualização será " "agora cancelada." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Remover %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" @@ -698,7 +683,6 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -721,7 +705,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -796,6 +779,7 @@ msgid "_Keep" msgstr "_Manter" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Substituir" @@ -831,7 +815,6 @@ msgstr "Impossível de descarregar as notas de lançamento" msgid "Please check your internet connection." msgstr "Por favor verifique a sua ligação à internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossível de executar a ferramenta de actualização" @@ -849,7 +832,8 @@ msgstr "A descarregar a ferramenta de actualização" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "A ferramenta de actualização guiá-lo-á pelo processo de actualização." +msgstr "" +"A ferramenta de actualização guiá-lo-á pelo processo de actualização." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -925,25 +909,21 @@ msgstr "" "A lista de alterações ainda não está disponível. Por favor tente mais tarde." #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Falha a descarregar a lista de alterações. \n" -"Por favor verifique a sua ligação à internet." +"Falha ao descarregar a lista de alterações. \n" +"Por favor verifique a sua ligação à Internet." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizações de segurança importantes" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizações recomendadas" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Actualizações propostas" @@ -956,7 +936,6 @@ msgstr "Backports" msgid "Distribution updates" msgstr "_Actualizações de Distribuição" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Outras actualizações" @@ -978,7 +957,6 @@ msgstr "_Desmarcar Todos" msgid "_Check All" msgstr "_Verificar Todos" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1013,7 +991,6 @@ msgstr "Da versão: %(old_version)s para %(new_version)s" msgid "Version %s" msgstr "Versão %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1038,7 +1015,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Está disponível a nova versão '%s' da distribuição" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "O índice de software está quebrado" @@ -1053,30 +1029,25 @@ msgstr "" "gestor de pacotes \"Synaptic\" ou execute \"sudo apt-get install -f\" numa " "consola para corrigir este problema em primeiro lugar." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nenhum" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" msgstr "%.1f MB" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" @@ -1086,8 +1057,8 @@ msgstr "" "Tem de verificar por actualizações manualmente\n" "\n" "O seu sistema não procura por actualizações automaticamente. Pode configurar " -"este comportamento em \"Sistema\" -> \"Administração\" -> \"Propriedades do " -"Software\"." +"este comportamento em Fontes de Software no separador " +"Actualizações na Internet" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1096,8 +1067,8 @@ msgstr "Mantenha o seu sistema actualizado" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Não é possível instalar todas as actualizações\r\n" -"\r\n" +"Não é possível instalar todas as actualizações \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1182,10 +1153,15 @@ msgid "_Install Updates" msgstr "_Instalar Actualizações" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "A_ctualização" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "alterações" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "actualizações" @@ -1302,7 +1278,6 @@ msgid "_Install security updates without confirmation" msgstr "_Instalar actualizações de segurança sem confirmação" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1311,11 +1286,12 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"A informação de repositórios está desactualizada\n" +"A informação acerca de software disponível está " +"desactualizada\n" "\n" -"Tem de reler a informação de repositórios para instalar software e " -"actualizações a partir de repositórios recentemente adicionados ou " -"alterados. \n" +"Tem de recarregar a informação sobre software disponível para instalar " +"software e actualizações a partir de repositórios recentemente adicionados " +"ou alterados. \n" "\n" "Necessita de uma ligação internet activa para continuar." @@ -1402,7 +1378,6 @@ msgid "Check for new distribution releases" msgstr "Verificar por novos lançamentos de distribuições" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy msgid "" "If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " @@ -1410,7 +1385,7 @@ msgid "" msgstr "" "Se a opção para verificar automaticamente por actualizações estiver " "desactivada, tem de reler a lista de repositórios manualmente. Esta opção " -"permite desactivar a lembrança mostrada neste caso." +"permite esconder a lembrança mostrada neste caso." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1425,12 +1400,11 @@ msgid "Stores the size of the update-manager dialog" msgstr "Guarda o tamanho do diálogo do gestor de actualizações" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" -"Guarda o estado da lista que contém a lista de alterações e a descrição" +"Guarda o estado do expansor que contém a lista de alterações e a descrição" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" @@ -1440,235 +1414,190 @@ msgstr "Tamanho da Janela" msgid "Configure the sources for installable software and updates" msgstr "Configurar os repositórios de software e actualizações instaláveis" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantido pela comunidade" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Drivers proprietários para dispositivos" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software Restrito" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom com o Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Software de Código Aberto suportado pela Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantido pela comunidade (universal)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software de Código Fonte Aberto mantido pela comunidade" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Controladores não-livres" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Drivers proprietários para dispositivos " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Não-livre (Multiverse)" +msgstr "Software não-livre (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restringido por copyright ou questões legais" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom com o Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 -#, fuzzy msgid "Backported updates" msgstr "Actualizações dos repositórios \"backport\"" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom com o Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Actualizações de Segurança" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Actualizações" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom com o Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Suportado Oficialmente" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizações de Segurança do Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizações do Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backports do Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pela comunidade (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Não-livre (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom com Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Sem mais suporte oficial" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Direitos de autor restritos" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizações de Segurança do Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizações do Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backports do Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Actualizações de Segurança" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatível-DFSG com Dependências Não-Livres" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software compatível-DFSG" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "A descarregar ficheiro %li de %li a velocidade desconhecida" @@ -1691,8 +1620,7 @@ msgstr "Software compatível-DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "A actualizar para Ubuntu 6.10" +#~ "A actualizar para Ubuntu 6.10" #~ msgid "Important security updates of Ubuntu" #~ msgstr "Actualizações de segurança importantes do Ubuntu" @@ -1719,16 +1647,17 @@ msgstr "Software compatível-DFSG" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algumas actualizações requerem a remoção de software. Utilize a função " -#~ "\"Marcar Todas as Actualizações\" ou execute \"sudo apt-get dist-upgrade" -#~ "\" numa consola para actualizar completamente o seu sistema." +#~ "\"Marcar Todas as Actualizações\" ou execute \"sudo apt-get dist-upgrade\" " +#~ "numa consola para actualizar completamente o seu sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "As seguintes actualizações serão ignoradas:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Cerca de %li segundos restantes" @@ -1749,14 +1678,12 @@ msgstr "Software compatível-DFSG" #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "" -#~ "Uma única ferramenta de gestão de software pode ser executada ao mesmo " -#~ "tempo" +#~ "Uma única ferramenta de gestão de software pode ser executada ao mesmo tempo" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Por favor feche a outra aplicação primeiro, por ex. 'aptitude' ou " -#~ "'Synaptic'." +#~ "Por favor feche a outra aplicação primeiro, por ex. 'aptitude' ou 'Synaptic'." #~ msgid "Channels" #~ msgstr "Repositórios" @@ -1806,8 +1733,8 @@ msgstr "Software compatível-DFSG" #~ msgstr "Ubuntu 6.06 LTS Backports" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Ao pesquisar o seu repositório de informação não foi encontrada nenhuma " #~ "entrada válida de actualização.\n" @@ -1826,15 +1753,15 @@ msgstr "Software compatível-DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "A efectuar download de alterações\n" +#~ "A efectuar download de " +#~ "alterações\n" #~ "\n" #~ "É necessário obter as alterações de um servidor central" #~ msgid "" #~ "There is not enough free space on your system to download the required " -#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" -#~ "get clean'" +#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get " +#~ "clean'" #~ msgstr "" #~ "Não existe espaço suficiente no seu sistema para descarregar os pacotes " #~ "necessários. Por favor liberte algum espaço antes de tentar novamente por " @@ -1847,8 +1774,8 @@ msgstr "Software compatível-DFSG" #~ "Some problem occured during the fetching of the packages. This is most " #~ "likely a network problem. Please check your network and try again. " #~ msgstr "" -#~ "Ocorreu algum problema ao descarregar pacotes. Trata-se provavelmente de " -#~ "um problema de rede. Por favor verifique a rede e tente novamente. " +#~ "Ocorreu algum problema ao descarregar pacotes. Trata-se provavelmente de um " +#~ "problema de rede. Por favor verifique a rede e tente novamente. " #~ msgid "" #~ "%s packages are going to be removed.\n" @@ -1873,8 +1800,8 @@ msgstr "Software compatível-DFSG" #~ msgstr "Tem a certeza que pretende cancelar?" #~ msgid "" -#~ "Canceling during a upgrade can leave the system in a unstable state. It " -#~ "is strongly adviced to continue the operation. " +#~ "Canceling during a upgrade can leave the system in a unstable state. It is " +#~ "strongly adviced to continue the operation. " #~ msgstr "" #~ "Cancelar durante uma actualização pode deixar o seu sistema num estado " #~ "instável. É fortemente aconselhado a prosseguir a operação. " @@ -1889,4 +1816,4 @@ msgstr "Software compatível-DFSG" #~ msgstr "Nunca exibir esta mensagem novamente" #~ msgid "CD" -#~ msgstr "CD" +#~ msgstr "CD" \ No newline at end of file diff --git a/po/pt_BR.po b/po/pt_BR.po index a6f8f269..a71e37c0 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-02 11:49+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: Andre Noel \n" "Language-Team: Ubuntu-BR \n" "MIME-Version: 1.0\n" @@ -54,7 +54,6 @@ msgstr "Após um mês" msgid "After %s days" msgstr "Após %s dias" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,7 +61,6 @@ msgstr "Atualizações do %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "Erro removendo a chave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "A chave selecionada não pode ser removida. Por favor reporte isto como um " "bug." @@ -169,7 +167,6 @@ msgstr "Não foi possível atualizar os meta-pacotes requeridos" msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Não foi possível processar a atualização" @@ -187,7 +184,6 @@ msgstr "" "Por favor reporte esse erro no pacote 'update-manager' e inclua os arquivos " "contidos em /var/log/dist-upgrade/ no relatório de erros." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro autenticando alguns pacotes" @@ -215,7 +211,6 @@ msgstr "" "Não foi possível instalar um pacote requerido. Por favor relate isto como um " "erro. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Não foi possível determinar o meta-pacote" @@ -296,7 +291,6 @@ msgstr "" "'Sim' atualizará todas '%s' para '%s' entradas.\n" "Se você selecionar 'não' a atualização será cancelada." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Gerar fontes padrão?" @@ -370,7 +364,6 @@ msgstr "" "de disco no %s. Esvazie sua lixeira e remova pacotes temporários de " "instalações anteriores usando 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Você quer iniciar a atualização?" @@ -417,6 +410,11 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" +"Canonical Ltd. não provê mais suporte para os seguintes pacotes de " +"softwares. Você pode continuar obtendo suporte da comunidade.\n" +"\n" +"Se você não tiver habilitado os softwares mantidos pela comunidade " +"(universe), esses pacotes serão sugeridos para remoção no próximo passo." #: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" @@ -442,7 +440,6 @@ msgstr "" "Alguns problemas ocorreram durante a limpeza. Por favor veja a mensagem " "abaixo para maiores informações. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Restaurando o estado original do sistema" @@ -453,7 +450,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -461,7 +457,7 @@ msgstr "Verificando o gerenciador de pacotes" #: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "" +msgstr "Preparação para a atualização falhou" #: ../DistUpgrade/DistUpgradeControler.py:672 msgid "" @@ -469,6 +465,9 @@ msgid "" "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" +"Preparação do sistema para atualização falhou. Pro favor, reporte isso como " +"um bug do pacote 'update-manager' e inclua os arquivos no /var/log/dist-" +"upgrade/ no relatório do bug." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -487,8 +486,8 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Depois que a sua informação do pacote foi atualizada, o pacote essencial '%" -"s' não pôde mais ser encontrado.\n" +"Depois que a sua informação do pacote foi atualizada, o pacote essencial " +"'%s' não pôde mais ser encontrado.\n" "Isso indica uma falha grave, por favor reporte isso como um erro no pacote " "do 'update-manager' e inclua os arquivos contidos em /var/log/dist-upgrade/ " "no relatório de erros." @@ -509,7 +508,6 @@ msgstr "Buscando programas obsoletos" msgid "System upgrade is complete." msgstr "A atualização do sistema está completa." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -526,7 +524,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Obtendo arquivo %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Restam %s aproximadamente" @@ -538,7 +536,6 @@ msgstr "Obtendo arquivo %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando mudanças" @@ -557,8 +554,7 @@ msgstr "" "'update-manager' e inclua os arquivos em /var/log/dist-upgrade/ no relatório " "de erros." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -567,56 +563,57 @@ msgstr "" "Substituir o arquivo de configurações customizadas\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Você irá perder qualquer mudança que tenha feito nesse arquivo de " +"configuração se você escolher substituir ele por uma versão mais nova." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "O comando 'diff' não foi encontrado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Ocorreu um erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Por favor relate isto como um bug e inclua os arquivos /var/log/dist-upgrade." -"log e /var/log/dist-upgrade-apt.log em seu relatório. A atualização será " -"abortada agora.\n" +"Por favor relate isto como um bug e inclua os arquivos /var/log/dist-" +"upgrade.log e /var/log/dist-upgrade-apt.log em seu relatório. A atualização " +"será abortada agora.\n" "Seu sources.list original foi salvo em /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pacote será removido." msgstr[1] "%d pacotes serão removidos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d novo pacote será instalado." msgstr[1] "%d novos pacotes serão instalados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pacote será atualizado." msgstr[1] "%d pacotes serão atualizados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -627,7 +624,7 @@ msgstr "" "\n" "Você tem que baixar um total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -635,17 +632,16 @@ msgstr "" "A obtenção e instalação da atualização pode levar muitas horas e não poderá " "ser cancelada depois." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "Para evitar perda de dados, feche todas as aplicações e documentos." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Seu sistema está atualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -653,17 +649,17 @@ msgstr "" "Não há atualizações disponíveis para o seu sistema. A atualização será " "cancelada agora." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Remover %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Atualizar %s" @@ -689,13 +685,14 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Esse download irá durar %s com uma conexão ADSL de 1Mbps e %s com um modem " +"56k" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -711,7 +708,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -731,7 +727,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Reinicie o seu sistema para finalizar a atualização" +msgstr "" +"Reinicie o seu sistema para finalizar a atualização" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -775,17 +772,18 @@ msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "" +msgstr "_Cancelar Atualização" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Continuar" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_Manter" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Substituir" @@ -803,7 +801,7 @@ msgstr "Continua_r Atualização" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "" +msgstr "_Iniciar Atualização" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -821,7 +819,6 @@ msgstr "Não foi possível obter as notas de lançamento" msgid "Please check your internet connection." msgstr "Por favor, verifique sua conexão de internet." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Não foi possível executar a ferramenta de atualização" @@ -897,12 +894,12 @@ msgstr "" #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "" +msgstr "Baixando arquivo %(current)li de %(total)li a %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 #, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "" +msgstr "Baixando arquivo %(current)li de %(total)li" #: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" @@ -913,24 +910,25 @@ msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" +"Essa lista de mudanças não está disponível ainda.\n" +"Por favor tente mais tarde." #: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" +"Falha ao baixar a lista de mudanças. \n" +"Por favor verifique sua conexão internet." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Principais Atualizações de Segurança" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Atualizações recomendadas" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Atualizações sugeridas" @@ -941,9 +939,8 @@ msgstr "Backports" #: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "" +msgstr "Atualizações da distribuição" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Outras atualizações" @@ -955,7 +952,7 @@ msgstr "Versão %s: \n" #: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." -msgstr "" +msgstr "Baixando lista de mudanças..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" @@ -965,7 +962,6 @@ msgstr "_Desmarcar Todos" msgid "_Check All" msgstr "_Marcar Todos" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -993,14 +989,13 @@ msgstr "Verificando por atualizações" #: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "" +msgstr "Da versão %(old_version)s para %(new_version)s" #: ../UpdateManager/UpdateManager.py:830 #, python-format msgid "Version %s" msgstr "Versão %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1025,7 +1020,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Uma nova versão da distribuição '%s' está disponível" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "O index do software está quebrado" @@ -1040,23 +1034,19 @@ msgstr "" "Gerenciador de Pacotes \"Synaptic\" ou execute \"sudo apt-get install -f\" " "em um terminal para resolver esse problema primeiro." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nenhum" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1069,6 +1059,11 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" +"Você deve marcar para a atualização manualmente\n" +"\n" +"Seu sistema não verifica as atualizações automaticamente. Você deve " +"configurar esse comportamento em Fontes de Softwares na aba " +"Atualizações Internet." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1161,10 +1156,15 @@ msgid "_Install Updates" msgstr "_Instalar Atualizações" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "At_ualizar" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "mudanças" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "atualizações" @@ -1288,8 +1288,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"A informação sobre programas disponíveis está desatualizada\n" +"A informação sobre programas disponíveis está " +"desatualizada\n" "\n" "Para instalar programas e atualizações de fontes recentemente adicionadas ou " "alteradas, você tem que recarregar as informações sobre programas " @@ -1399,7 +1399,8 @@ msgstr "Exibir detalhes de uma atualização" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "Armazena o tamanho da caixa de diálogo do gerenciador de atualizações" +msgstr "" +"Armazena o tamanho da caixa de diálogo do gerenciador de atualizações" #: ../data/update-manager.schemas.in.h:7 msgid "" @@ -1416,233 +1417,190 @@ msgstr "O tamanho da janela" msgid "Configure the sources for installable software and updates" msgstr "Configurar os canais de software e atualizações via internet" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantido pela comunidade" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Controladores proprietários para dispositivos" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software restrito" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom com Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" -msgstr "" +msgstr "Programa de Código Aberto mantido pela Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantido pela Comunidade (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Programa de Código Aberto mantido pela Comunidade" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Drivers Não-livres" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Controladores proprietários para dispositivos " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Programas restritos (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "Software restrito por copyright ou problemas legais" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom com o Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Atualizações \"Backport\"" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom com o Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Atualizações de Segurança do Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Atualizações do Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Backports do Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom com o Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Suportado oficialmente" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Atualizações de Segurança do Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Atualizações do Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backports do Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pela Comunidade (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Não-livres (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom com Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Não é mais suportado oficialmente" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restrito" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Atualizações de Segurança do Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Atualizações do Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backports do Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Atualizações de Segurança do Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testando)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (instável)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Programa compatível com a DFSG mas com Dependências Não-Livres" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Programas não compatíveis com a DFSG" +#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1656,22 +1614,22 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "A unresolvable problem occured while calculating the upgrade.\n" #~ "\n" -#~ "Please report this bug against the 'update-manager' package and include " -#~ "the files in /var/log/dist-upgrade/ in the bugreport." +#~ "Please report this bug against the 'update-manager' package and include the " +#~ "files in /var/log/dist-upgrade/ in the bugreport." #~ msgstr "" -#~ "Um problema sem solução ocorreu durante o cálculo da atualização. Por " -#~ "favor relate isto como um erro." +#~ "Um problema sem solução ocorreu durante o cálculo da atualização. Por favor " +#~ "relate isto como um erro." #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " -#~ "edubuntu-desktop package and it was not possible to detect which version " -#~ "of ubuntu you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" #~ "O seu sistema não possui um pacote ubuntu-desktop, kubuntu-desktop ou " -#~ "edubuntu-desktop e não foi possível detectar qual versão do Ubuntu você " -#~ "está executando.\n" +#~ "edubuntu-desktop e não foi possível detectar qual versão do Ubuntu você está " +#~ "executando.\n" #~ "Por favor instale um desses pacotes primeiro usando o Synaptic ou apt-get " #~ "antes de continuar." @@ -1680,9 +1638,9 @@ msgstr "Programas não compatíveis com a DFSG" #~ "enable them after the upgrade with the 'software-properties' tool or with " #~ "synaptic." #~ msgstr "" -#~ "Algumas entradas de terceiros de seu sources.list foram desabilitadas. " -#~ "Você poderá reabilitá-las depois de atualizar com a ferramenta " -#~ "'propriedades do programa' ou com o synaptic." +#~ "Algumas entradas de terceiros de seu sources.list foram desabilitadas. Você " +#~ "poderá reabilitá-las depois de atualizar com a ferramenta 'propriedades do " +#~ "programa' ou com o synaptic." #~ msgid "Some software no longer officially supported" #~ msgstr "Alguns softwares não são mais oficialmente suportado." @@ -1700,6 +1658,7 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Se você não tem o repositório 'universe' habilitado, estes pacotes serão " #~ "sugeridos à remoção no próximo passo. " +#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1707,16 +1666,19 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Substituir arquivo de configuração\n" #~ "'%s' ?" +#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s pacote será removido." #~ msgstr[1] "%s pacotes serão removidos." +#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s novo pacote será instalado." #~ msgstr[1] "%s novos pacotes serão instalados." +#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s pacote será atualizado." @@ -1728,9 +1690,10 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Your system has already been upgraded." #~ msgstr "Seu sistema já foi atualizado." +#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a " -#~ "1Mbit DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " +#~ "DSL connection" #~ msgstr "" #~ "Este download demorará cerca de %s com um modem 56k e cerca de %s com uma " #~ "conexão 1Mbit DSL." @@ -1738,26 +1701,27 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Atualizando para o Ubuntu 6.10" +#~ "Atualizando para o Ubuntu 6.10" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or " -#~ "with the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " #~ msgstr "" #~ "Falha na verificação da atualização. Pode haver um problema com a rede ou " #~ "com o servidor. " +#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Obtendo arquivo %li de %li a %s/s" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Obtendo arquivo %li de %li a uma velocidade desconhecida" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" -#~ "A lista de alterações não está disponível ainda. Por favor, tente " -#~ "novamente mais tarde." +#~ "A lista de alterações não está disponível ainda. Por favor, tente novamente " +#~ "mais tarde." #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " @@ -1793,21 +1757,21 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Select _All" #~ msgstr "Selecion_ar Todos" +#, python-format #~ msgid "From version %s to %s" #~ msgstr "Da versão %s para %s" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" #~ "Você deve verificar por atualizações manualmente\n" #~ "\n" #~ "O seu sistema não procura por atualizações automaticamente. Você pode " -#~ "configurar essa opção em \"Sistema\" -> \"Administração\" -> " -#~ "\"Propriedades de Programas\"." +#~ "configurar essa opção em \"Sistema\" -> \"Administração\" -> \"Propriedades " +#~ "de Programas\"." #~ msgid "" #~ "Examining your system\n" @@ -1817,8 +1781,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "" #~ "Verificando as Atualizações Disponíveis\n" #~ "\n" -#~ "Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades " -#~ "de segurança, e prover novas funcionalidades para você." +#~ "Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades de " +#~ "segurança, e prover novas funcionalidades para você." #~ msgid "Cancel _Download" #~ msgstr "Cancelar _Download" @@ -1826,8 +1790,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and " -#~ "updates from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" @@ -1839,8 +1803,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Você necessita uma conexão de internet para continuar." #~ msgid "" -#~ "Enter the complete APT line of the source that you want to add\n" +#~ "Enter the complete APT line of the source that you want to " +#~ "add\n" #~ "\n" #~ "The APT line includes the type, location and components of a source, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1853,8 +1817,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in " -#~ "this case." +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." #~ msgstr "" #~ "Se a verificação automática de atualizações for desativada, você terá que " #~ "recarregar manualmente a lista de canais. Esta opção perminte que você " @@ -1881,17 +1845,18 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algumas atualizações requerem a remoção de outros pacotes.Use a função " -#~ "\"Marcar Todas Atualizações\" do gerenciador de pacotes \"Synaptic\" ou " -#~ "rode \"sudo apt-get dist-upgrade\" em um terminal para atualizar seu " -#~ "sistema completamente." +#~ "\"Marcar Todas Atualizações\" do gerenciador de pacotes \"Synaptic\" ou rode " +#~ "\"sudo apt-get dist-upgrade\" em um terminal para atualizar seu sistema " +#~ "completamente." #~ msgid "The following updates will be skipped:" #~ msgstr "As seguintes atualizações serão puladas:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Aproximadamente %li segundos restando" @@ -1912,8 +1877,7 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "" -#~ "Apenas uma ferramenta de gerenciamento de pacotes pode rodar ao mesmo " -#~ "tempo" +#~ "Apenas uma ferramenta de gerenciamento de pacotes pode rodar ao mesmo tempo" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." @@ -1972,8 +1936,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Backports do Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Enquanto analisava as informações de repositórios não foi encontrada uma " #~ "entrada válida para a atualização.\n" @@ -2024,12 +1988,12 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "There is not enough free space on your system to download the required " -#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" -#~ "get clean'" +#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get " +#~ "clean'" #~ msgstr "" #~ "Não há espaço suficiente no seu sistema para obter os pacotes requeridos. " -#~ "Por favor libere algum espaço antes de tentar novamente. Como: 'sudo apt-" -#~ "get clean'" +#~ "Por favor libere algum espaço antes de tentar novamente. Como: 'sudo apt-get " +#~ "clean'" #~ msgid "Error fetching the packages" #~ msgstr "Erro ao obter os pacotes" @@ -2039,8 +2003,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ "likely a network problem. Please check your network and try again. " #~ msgstr "" #~ "Alguns problemas ocorreram durante a obtenção dos pacotes. Isso é bem " -#~ "provável que seja por problemas de rede. Por favor verifique a sua " -#~ "conexão de rede e tente novamente. " +#~ "provável que seja por problemas de rede. Por favor verifique a sua conexão " +#~ "de rede e tente novamente. " #~ msgid "" #~ "%s packages are going to be removed.\n" @@ -2065,11 +2029,11 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Tem certeza que deseja cancelar?" #~ msgid "" -#~ "Canceling during a upgrade can leave the system in a unstable state. It " -#~ "is strongly adviced to continue the operation. " +#~ "Canceling during a upgrade can leave the system in a unstable state. It is " +#~ "strongly adviced to continue the operation. " #~ msgstr "" -#~ "Cancelar durante a atualização pode deixar o sistema em um estado " -#~ "instável. É fortemente recomendável que a operação continue. " +#~ "Cancelar durante a atualização pode deixar o sistema em um estado instável. " +#~ "É fortemente recomendável que a operação continue. " #, fuzzy #~ msgid "Sources" @@ -2092,13 +2056,13 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgid "Repository" #~ msgstr "Repository" @@ -2118,16 +2082,16 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "" #~ "Authentication keys\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes " -#~ "it possible to check verify the integrity of the software you download." +#~ "You can add and remove authentication keys in this dialogue. A key makes it " +#~ "possible to check verify the integrity of the software you download." #~ msgid "A_uthentication" #~ msgstr "A_uthentication" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " @@ -2152,11 +2116,11 @@ msgstr "Programas não compatíveis com a DFSG" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not " -#~ "change user-installed keys." +#~ "Restore the default keys shiped with the distribution. This will not change " +#~ "user-installed keys." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Set _maximum size for the package cache" @@ -2189,13 +2153,11 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Changes not found, the server may not be updated yet." @@ -2204,11 +2166,11 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "The updates are being applied." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgid "Updating package list..." #~ msgstr "Updating package list..." @@ -2218,33 +2180,33 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "There is a new release of Ubuntu available!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgid "Never show this message again" #~ msgstr "Never show this message again" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Initializing and getting list of updates..." @@ -2276,10 +2238,10 @@ msgstr "Programas não compatíveis com a DFSG" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." \ No newline at end of file diff --git a/po/qu.po b/po/qu.po index 78b14d30..ca3261c1 100644 --- a/po/qu.po +++ b/po/qu.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-09 15:50+0000\n" +"Last-Translator: Rosetta Administrators \n" "Language-Team: Quechua \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +55,6 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -160,7 +158,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -173,7 +170,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,7 +192,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -256,7 +251,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -313,7 +307,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -376,7 +369,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -387,7 +379,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -438,7 +429,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -454,7 +444,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -466,7 +456,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -482,60 +471,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -543,39 +530,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -601,7 +587,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -621,11 +606,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -692,6 +676,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -727,7 +712,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -817,17 +801,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -840,7 +821,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -862,7 +842,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -897,7 +876,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -919,7 +897,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -931,23 +908,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1044,10 +1017,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1269,229 +1246,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/ro.po b/po/ro.po index 5bde5c14..169a83c3 100644 --- a/po/ro.po +++ b/po/ro.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:40+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Sami POTIRCA \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3;plural=(n==1?0:(n==0||((n%100)>0&&(n%100)<20))?" -"1:2)\n" +"Plural-Forms: " +"nplurals=3;plural=(n==1?0:(n==0||((n%100)>0&&(n%100)<20))?1:2)\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,7 +56,6 @@ msgstr "După o lună" msgid "After %s days" msgstr "După %s zile" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "%s actualizări" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "Server principal" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,11 +122,12 @@ msgid "Error removing the key" msgstr "Eroare la ştergerea cheii." #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Cheia selectată nu poate fi ştearsă. Raportaţi această eroare." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -169,7 +167,6 @@ msgstr "Este imposibilă actualizarea meta-pachetelor cerute" msgid "A essential package would have to be removed" msgstr "Un pachet esenţial ar trebui şters" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Imposibil de calculat actualizarea" @@ -182,7 +179,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "Error authenticating some packages" @@ -211,7 +207,6 @@ msgstr "" "Nu am reuşit să instalez pachetul cerut. Vă rugăm raportaţi acest lucru ca " "bug (eroare). " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Imposibl de ghicit meta-pachet" @@ -290,7 +285,6 @@ msgstr "" "Doriţi să rescrieţi fişierul 'sources.list' oricum? Dacă selectaţi 'Da' se " "vor modifica toate intrările din '%s' în '%s'." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generez surse implicite?" @@ -359,7 +353,6 @@ msgstr "" "pe disc pe %s. Goliţi coşul de gunoi şi ştergeţi pachetele temporare de la " "instalările vechi folosind 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Vrei sa începi upgrade-ul?" @@ -431,7 +424,6 @@ msgstr "" "O problemă a apărut în timpul acţiunii de curăţenie. Vă rugăm vedeţi mesajul " "de mai jos pentru informaţii suplimentare. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 #, fuzzy msgid "Restoring original system state" @@ -443,7 +435,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -478,8 +469,8 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"După ce informaţiile despre pachete au fost actualizate pachetul esenţial '%" -"s' nu mai poate fi găsit.\n" +"După ce informaţiile despre pachete au fost actualizate pachetul esenţial " +"'%s' nu mai poate fi găsit.\n" "Aceasta indică o eroare serioasă, vă rugăm raportaţi o eroare la pachetul " "'update-manager' şi includeţi fişierele din /var/log/dist-upgrade/ în raport." @@ -499,7 +490,6 @@ msgstr "Caut software învechit" msgid "System upgrade is complete." msgstr "Actualizarea sistemului este completă" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -515,7 +505,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Descarc fişierul %li din %li la %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Mai rămâne aproximativ %s" @@ -527,7 +517,6 @@ msgstr "Se descarcă fişierul %li din %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Se aplică modificările" @@ -545,44 +534,42 @@ msgstr "" "Actualizarea se opreşte acum. Vă rugăm raportaţi o eroare la pachetul " "'update-manager' şi includeţi fişierele din /var/log/dist-upgrade/ în raport." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Comanda 'diff' nu a putut fi localizată" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "S-a produs o eroare fatală" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Vă rugăm raportaţi aceasta ca eroare şi includeţi fişierele /var/log/dist-" "upgrade/main.log şi /var/log/dist-upgrade/apt.log în raportul dumneavoastră. " "Actualizarea se orpeşte acum.\n" -"Fişierul iniţial sources.list a fost salvat în /etc/apt/sources.list." -"distUpgrade." +"Fişierul iniţial sources.list a fost salvat în " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -590,7 +577,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -598,7 +585,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -606,7 +593,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -617,7 +604,7 @@ msgstr "" "\n" "Trebuie să descărcaţi un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -625,35 +612,34 @@ msgstr "" "Descărcarea şi intalarea actualizărilor poate dura câteva ore şi nu poate fi " "abandonată mai târziu." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pentru a preveni pierderea datelor închideţi toate aplicaţiile şi " "documentele." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sistemul dumneavoastră este actualizat la zi!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Şterge %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Instalează %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Actualizează %s" @@ -679,7 +665,6 @@ msgid "%li seconds" msgstr "%li secunde" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -701,7 +686,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -777,6 +761,7 @@ msgid "_Keep" msgstr "_Păstrează" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Înlocuieşte" @@ -813,7 +798,6 @@ msgstr "Nu pot descărca notiţele de lansare" msgid "Please check your internet connection." msgstr "Verificaţi conexiunea internet" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nu pot rula utilitarul de actualizare" @@ -913,17 +897,14 @@ msgstr "" "Nu am putut descărca lista modificărilor. Vă rog să verificaţi dacă aveţi o " "conexiune internet activă." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizări importante de securitate" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizări recomandate" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Pachete propuse" @@ -938,7 +919,6 @@ msgstr "Actualizări de securitate Ubuntu 5.04" msgid "Distribution updates" msgstr "_Continuă Actualizarea" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Alte actualizări" @@ -961,7 +941,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -989,7 +968,7 @@ msgid "Checking for updates" msgstr "_Instalează actualizarile" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Versiunea nouă: %s (Mărime: %s)" @@ -998,7 +977,6 @@ msgstr "Versiunea nouă: %s (Mărime: %s)" msgid "Version %s" msgstr "Versiunea %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1023,7 +1001,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Noua versiune '%s' este disponibilă" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Indexul software este deteriorat" @@ -1038,23 +1015,19 @@ msgstr "" "managerul de pachete \"Synaptic\" sau rulaţi \"sudo apt-get install -f\" " "într-un terminal pentru a remedia această problemă." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nimic" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1162,10 +1135,15 @@ msgid "_Install Updates" msgstr "_Instalează actualizări" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "A_ctualizează" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "modificări" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "actualizări" @@ -1322,9 +1300,9 @@ msgstr "" "Introduceţi linia APT completă a locaţiei pe care doriţi să o " "adăugaţi\n" "\n" -"Linia APT conţine tipul, adresa şi conţinutul unei locaţii, de exemplu" -"\"deb http://ftp.debian.org sarge main\". Puteţi găsi o descriere " -"detaliată a sintaxei în documentaţie." +"Linia APT conţine tipul, adresa şi conţinutul unei locaţii, de " +"exemplu\"deb http://ftp.debian.org sarge main\". Puteţi găsi o " +"descriere detaliată a sintaxei în documentaţie." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1407,235 +1385,191 @@ msgstr "Dimensiunea ferestrei" msgid "Configure the sources for installable software and updates" msgstr "Configurează sursele pentru software instalabil şi actualizări" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Pachete întreţinute de comunitate (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Software în contribuţie" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom cu Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Pachete întreţinute de comunitate (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Pachete întreţinute de comunitate (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Pachete întreţinute de comunitate (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Pachete non-libere" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software restricţionat (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom cu Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Actualizări portate înapoi" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom cu Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizări de Securitate Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualizări Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom cu Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Pachete suportate oficial" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizări de Securitate Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizări Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Pachete întreţinute de comunitate (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Pachete non-libere (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom cu Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Pachete suportate oficial" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restrictiv" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizări de securitate Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizări Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualizări de securitate Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatibil DFSG cu dependenţe negratuite" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software incompatibil DFSG" @@ -1753,13 +1687,13 @@ msgstr "Software incompatibil DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Actualizări disponibile\n" #~ "\n" -#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările " -#~ "apăsând pe butonul Instalează." +#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările apăsând " +#~ "pe butonul Instalează." #~ msgid "Repository" #~ msgstr "Locaţie" @@ -1779,8 +1713,8 @@ msgstr "Software incompatibil DFSG" #~ msgstr "" #~ "Chei autentificare\n" #~ "\n" -#~ "Din acest dialog puteţi adăuga sau şterge chei de autentificare. Rolul " -#~ "unei chei estede a permite verificarea integrităţii unui pachet software " +#~ "Din acest dialog puteţi adăuga sau şterge chei de autentificare. Rolul unei " +#~ "chei estede a permite verificarea integrităţii unui pachet software " #~ "descărcat." #~ msgid "A_uthentication" @@ -1788,8 +1722,8 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Adăugaţi o nouă cheie în keyring-ul de încredere. Asiguraţi-vă că aţi " #~ "obţinut cheia printr-un canal sigur şi că aveţi încredere în proprietarul " @@ -1806,8 +1740,8 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Restaurează cheile implicite furnizate împreună cu distribuţia. Această " #~ "acţiune nu va influenţa cheile instalate ca utilizator." @@ -1832,8 +1766,8 @@ msgstr "Software incompatibil DFSG" #~ msgstr "Actualizările sunt în curs de aplicare." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Puteţi rula doar un singur manager de pachete la un moment dat. Vă rog să " #~ "închideţi ceilalţi manageri mai întâi." @@ -1843,8 +1777,8 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Puteţi rula doar un singur manager de pachete la un moment dat. Vă rog să " #~ "închideţi ceilalţi manageri mai întâi." @@ -1867,13 +1801,13 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Actualizări disponibile\n" #~ "\n" -#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările " -#~ "apăsând pe butonul Instalează." +#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările apăsând " +#~ "pe butonul Instalează." #~ msgid "0" -#~ msgstr "0" +#~ msgstr "0" \ No newline at end of file diff --git a/po/ru.po b/po/ru.po index a5b5e36a..da731af8 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-03 02:07+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:16+0000\n" "Last-Translator: Igor Zubarev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,7 +56,6 @@ msgstr "Через месяц" msgid "After %s days" msgstr "Через %s дней" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "%s обновлений" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Основной сервер" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "Ошибка при удалении ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Выбранный вами ключ нельзя удалить. Пожалуйста, отправьте отчет об ошибке." @@ -168,7 +166,6 @@ msgstr "Невозможно обновить требуемые мета-пак msgid "A essential package would have to be removed" msgstr "Будет удален необходимый пакет" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Невозможно подготовить обновление системы" @@ -185,7 +182,6 @@ msgstr "" "Пожалуйста, отправьте отчет об ошибке программы 'update-manager' и добавьте " "файлы в /var/log/dist-upgrade/ к отчету." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Ошибка при проверке подлинности некоторых пакетов" @@ -213,7 +209,6 @@ msgstr "" "Невозможно установить необходимый пакет. Пожалуйста, отправьте отчет об " "ошибке. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Невозможно подобрать мета-пакет" @@ -293,7 +288,6 @@ msgstr "" "обновлены все записи '%s' на '%s'.\n" "Ответ 'Нет' отменит обновление." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Сгенерировать источники по умолчанию?" @@ -306,8 +300,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"В результате просмотра 'sources.list' не найдена действующая запись для '%" -"s'.\n" +"В результате просмотра 'sources.list' не найдена действующая запись для " +"'%s'.\n" "\n" "Добавить записи по умолчанию для '%s'? Ответ 'Нет' прервет обновление." @@ -364,7 +358,6 @@ msgstr "" "%s. Очистите вашу корзину и удалите временные пакеты, оставшиеся от " "предыдущих установок с помощью команды 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Вы хотите начать обновление системы?" @@ -441,7 +434,6 @@ msgstr "" "При очистке возникла проблема. Более полная информация приведена в сообщении " "ниже. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Восстановление первоначального состояния системы" @@ -452,7 +444,6 @@ msgid "Fetching backport of '%s'" msgstr "Загрузка '%s' из репозитария backports" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -460,7 +451,7 @@ msgstr "Проверка менеджера пакетов" #: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" -msgstr "" +msgstr "Подготовка к обновлению завершилась неудачей" #: ../DistUpgrade/DistUpgradeControler.py:672 msgid "" @@ -468,6 +459,9 @@ msgid "" "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" +"Подготовка системы к обновлению завершилась неудачей. Пожалуйста, отправьте " +"отчет об ошибке приложения 'update-manager' и приложите к отчету файлы в " +"/var/log/dist-upgrade/." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -506,7 +500,6 @@ msgstr "Поиск устаревших программ" msgid "System upgrade is complete." msgstr "Обновление системы завершено." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -522,7 +515,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Загрузка файла %li из %li со скоростью %s/с" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Осталось приблизительно %s минут" @@ -534,7 +527,6 @@ msgstr "Загрузка файла %li из %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Применение изменений" @@ -552,8 +544,7 @@ msgstr "" "Обновление прервано. Пожалуйста сообщите об ошибке в пакете 'update-manager' " "и включите файлы, находящиеся в /var/log/dist-upgrade/ в сообщение об ошибке" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -562,35 +553,36 @@ msgstr "" "Заменить изменённый конфигурационный файл\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Вы потеряете все изменения, которые сделали в этом файле конфигурации, если " +"замените его новой версией." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Не найдена команда 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Произошла неисправимая ошибка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Пожалуйста, отправьте отчет об ошибке и включите в него файлы /var/log/dist-" "upgrade.log и /var/log/dist-upgrade-apt.log. Обновление прервано.\n" -"Оригинальный файл sources.list был сохранен как /etc/apt/sources.list." -"distUpgrade." +"Оригинальный файл sources.list был сохранен как " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -598,7 +590,7 @@ msgstr[0] "%d пакет будет удален." msgstr[1] "%d пакета будут удалены." msgstr[2] "%d пакетов будут удалены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -606,7 +598,7 @@ msgstr[0] "%d новый пакет будет установлен." msgstr[1] "%d новых пакета будут установлены." msgstr[2] "%d новых пакетов будут установлены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -614,7 +606,7 @@ msgstr[0] "%d пакет будет обновлен." msgstr[1] "%d пакета будут обновлены." msgstr[2] "%d пакетов будут обновлены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -625,7 +617,7 @@ msgstr "" "\n" "Всего требуется загрузить %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -633,35 +625,34 @@ msgstr "" "Загрузка и установка обновлений может занять несколько часов и не может быть " "прервано в любой момент." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Чтобы избежать потерь данных, закройте все открытые приложения и документы." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Ваша система не требует обновления" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Для вашей системы не доступно ни одно обновление. Обновление будет отменено." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Удалить %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Установить %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Обновить %s" @@ -687,13 +678,14 @@ msgid "%li seconds" msgstr "%li секунд" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Эта загрузка займет примерно %s при использовании 1Мбит DSL-соединения и " +"примерно %s при использовании модема на скорости 56кбит" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -702,12 +694,12 @@ msgstr "Требуется перезагрузка" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "Обновление завершено и требуется перезагрузка. Перезагрузиться сейчас?" +msgstr "" +"Обновление завершено и требуется перезагрузка. Перезагрузиться сейчас?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -771,17 +763,18 @@ msgstr "Терминал" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "" +msgstr "Отменить обновление" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "Продолжить" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "Оставить" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "Заменить" @@ -799,7 +792,7 @@ msgstr "Продолжить обновление" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "" +msgstr "Начать обновление" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -817,7 +810,6 @@ msgstr "Не могу загрузить сведения о релизе" msgid "Please check your internet connection." msgstr "Пожалуйста, проверьте соединение с интернет." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Невозможно запустить утилиту обновления" @@ -908,24 +900,25 @@ msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" +"Список изменений еще недоступен.\n" +"Пожалуйста, повторите попытку позже." #: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" +"Ошибка при загрузке списка изменений. \n" +"Пожалуйста, проверьте ваше соединение с Интернет." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Важные обновления безопасности" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Рекомендованые обновления" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Предлагаемые обновления" @@ -938,7 +931,6 @@ msgstr "Бэкпорты" msgid "Distribution updates" msgstr "Обновления дистрибутива" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Прочие обновления" @@ -960,7 +952,6 @@ msgstr "Сбросить все" msgid "_Check All" msgstr "Проверить все" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -996,7 +987,6 @@ msgstr "С версии %(old_version)s на %(new_version)s" msgid "Version %s" msgstr "Версия %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1021,7 +1011,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Доступен новый релиз дистрибутива '%s'" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Индекс программ поврежден" @@ -1036,23 +1025,19 @@ msgstr "" "используйте менеджер пакетов \"Synaptic\" или запустите в терминале \"sudo " "apt-get install -f\"." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Нет" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 Кб" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f Кб" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1161,10 +1146,15 @@ msgid "_Install Updates" msgstr "Установить обновления" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "Обновить" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "изменения" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "обновления" @@ -1413,251 +1403,207 @@ msgstr "Размер окна" msgid "Configure the sources for installable software and updates" msgstr "Настроить источники установки программ и обновлений" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Поддерживается сообществом" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Проприетарные драйвера устройств" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Несвободное ПО" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CDROM с Ubuntu 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" -msgstr "" +msgstr "Open Source приложения, поддерживаемые Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Поддерживается сообществом (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Поддерживаемое сообществом свободное ПО" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Несвободные драйвера" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Проприетарные драйвера устройств " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Несвободное обеспечение (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "Программы, ограниченные патентами или законами" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD с Ubuntu 6.06 LTS 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Обновления в бэкпортах" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD с Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Обновления безопасности Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Обновления Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 бэкпорты" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официально поддерживается" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Обновления безопасности Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Обновления Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 бэкпорты" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Поддерживается сообществом (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Несвободное (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Официально больше не поддерживается" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Ограниченные авторские права" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Обновления безопасности Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Обновления Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 бэкпорты" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Обновления безопасности Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-совместимое ПО с зависимостями от несвободного ПО" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Не-DFSG-совместимое ПО" #~ msgid "" -#~ "You will loose all customizations, that have been made by yourself or by " -#~ "a script, if you replace the file by its latest version." +#~ "You will loose all customizations, that have been made by yourself or by a " +#~ "script, if you replace the file by its latest version." #~ msgstr "" #~ "Если вы замените файл его поздней версией, вы потеряете все изменения " #~ "сделанные вами или скриптами." +#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a " -#~ "1Mbit DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " +#~ "DSL connection" #~ msgstr "" #~ "Скачивание займёт примерно %s при 56к модеме и примерно %s при 1Мбит DSL-" #~ "подключении" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" -#~ "На данный момент список изменений недоступен. Пожалуйста, попробуйте " -#~ "позднее." +#~ "На данный момент список изменений недоступен. Пожалуйста, попробуйте позднее." #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " @@ -1674,6 +1620,7 @@ msgstr "Не-DFSG-совместимое ПО" #~ "Программное обеспечение, ограниченное копирайтом или другими правовыми " #~ "проблемами" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Загрузка файла %li из %li с неизвестной скоростью" @@ -1724,17 +1671,17 @@ msgstr "Не-DFSG-совместимое ПО" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Некоторые обновления требуют удаления других приложений. Для полного " -#~ "обновления системы используйте функцию \"Пометить все обновления\" " -#~ "менеджера пакетов \"Synaptic\" или запустите в терминале \"sudo apt-get " -#~ "dist-upgrade\"." +#~ "обновления системы используйте функцию \"Пометить все обновления\" менеджера " +#~ "пакетов \"Synaptic\" или запустите в терминале \"sudo apt-get dist-upgrade\"." #~ msgid "The following updates will be skipped:" #~ msgstr "Следующие обновления будут пропущены:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Осталось приблизительно %li секунд" @@ -1810,4 +1757,4 @@ msgstr "Не-DFSG-совместимое ПО" #~ msgstr "Обновления Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Backports" +#~ msgstr "Ubuntu 6.06 LTS Backports" \ No newline at end of file diff --git a/po/rw.po b/po/rw.po index 506ca601..6455a0e8 100644 --- a/po/rw.po +++ b/po/rw.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:43+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" "MIME-Version: 1.0\n" @@ -63,15 +63,13 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "Kwinjiza porogaramu" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -81,7 +79,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -136,7 +133,8 @@ msgstr "i Urufunguzo" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -173,7 +171,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -187,7 +184,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -211,7 +207,6 @@ msgid "" "bug. " msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -271,7 +266,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -329,7 +323,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -392,7 +385,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -403,7 +395,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy @@ -457,7 +448,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -473,7 +463,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -485,7 +475,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -502,57 +491,55 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -560,40 +547,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Sisitemu ni Hejuru Kuri Itariki" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -619,7 +605,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -639,7 +624,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -712,6 +696,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 #, fuzzy msgid "_Replace" msgstr "Kongera Gutangiza" @@ -750,7 +735,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -846,18 +830,15 @@ msgid "" msgstr "" "Kuri Gufungura Amahinduka Kugenzura... NIBA ni Gikora Interineti Ukwihuza" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "5" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -873,14 +854,13 @@ msgstr "5" msgid "Distribution updates" msgstr "Byarangiye" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Kwinjiza porogaramu" #: ../UpdateManager/UpdateManager.py:478 -#, fuzzy, python-format +#, fuzzy msgid "Version %s: \n" msgstr "Verisiyo \n" @@ -897,14 +877,13 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy, python-format +#, fuzzy msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Sisitemu ni Hejuru Kuri Itariki" @@ -928,11 +907,10 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Verisiyo" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -955,7 +933,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -967,23 +944,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1084,10 +1057,15 @@ msgstr "Kwinjiza porogaramu" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "Byarangiye" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Amahinduka" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1328,252 +1306,207 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "5" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Kohereza Nta gukoresha bisesuye" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "5" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Kigenga" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Kigenga" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "5" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "5" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 #, fuzzy msgid "Non-free (Multiverse)" msgstr "Kigenga" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 #, fuzzy msgid "Restricted copyright" msgstr "Uburenganzira bw'umuhimbyi" -#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "5" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "5" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "4. 10" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1704,8 +1637,8 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "> Ukoresha: Utubuto" @@ -1792,8 +1725,7 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" #~ "i Bya i Igikorwa Nka gukora iyinjizaporogaramu:%s Cyangwa ni Bya ngombwa " #~ "Gukoresha Cyangwa Kubona Kuri i" @@ -1808,8 +1740,8 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Gukoresha Porogaramu ku i Igihe Gufunga iyi Ikindi Porogaramu Itangira" @@ -1824,16 +1756,16 @@ msgstr "" #, fuzzy #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Kuri a Verisiyo Bya Verisiyo Oya Kubona Umutekano Cyangwa Ikindi " -#~ "Ibyangombwa HTTP www org kugirango Ibisobanuro" +#~ "Kuri a Verisiyo Bya Verisiyo Oya Kubona Umutekano Cyangwa Ikindi Ibyangombwa " +#~ "HTTP www org kugirango Ibisobanuro" #, fuzzy #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "A Gishya Na: i ni Bihari HTTP www org kugirango Amabwiriza" #, fuzzy @@ -1842,8 +1774,8 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Gukoresha Porogaramu ku i Igihe Gufunga iyi Ikindi Porogaramu Itangira" @@ -1872,4 +1804,4 @@ msgstr "" #, fuzzy #~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "com" +#~ msgstr "com" \ No newline at end of file diff --git a/po/sk.po b/po/sk.po index 50335ccb..e8f9c5da 100644 --- a/po/sk.po +++ b/po/sk.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:43+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Peter Chabada \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" @@ -55,17 +55,15 @@ msgstr "Po mesiaci" msgid "After %s days" msgstr "Po %s dňoch" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, fuzzy msgid "%s updates" msgstr "Nainštalovať _aktualizácie" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 -#, fuzzy, python-format +#, fuzzy msgid "%s (%s)" msgstr "%s (%s)" @@ -73,7 +71,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -126,11 +123,12 @@ msgid "Error removing the key" msgstr "Chyba pri odstraňovaní kľúča" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný kľúč nebolo možné odstrániť. Nahláste to ako chybu." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -168,7 +166,6 @@ msgstr "Nemôžem aktualizovať požadované meta-balíky" msgid "A essential package would have to be removed" msgstr "Musel by byť odstránený dôležitý balík" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nemôžem vypočítať aktualizáciu" @@ -184,7 +181,6 @@ msgstr "" "Počas prípravy aktualizácie sa vyskytol neriešiteľný problém. Nahláste to " "ako chybu." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Chyba pri overovaní niektorých balíkov" @@ -210,7 +206,6 @@ msgid "" "bug. " msgstr "Požadovaný balík nebolo možné nainštalovať. Nahláste to ako chybu. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nemôžem odhadnúť meta balík." @@ -283,7 +278,6 @@ msgstr "" "nahradené všetky '%s' záznamy '%s' záznamami.\n" "Pokiaľ zvolíte 'Nie', súbor nebude zmenený." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Vytvoriť štandardný zoznam zdrojov softvéru?" @@ -296,8 +290,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Počas čítania súboru 'sources.list' nebol nájdený žiadny platný záznam pre '%" -"s'.\n" +"Počas čítania súboru 'sources.list' nebol nájdený žiadny platný záznam pre " +"'%s'.\n" "\n" "Majú byť pridané štandardné záznamy pre '%s'? Pokiaľ zvolíte 'Nie', súbor " "nebude zmenený." @@ -356,7 +350,6 @@ msgstr "" "vyprázdnením svojho kôša, prípadne odstránením dočasných inštalačných " "súborov z predchádzajúcich inštalácií pomocou príkazu 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Chcete začať s aktualizáciou?" @@ -432,7 +425,6 @@ msgstr "" "Počas čistenia sa vyskytli problémy. Pre viac informácií si pozrite nižšie " "uvedené správy. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Obnovuje sa pôvodný stav systému" @@ -443,7 +435,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -473,7 +464,7 @@ msgid "Invalid package information" msgstr "Neplatná informácia o balíku" #: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy, python-format +#, fuzzy msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -481,8 +472,8 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Po aktualizácií informácií o balíkoch nie je možné nájsť dôležitý balík '%" -"s'.\n" +"Po aktualizácií informácií o balíkoch nie je možné nájsť dôležitý balík " +"'%s'.\n" "To znamená závažný problém. Nahláste to ako chybu." #: ../DistUpgrade/DistUpgradeControler.py:733 @@ -501,7 +492,6 @@ msgstr "Vyhľadávanie zastaraného softvéru" msgid "System upgrade is complete." msgstr "Aktualizácia systému je dokončená." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -513,24 +503,23 @@ msgid "Fetching is complete" msgstr "Aktualizácia je dokončená" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li at %s/s" msgstr "Sťahovanie súboru %li z %li pri %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, fuzzy msgid "About %s remaining" msgstr "Zostáva %li minút" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, fuzzy msgid "Fetching file %li of %li" msgstr "Sťahujem %li súbor z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplikujem zmeny" @@ -546,9 +535,8 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, fuzzy msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -556,62 +544,61 @@ msgstr "" "Nahradiť konfiguračný súbor\n" "'%s'?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Príkaz 'diff' nebol nájdený." -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Nastala závažná chyba" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Nahláste to ako chybu a k svojmu hláseniu priložte súbory /var/log/dist-" "upgrade.log a /var/log/dist-upgrade-apt.log. Aktualizácia bude teraz " "prerušená.\n" -"Váš pôvodný súbor 'sources.list' bol uložený ako /etc/apt/sources.list." -"distUpgrade." +"Váš pôvodný súbor 'sources.list' bol uložený ako " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#, fuzzy msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Bude odstránený %s balík." msgstr[1] "Budú odstránené %s balíky." msgstr[2] "Bude odstránených %s balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#, fuzzy msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Bude nainštalovaný %s nový balík." msgstr[1] "Budú nainštalované %s nové balíky." msgstr[2] "Bude nainštalovaných %s nových balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#, fuzzy msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Bude aktualizovaný %s balík." msgstr[1] "Budú aktualizované %s balíky." msgstr[2] "Bude aktualizovaných %s balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -621,52 +608,52 @@ msgstr "" "\n" "Musíte stiahnuť celkom %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "Aktualizácia môže trvať niekoľko hodín a nemôže byť neskôr prerušená." +msgstr "" +"Aktualizácia môže trvať niekoľko hodín a nemôže byť neskôr prerušená." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pre zamedzenie straty dát, zavrite všetky otvorené programy a dokumenty." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Váš systém je aktuálny" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Odstrániť %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Inštalovať %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Aktualizovať %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy, python-format +#, fuzzy msgid "%li days %li hours %li minutes" msgstr "Zostáva %li dní %li hodín %li minút" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy, python-format +#, fuzzy msgid "%li hours %li minutes" msgstr "Zostáva %li hodín %li minút" @@ -681,7 +668,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -703,7 +689,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -780,6 +765,7 @@ msgid "_Keep" msgstr "_Ponechať" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Nahradiť" @@ -816,7 +802,6 @@ msgstr "Nebolo možné stiahnuť poznámky k vydaniu" msgid "Please check your internet connection." msgstr "Skontrolujte si internetové pripojenie." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nebolo možné spustiť aktualizačný program" @@ -890,12 +875,12 @@ msgstr "" "problémom alebo nedostupňosťou servera. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Sťahovanie súboru %li z %li pri %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "Sťahovanie súboru %li z %li pri %s/s" @@ -920,18 +905,15 @@ msgstr "" "Zlyhalo získavanie zoznamu zmien. Skontrolujte si svoje internetové " "pripojenie." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -947,7 +929,6 @@ msgstr "Ubuntu 5.10 - backporty" msgid "Distribution updates" msgstr "_Pokračovať v aktualizácii" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -972,7 +953,6 @@ msgstr "" msgid "_Check All" msgstr "_Skontrolovať" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1000,16 +980,15 @@ msgid "Checking for updates" msgstr "Kontrolujem aktualizácie..." #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "Nová verzia: %s (veľkosť: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Verzia %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1027,15 +1006,14 @@ msgid "" msgstr "" "Nebudete mať k dispozícii žiadne nové bezpečnostné ani kritické " "aktualizácie. Prejdite preto na najnovšiu verziu distribúcie Ubuntu Linux. " -"Pre viac informácií o prechode na novšiu verziu si pozrite http://www.ubuntu." -"com.\"" +"Pre viac informácií o prechode na novšiu verziu si pozrite " +"http://www.ubuntu.com.\"" #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "K dispozícii je nové vydanie distribúcie '%s'" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Index softvéru je poškodený" @@ -1050,24 +1028,20 @@ msgstr "" "Na odstránenie tohto problému použite správcu balíkov 'Synaptic' alebo " "spustite 'sudo apt-get install -f' v termáli." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 #, fuzzy msgid "None" msgstr "Žiadna" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1179,10 +1153,15 @@ msgstr "Nainštalovať _aktualizácie" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "_Aktualizovať" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Zmeny" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1344,11 +1323,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete pridať\n" +"Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete " +"pridať\n" "\n" -"APT riadok obsahuje typ, umiestnenie a súčasti zdrojov softvéru. Napr.: " -"\"deb·http://ftp.debian.org·sarge·main\"." +"APT riadok obsahuje typ, umiestnenie a súčasti zdrojov softvéru. Napr.: " +"\"deb·http://ftp.debian.org·sarge·main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1440,250 +1419,206 @@ msgstr "Veľkosť okna" msgid "Configure the sources for installable software and updates" msgstr "Nastaviť zdroje softvéru a internetové aktualizácie" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 - aktualizácie" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Udržiavané komunitou (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Softvér závislý na neslobornom softvéri" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Udržiavané komunitou (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Udržiavané komunitou (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Udržiavané komunitou (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Neslobodné (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Neslobodné (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 - aktualizácie" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 - backporty" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Disk s Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Disk s Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiálne podporované" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 - aktualizácie" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 - backporty" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Udržiavané komunitou (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Neslobodné (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Niektoré programy už nie sú viac oficiálne podporované" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "S obmedzujúcou licenciou" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 bezpečnostné aktualizácie" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 aktualizácie" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 - backporty" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" - bezpečnostné aktualizácie" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Softvér kompatibilný s DFSG bez závislostí na neslobodnom softvére" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Softvér nekompatibilný s DFSG" @@ -1692,6 +1627,7 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Softvér s obmedzených exportom pre USA" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Sťahovanie súboru %li z %li pri nezámej rýchlosti" @@ -1715,8 +1651,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Prebieha aktualizácia na Ubuntu " -#~ "6.06 LTS" +#~ "Prebieha aktualizácia na Ubuntu 6.06 " +#~ "LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1745,17 +1681,18 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Niektoré aktualizácie vyžadujú odstránenie iných programov. Aby ste " -#~ "vykonali úplnú aktualizáciu použite funkciu \"Označiť všetky aktualizácie" -#~ "\" správcu balíkov \"Synaptic\" alebo spustite \"sudo apt-get dist-upgrade" -#~ "\" v termináli." +#~ "Niektoré aktualizácie vyžadujú odstránenie iných programov. Aby ste vykonali " +#~ "úplnú aktualizáciu použite funkciu \"Označiť všetky aktualizácie\" správcu " +#~ "balíkov \"Synaptic\" alebo spustite \"sudo apt-get dist-upgrade\" v " +#~ "termináli." #~ msgid "The following updates will be skipped:" #~ msgstr "Nasledujúce balíky nebudú aktualizované:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Zostáva %li sekúnd" @@ -1838,15 +1775,15 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Nebol nájdený žiadny platný záznam" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" -#~ "Vo vašich zdrojoch softvéru nebol nájdený žiadny záznam vhodný na " -#~ "použitie pre upgrade.\n" +#~ "Vo vašich zdrojoch softvéru nebol nájdený žiadny záznam vhodný na použitie " +#~ "pre upgrade.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "is now run (dpkg --configure -a)." #~ msgstr "" #~ "Upgrade neočakávane skončil. Váš systém môže byt v nestabilnom stave. Pre " #~ "opravu skúste teraz spustiť (dpkg --configure -a)." @@ -1855,8 +1792,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "Please report this as a bug and include the files ~/dist-upgrade.log and " #~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " #~ msgstr "" -#~ "Oznámte ju ako chybu a k vašej správe priložte súbory ~/dist-upgrade.log " -#~ "a ~/dist-upgrade-apt.log. Upgrade teraz skončí. " +#~ "Oznámte ju ako chybu a k vašej správe priložte súbory ~/dist-upgrade.log a " +#~ "~/dist-upgrade-apt.log. Upgrade teraz skončí. " #~ msgid "You can install one update" #~ msgid_plural "You can install %s updates" @@ -1871,14 +1808,14 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "Potrebujete znovunačítať zoznam dostupných balíčkov zo serverov uvedených " -#~ "vo vašich zdrojoch softvéru. Chcete to urobiť teraz?" +#~ "Potrebujete znovunačítať zoznam dostupných balíčkov zo serverov uvedených vo " +#~ "vašich zdrojoch softvéru. Chcete to urobiť teraz?" #~ msgid "" #~ "Analysing your system\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "Analyzuje sa váš systém\n" #~ "\n" @@ -1886,8 +1823,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "zraniteľnosti alebo poskytnúť nové vlastnosti." #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "Softvérové aktualizácie môžu opravovať chyby, odstraňovať bezpečnostné " #~ "zraniteľnosti alebo poskytnúť nové vlastnosti." @@ -1898,15 +1835,15 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "installed therefor" #~ msgstr "" #~ "Automaticky budú inštalované len bezpečnostné aktualizácie z oficiálnych " -#~ "serverov Ubuntu. Preto musí byť nainštalovaný softvérový balíček " -#~ "'unattended-upgrades'." +#~ "serverov Ubuntu. Preto musí byť nainštalovaný softvérový balíček 'unattended-" +#~ "upgrades'." #~ msgid "Sections" #~ msgstr "Sekcie:" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line contains the type, location and sections of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1914,8 +1851,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete " #~ "pridať\n" #~ "\n" -#~ "APT riadok obsahuje typ, umiestnenie a sekcie zdrojov softvéru. Napr.: " -#~ "\"deb·http://ftp.debian.org·sarge·main\"." +#~ "APT riadok obsahuje typ, umiestnenie a sekcie zdrojov softvéru. Napr.: " +#~ "\"deb·http://ftp.debian.org·sarge·main\"." #~ msgid "Sections:" #~ msgstr "Sekcie:" @@ -1947,8 +1884,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "umožňuje overiť integritu stiahnutého softvéru." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Pridať nový kľúč do zväzku dôveryhodných kľúčov. Uistite sa, že ste kľúč " #~ "dostali bezpečnou cestou, a že môžete veriť jeho vydavateľovi. " @@ -1978,8 +1915,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Maximálna veľkosť archívu na disku (v MB):" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Obnoví pôvodné kľúče dodávané s vašou distribúciou. Toto neovplyvní " #~ "používateľom nainštalovnané kľúče." @@ -2011,8 +1948,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Dostupné aktualizácie\n" #~ "\n" @@ -2093,8 +2030,7 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr[2] "Vybrali ste %s balíkov na aktualizáciu, veľkosť %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Vybrali ste %s z %s balíkov na aktualizáciu, veľkosť %s" #~ msgstr[1] "Vybrali ste %s z %s balíkov na aktualizáciu, veľkosť %s" #~ msgstr[2] "Vybrali ste %s z %s balíkov na aktualizáciu, veľkosť %s" @@ -2103,8 +2039,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Práve prebieha aktualizácia." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Môžete mať spustenú najviac jednu aplikáciu na správu balíkov. Prosím, " #~ "najprv zavrite druhú aplikáciu." @@ -2117,8 +2053,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Prejdite prosím, na novšiu verziu distribúcie Ubuntu Linux. Verzia, ktorú " #~ "používate nie je viac podporovaná. To znamená, že už nie sú k dispozícii " @@ -2129,12 +2065,12 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Bola nájdená novšia verzia Ubuntu!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Je dostupná novšia verzia vašej distribúcie s kódovým označením \"%s\". " -#~ "Pre viac informácií o prechode na vyššiu verziu si pozrite http://www." -#~ "ubuntulinux.org." +#~ "Je dostupná novšia verzia vašej distribúcie s kódovým označením \"%s\". Pre " +#~ "viac informácií o prechode na vyššiu verziu si pozrite " +#~ "http://www.ubuntulinux.org." #~ msgid "Never show this message again" #~ msgstr "Už viac nezobrazovať toto upozornenie" @@ -2147,4 +2083,4 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "A_utentifikácia" #~ msgid "Packages to install:" -#~ msgstr "Balíky na inštaláciu:" +#~ msgstr "Balíky na inštaláciu:" \ No newline at end of file diff --git a/po/sl.po b/po/sl.po index 34f6b509..e02fc98a 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-08-01 13:08+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Tadej \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%" -"100==4 ? 2 : 3\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,7 +56,6 @@ msgstr "Po enem mesecu" msgid "After %s days" msgstr "Po %s dnevih" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "Napaka pri odstranitvi kluča" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Kluč, katerega ste izbrali, se ne more odstraniti. Prosim, javite to kot " "napako." @@ -155,7 +153,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Vaš sistem vsebuje pokvarjene pakete, ki se ne morejo obnoviti s to " -"programsko opremo.\r\n" +"programsko opremo. \n" "Prosim, da popravite te pakete z uporabo synaptic ali apt-get, preden " "nadaljujete." @@ -167,7 +165,6 @@ msgstr "Ne morem nadgraditi zahtevanih meta-paketov" msgid "A essential package would have to be removed" msgstr "Bistven paket se bo moral odstraniti" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Ne morem izračunati nadgradnje" @@ -180,7 +177,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Napaka pristnosti nekaterih paketov" @@ -196,7 +192,7 @@ msgstr "" "paketov." #: ../DistUpgrade/DistUpgradeCache.py:312 -#, fuzzy, python-format +#, fuzzy msgid "Can't install '%s'" msgstr "Ne morem namestiti '%s'" @@ -207,7 +203,6 @@ msgid "" msgstr "" "Nemogoče je bilo namestiti zahtevani paket. Prosim, javite to kot napaka. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Ne morem ugibati meta-paketa" @@ -275,7 +270,6 @@ msgstr "" "izberete 'Yes', vam bo posodobilo vse vhode iz '%s' v '%s'.\n" "Če izberete 'no', se bo posodobitev prekinila." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Proizvedem pomanjkljive izvore?" @@ -343,7 +337,6 @@ msgstr "" "prostora na %s. Izpraznite koš in odstranite začasne pakete prejšnjih " "namesitev z uporabo 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Želite pričeti z nadgradnjo?" @@ -410,7 +403,6 @@ msgstr "" "Med čiščenjem je prišlo do problema. Prosim, poglejte sporočilo spodaj za " "več informacij. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -421,7 +413,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -472,7 +463,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "Nadgrajevanje sistema je dokončano" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -488,7 +478,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -500,7 +490,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -516,39 +505,37 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -557,7 +544,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -566,7 +553,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -575,7 +562,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -583,39 +570,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Odstrani %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Namesti %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Nadgradi %s" @@ -641,7 +627,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -661,7 +646,6 @@ msgstr "Nadgrajevanje je končano in potreben je ponoven zagon" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -732,6 +716,7 @@ msgid "_Keep" msgstr "_Obdrži" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Zamenjaj" @@ -767,7 +752,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -857,17 +841,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -880,7 +861,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -902,7 +882,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -939,7 +918,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -961,7 +939,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -973,23 +950,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1086,10 +1059,15 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "Nadgradi %s" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1311,229 +1289,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/sq.po b/po/sq.po index e362c418..f5a258aa 100644 --- a/po/sq.po +++ b/po/sq.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-09-30 21:20+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Alejdin Tirolli \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Pas një muaji" msgid "After %s days" msgstr "Pas %s ditësh" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "%s përmirësimet" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,7 +122,8 @@ msgid "Error removing the key" msgstr "Gabim gjatë largimit të çelësit" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Çelësi i zgjedhur nuk mund të largohet.Ju lutemi krijoni këtu një raport për " "gabimin." @@ -170,7 +168,6 @@ msgstr "Metapaketat e nevojshme nuk mund të aktualizohen." msgid "A essential package would have to be removed" msgstr "Një paketë themelore u deshtë të largohej" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Aktualizimi nuk mund të llogaritej" @@ -185,7 +182,6 @@ msgstr "" "Një problem i pazgjidhshëm ndodhi gjatë aktualizimit.Ju lutemi krijoni një " "raport për këtë gabim." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Gabim gjatë vërtetimit të origjinalitetit të disa paketave." @@ -213,7 +209,6 @@ msgstr "" "Një paketë i nevojshëm nuk mundi të instalohet.Ju lutemi raportoni këtë " "problem. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Can't guess meta-package" @@ -278,7 +273,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -335,7 +329,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -398,7 +391,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -409,7 +401,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -460,7 +451,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -476,7 +466,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -488,7 +478,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -504,60 +493,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -565,39 +552,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -623,7 +609,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -643,11 +628,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -714,6 +698,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -749,7 +734,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -839,17 +823,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -862,7 +843,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -884,7 +864,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -919,7 +898,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -941,7 +919,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -953,23 +930,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1066,10 +1039,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1291,229 +1268,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/sr.po b/po/sr.po index 7de46d87..260a66e0 100644 --- a/po/sr.po +++ b/po/sr.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-06-01 10:04+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Vladimir Samardzic \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,7 +56,6 @@ msgstr "Posle jednog meseca" msgid "After %s days" msgstr "Posle %s dana" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -127,7 +124,8 @@ msgstr "Грешка у уклањању кључа" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Кључ који сте изабрали није могуће уклонити. Молим вас пријавите ово као " "грешку." @@ -173,7 +171,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -186,7 +183,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -209,7 +205,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -269,7 +264,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -320,17 +314,16 @@ msgid "Not enough free disk space" msgstr "Нема довољно места на диску" #: ../DistUpgrade/DistUpgradeControler.py:369 -#, fuzzy, python-format +#, fuzzy msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"Надоградња је прекинута. Молим вас ослободите најмање %s простора на диску %" -"s. Испразните канту за отпаtке и уклоните привремене пакете предходних " +"Надоградња је прекинута. Молим вас ослободите најмање %s простора на диску " +"%s. Испразните канту за отпаtке и уклоните привремене пакете предходних " "инсталација користећи команду 'sudo apt-get clean'." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -393,7 +386,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -404,7 +396,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -456,7 +447,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "Унапређење система је завршено" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -472,7 +462,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -484,7 +474,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -500,40 +489,38 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 #, fuzzy msgid "The 'diff' command was not found" msgstr "Команда 'diff' није нађена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -541,7 +528,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -549,7 +536,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -557,7 +544,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -565,41 +552,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "To prevent data loss close all open applications and documents." msgstr "" "Да би спречили губитак података затворите све активне програме и документа." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Инсталирај %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Унапреди %s" @@ -625,7 +611,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -646,7 +631,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -718,6 +702,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -753,7 +738,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -843,17 +827,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -866,7 +847,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -888,7 +868,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -924,7 +903,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -946,7 +924,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -958,23 +935,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1071,10 +1044,15 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "Унапреди %s" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1296,229 +1274,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/sv.po b/po/sv.po index 3630e8d5..e3ede40a 100644 --- a/po/sv.po +++ b/po/sv.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-06 03:32+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 05:06+0000\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" @@ -56,7 +56,6 @@ msgstr "Efter en månad" msgid "After %s days" msgstr "Efter %s dagar" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "Uppdateringar för %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Huvudserver" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,7 +122,8 @@ msgid "Error removing the key" msgstr "Fel vid borttagning av nyckeln" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Nyckeln du valde kan inte tas bort. Rapportera detta som ett fel." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -168,7 +166,6 @@ msgstr "Kan inte uppdatera de obligatoriska meta-paketen" msgid "A essential package would have to be removed" msgstr "Ett grundläggande paket skulle behöva tas bort" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunde inte beräkna uppgraderingen" @@ -185,7 +182,6 @@ msgstr "" "Rapportera det här felet mot paketet \"update-manager\" och inkludera " "filerna i /var/log/dist-upgrade/ i felrapporten." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Det gick inte att autentisiera vissa paket" @@ -213,7 +209,6 @@ msgstr "" "Det var inte möjligt att installera ett nödvändigt paket. Rapportera detta " "som ett fel. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan inte gissa meta-paket" @@ -296,7 +291,6 @@ msgstr "" "här kommer det att uppdatera alla \"%s\" till \"%s\".\n" "Om du väljer \"Nej\" kommer uppdateringen avbrytas." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Generera standardkällor?" @@ -368,7 +362,6 @@ msgstr "" "papperskorg och ta bort temporära paket från tidigare installationer genom " "att använda \"sudo apt-get clean\"." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Vill du starta uppgraderingen?" @@ -388,8 +381,8 @@ msgstr "" "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart tillstånd. " "En återhämtning kördes (dpkg --configure -a).\n" "\n" -"Rapportera detta fel mot paketet \"update-manager\" och bifoga filerna i /" -"var/log/dist-upgrade/ i felrapporten." +"Rapportera detta fel mot paketet \"update-manager\" och bifoga filerna i " +"/var/log/dist-upgrade/ i felrapporten." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -445,7 +438,6 @@ msgstr "" "Något fel inträffade vid upprensningen. Se meddelandet nedan för mer " "information. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Återställer ursprungligt systemtillstånd" @@ -456,7 +448,6 @@ msgid "Fetching backport of '%s'" msgstr "Hämtar bakåtportering av \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -473,8 +464,8 @@ msgid "" "upgrade/ in the bugreport." msgstr "" "Förberedelse av systemet för uppgraderingen misslyckades. Rapportera det här " -"som ett fel mot paketet \"update-manager\" och inkludera filerna i /var/log/" -"dist-upgrade/ i felrapporten." +"som ett fel mot paketet \"update-manager\" och inkludera filerna i " +"/var/log/dist-upgrade/ i felrapporten." #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -515,7 +506,6 @@ msgstr "Söker efter föråldrad programvara" msgid "System upgrade is complete." msgstr "Systemuppdateringen är klar." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -531,7 +521,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Hämtar fil %li av %li i %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Ungefär %s återstående" @@ -543,7 +533,6 @@ msgstr "Hämtar fil %li av %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Verkställer ändringar" @@ -558,11 +547,10 @@ msgid "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Uppgraderingen avbryter nu. Rapportera detta fel mot paketet \"update-manager" -"\" och bifoga filerna i /var/log/dist-upgrade/ i felrapporten." +"Uppgraderingen avbryter nu. Rapportera detta fel mot paketet \"update-" +"manager\" och bifoga filerna i /var/log/dist-upgrade/ i felrapporten." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -571,7 +559,7 @@ msgstr "" "Ersätt den anpassade konfigurationsfilen\n" "\"%s\"?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." @@ -579,50 +567,49 @@ msgstr "" "Du kommer att förlora de ändringar du har gjort i den här " "konfigurationsfilen om du väljer att ersätta den med en senare version." -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Kommandot \"diff\" hittades inte" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Ett ödesdigert fel uppstod" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Rapportera detta som ett fel och bifoga filerna /var/log/dist-upgrade/main." -"log och /var/log/dist-upgrade/apt.log i din rapport. Uppgraderingen avbryts " -"nu.\n" +"Rapportera detta som ett fel och bifoga filerna /var/log/dist-" +"upgrade/main.log och /var/log/dist-upgrade/apt.log i din rapport. " +"Uppgraderingen avbryts nu.\n" "Din ursprungliga sources.list sparades som /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paket kommer att tas bort." msgstr[1] "%d paket kommer att tas bort." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nytt paket kommer att installeras." msgstr[1] "%d nya paket kommer att installeras." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paket kommer att uppgraderas." msgstr[1] "%d paket kommer att uppgraderas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -633,7 +620,7 @@ msgstr "" "\n" "Du måste hämta totalt %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -641,17 +628,16 @@ msgstr "" "Hämtning och installation av uppgraderingen kan ta flera timmar och kan inte " "avbrytas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "Stäng alla öppna program och dokument för att förhindra dataförlust." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Ditt system är uppdaterat" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -659,17 +645,17 @@ msgstr "" "Det finns inga tillgängliga uppgraderingar för ditt system. Uppgraderingen " "kommer nu att avbrytas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Ta bort %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Installera %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Uppgradera %s" @@ -695,7 +681,6 @@ msgid "%li seconds" msgstr "%li sekunder" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -718,7 +703,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -794,6 +778,7 @@ msgid "_Keep" msgstr "_Behåll" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Ersätt" @@ -829,7 +814,6 @@ msgstr "Det gick inte att hämta versionsfaktan" msgid "Please check your internet connection." msgstr "Kontrollera din Internetanslutning." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Det gick inte att köra uppgraderingsverktyget" @@ -933,17 +917,14 @@ msgstr "" "Misslyckades med att hämta listan över ändringar. \n" "Kontrollera din Internetanslutning." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Viktiga säkerhetsuppdateringar" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Rekommenderade uppdateringar" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Föreslagna uppdateringar" @@ -956,7 +937,6 @@ msgstr "Bakåtporteringar" msgid "Distribution updates" msgstr "Uppdateringar för utgåva" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Övriga uppdateringar" @@ -978,7 +958,6 @@ msgstr "_Avmarkera allt" msgid "_Check All" msgstr "_Kontrollera alla" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1013,7 +992,6 @@ msgstr "Från version %(old_version)s till %(new_version)s" msgid "Version %s" msgstr "Version %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1038,7 +1016,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Ny distributionsutgåva \"%s\" finns tillgänglig" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Programindexet är trasigt" @@ -1053,23 +1030,19 @@ msgstr "" "pakethanteraren \"Synaptic\" eller kör \"sudo apt-get install -f\" i en " "terminal för att rätta till det här problemet först." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ingen" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1178,10 +1151,14 @@ msgid "_Install Updates" msgstr "_Installera uppdateringar" #: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "_Uppgradera" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "ändrar" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "uppdaterar" @@ -1430,235 +1407,193 @@ msgstr "Fönsterstorleken" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" -msgstr "Konfigurera källorna för installerbara programvaror och uppdateringar" +msgstr "" +"Konfigurera källorna för installerbara programvaror och uppdateringar" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Gemenskapsunderhållen" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Properitära drivrutiner för enheter" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Inskränkt programvara" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cd-rom med Ubuntu 6.10 \"Edgy Eft\"" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Öppen källkodsprogramvara som stöds av Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Gemenskapsunderhållen (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Öppen källkodsprogramvara underhållen av gemenskapen" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Ickefria drivrutiner" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Properitära drivrutiner för enheter " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Inskränkt programvara (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Programvara begränsad av upphovsrätt eller juridiska avtal" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cd-rom med Ubuntu 6.06 LTS \"Dapper Drake\"" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Bakåtporterade uppdateringar" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cd-rom med Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Uppdateringar" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Bakåtportar" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cd-rom med Ubuntu 5.04 \"Hoary Hedgehog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Stöds officiellt" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Säkerhetsuppdateringar för Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Uppdateringar för Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Bakåtporteringar för Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Gemenskapsunderhållen (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ickefri (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cd-rom med Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Stöds inte längre officiellt" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begränsad upphovsrätt" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Säkerhetsuppdateringar för Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Uppdateringar för Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Bakåtporteringar för Ubuntu 4.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Säkerhetsuppdateringar" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://ftp.se.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibel programvara med icke-fria beroenden" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Icke-DFSG-kompatibel programvara" +#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1669,22 +1604,22 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please " -#~ "report this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " #~ msgstr "" #~ "Ett problem uppstod som inte gick att lösa när uppgraderingen beräknades. " #~ "Rapportera detta som ett fel. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " -#~ "edubuntu-desktop package and it was not possible to detect which version " -#~ "of ubuntu you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "Ditt system innehåller varken ubuntu-desktop, kubuntu-desktop eller " -#~ "edubuntu-desktop och det gick inte att identifiera vilken version av " -#~ "Ubuntu du använder.\n" +#~ "Ditt system innehåller varken ubuntu-desktop, kubuntu-desktop eller edubuntu-" +#~ "desktop och det gick inte att identifiera vilken version av Ubuntu du " +#~ "använder.\n" #~ " Installera ett av dessa paket först med synaptic eller apt-get innan du " #~ "fortsätter." @@ -1694,15 +1629,15 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "synaptic." #~ msgstr "" #~ "Vissa tredjepartskällor i din sources.list blev inaktiverade. Du kan " -#~ "återaktivera dem efter uppgraderingen med verktyget \"software-properties" -#~ "\" eller med synaptic." +#~ "återaktivera dem efter uppgraderingen med verktyget \"software-properties\" " +#~ "eller med synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." #~ msgstr "" -#~ "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart " -#~ "tillstånd. En återhämtning kördes (dpkg --configure -a)." +#~ "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart tillstånd. " +#~ "En återhämtning kördes (dpkg --configure -a)." #~ msgid "Some software no longer officially supported" #~ msgstr "Viss programvara stöds inte officiellt längre" @@ -1714,13 +1649,14 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "If you don't have 'universe' enabled these packages will be suggested for " #~ "removal in the next step. " #~ msgstr "" -#~ "Dessa installerade paket har inte längre officiellt stöd, och är nu " -#~ "enbart gemenskapsunderhållna (\"universe\").Om du inte har \"universe\" " -#~ "aktiverat kommer dessa paket föreslås för borttagning i nästa steg. " +#~ "Dessa installerade paket har inte längre officiellt stöd, och är nu enbart " +#~ "gemenskapsunderhållna (\"universe\").Om du inte har \"universe\" aktiverat " +#~ "kommer dessa paket föreslås för borttagning i nästa steg. " #~ msgid "Restoring originale system state" #~ msgstr "Återställer ursprunglig systemstatus" +#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1730,30 +1666,37 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "nödvändiga paketet \"%s\" längre.\n" #~ "Det här tyder på ett allvarligt fel, rapportera detta som ett fel." +#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "Ungefär %li dagar, %li timmar och %li minuter återstår" +#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "Ungefär %li timmar och %li minuter återstår" +#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Ungefär %li minuter återstår" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Ungefär %li sekunder återstår" #~ msgid "Download is complete" #~ msgstr "Hämtningen är färdig" +#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Hämtar fil %li av %li i %s/s" +#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Hämtar fil %li av %li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "Uppdateringen avbryts nu. Rapportera detta som ett fel." +#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1762,38 +1705,38 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "\"%s\"?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade." -#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " -#~ "now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "Rapportera detta som ett fel och inkludera filerna /var/log/dist-upgrade." -#~ "log och /var/log/dist-upgrade-apt.log i din rapport. Uppgraderingen " -#~ "avbryts nu.\n" -#~ "Din ursprungliga sources.list sparades i /etc/apt/sources.list." -#~ "distUpgrade." +#~ "Rapportera detta som ett fel och inkludera filerna /var/log/dist-upgrade.log " +#~ "och /var/log/dist-upgrade-apt.log i din rapport. Uppgraderingen avbryts nu.\n" +#~ "Din ursprungliga sources.list sparades i /etc/apt/sources.list.distUpgrade." +#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s paket kommer att tas bort." #~ msgstr[1] "%s paket kommer att tas bort." +#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s nytt paket kommer att installeras." #~ msgstr[1] "%s nya paket kommer att installeras." +#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s paket kommer att uppgraderas." #~ msgstr[1] "%s paket kommer att uppgraderas." +#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Du behöver hämta totalt %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time " -#~ "later." +#~ "The upgrade can take several hours and cannot be canceled at any time later." #~ msgstr "" #~ "Uppgraderingen kan ta flera timmar och kan inte avbrytas under tiden." @@ -1806,8 +1749,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "Upgrading to Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Uppgraderar till Ubuntu 6.06 LTS" +#~ "Uppgraderar till Ubuntu 6.06 " +#~ "LTS" #~ msgid "Downloading and installing the upgrades" #~ msgstr "Hämtar och installerar uppgraderingarna" @@ -1816,15 +1759,17 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Uppgraderar Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or " -#~ "with the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " #~ msgstr "" -#~ "Verifieringen av uppgraderingen misslyckades. Det kan vara ett problem " -#~ "med nätverket eller med servern. " +#~ "Verifieringen av uppgraderingen misslyckades. Det kan vara ett problem med " +#~ "nätverket eller med servern. " +#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Hämtar fil %li av %li i %s/s" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Hämtar fil %li av %li med okänd hastighet" @@ -1843,13 +1788,13 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Vissa uppdateringar kräver att andra program avinstalleras. Använd " -#~ "funktionen \"Markera alla uppgraderingar\" i pakethanteraren Synaptic " -#~ "eller kör \"sudo apt-get dist-upgrade\" i en terminal för att uppdatera " -#~ "ditt system helt och hållet." +#~ "funktionen \"Markera alla uppgraderingar\" i pakethanteraren Synaptic eller " +#~ "kör \"sudo apt-get dist-upgrade\" i en terminal för att uppdatera ditt " +#~ "system helt och hållet." #~ msgid "The following updates will be skipped:" #~ msgstr "Följande uppdateringar kommer att hoppas över:" @@ -1863,6 +1808,7 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "Show details" #~ msgstr "Visa detaljer" +#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "Ny version: %s (storlek: %s)" @@ -1877,14 +1823,13 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" #~ "Du måste leta efter uppdateringar manuellt\n" #~ "\n" -#~ "Ditt system letar inte efter uppdateringar automatiskt. Du kan " -#~ "konfigurera detta beteende i \"System\" -> \"Administration\" -> " +#~ "Ditt system letar inte efter uppdateringar automatiskt. Du kan konfigurera " +#~ "detta beteende i \"System\" -> \"Administration\" -> " #~ "\"Programvaruinställningar\"." #~ msgid "" @@ -1925,8 +1870,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and " -#~ "updates from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" @@ -1944,17 +1889,16 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Komponenter" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Skriv in hela APT-raden till kanalen du vill lägga till\n" +#~ "Skriv in hela APT-raden till kanalen du vill lägga till\n" #~ "\n" -#~ "APT-raden innehåller typ, plats och komponenter för en kanal, till " -#~ "exempel \"deb http://ftp.debian.org sarge main\"." +#~ "APT-raden innehåller typ, plats och komponenter för en kanal, till exempel " +#~ "\"deb http://ftp.debian.org sarge main\"." #~ msgid "Add Channel" #~ msgstr "Lägg till kanal" @@ -1972,12 +1916,12 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in " -#~ "this case." +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." #~ msgstr "" #~ "Om automatisk kontroll av uppdateringar är inaktiverad behöver du läsa om " -#~ "kanallistan manuellt. Det här alternativet möjliggör att dölja " -#~ "påminnelser som visas i det här läget." +#~ "kanallistan manuellt. Det här alternativet möjliggör att dölja påminnelser " +#~ "som visas i det här läget." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " @@ -2009,12 +1953,12 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "The upgrade aborts now. Please free at least %s of disk space. Empty your " -#~ "trash and remove temporary packages of former installations using 'sudo " -#~ "apt-get clean'." +#~ "trash and remove temporary packages of former installations using 'sudo apt-" +#~ "get clean'." #~ msgstr "" #~ "Uppdateringen avbryter nu. Vänligen frigör minst %s diskutrymme. Töm din " -#~ "papperskorg och ta bort temporära paket från tidigare installationer " -#~ "genom att köra \"sudo apt-get clean\"." +#~ "papperskorg och ta bort temporära paket från tidigare installationer genom " +#~ "att köra \"sudo apt-get clean\"." #~ msgid "%s remaining" #~ msgstr "%s återstår" @@ -2023,15 +1967,15 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Ingen giltig källa funnen" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Ingen giltig källa för uppdatering hittades när din förrådsinformation " #~ "söktes igenom.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "is now run (dpkg --configure -a)." #~ msgstr "" #~ "Uppdateringen avbryts nu. Ditt system kan vara i ett oanvändbart läge. En " #~ "återställning körs nu (dpkg --configure -a)." @@ -2041,8 +1985,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " #~ msgstr "" #~ "Var vänlig rapportera detta som en bugg och inkludera filerna ~/dist-" -#~ "upgrade.log och ~/dist-upgrade-apt.log i din rapport. Uppdateringen " -#~ "avbryts nu. " +#~ "upgrade.log och ~/dist-upgrade-apt.log i din rapport. Uppdateringen avbryts " +#~ "nu. " #~ msgid "You can install one update" #~ msgid_plural "You can install %s updates" @@ -2062,17 +2006,17 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "Analysing your system\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "Analyserar ditt system\n" #~ "\n" -#~ "Programvaruuppdateringar kan åtgärda fel, eliminera säkerhetshål och ge " -#~ "dig nya funktioner." +#~ "Programvaruuppdateringar kan åtgärda fel, eliminera säkerhetshål och ge dig " +#~ "nya funktioner." #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, " -#~ "and provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, and " +#~ "provide new features to you." #~ msgstr "" #~ "Programuppdateringar kan åtgärda fel, eliminera säkerhetshål och ge dina " #~ "program nya funktioner." @@ -2082,22 +2026,22 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "automatically. The software package \"unattended-upgrades\" needs to be " #~ "installed therefor" #~ msgstr "" -#~ "Endast säkerhetsuppdateringar från de officiella Ubuntu-servrarna kommer " -#~ "att installeras automatiskt. Programpaketet \"unattended-upgrades\" " -#~ "behöver därför installeras" +#~ "Endast säkerhetsuppdateringar från de officiella Ubuntu-servrarna kommer att " +#~ "installeras automatiskt. Programpaketet \"unattended-upgrades\" behöver " +#~ "därför installeras" #~ msgid "Sections" #~ msgstr "Avdelningar:" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line contains the type, location and sections of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Skriv in den kompletta APT-raden för kanalen du vill lägga till\n" +#~ "Skriv in den kompletta APT-raden för kanalen du vill lägga " +#~ "till\n" #~ "\n" #~ "APT-raden innehåller typ, plats och avdelningar för kanalen, till exempel " #~ "\"deb http://ftp.debian.org sarge main\"." @@ -2133,8 +2077,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "Need to get the changes from the central server" #~ msgstr "" #~ "Nätverksinställningar\n" -#~ "Använd detta verktyg för att konfigurera det sätt som ditt system kommer " -#~ "åt andra datorer" +#~ "Använd detta verktyg för att konfigurera det sätt som ditt system kommer åt " +#~ "andra datorer" #~ msgid "Show available updates and choose which to install" #~ msgstr "Visa tillgängliga uppdateringar och välj vilka som ska installeras" @@ -2215,8 +2159,7 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Det går inte att uppgradera alla paket." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "" -#~ "Ändringar kunde inte hittas, servern har kanske inte uppdaterats än." +#~ msgstr "Ändringar kunde inte hittas, servern har kanske inte uppdaterats än." #~ msgid "The updates are being applied." #~ msgstr "Uppdateringarna verkställs." @@ -2225,11 +2168,11 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Uppgradering slutförd" #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det " -#~ "andra programmet först." +#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det andra " +#~ "programmet först." #, fuzzy #~ msgid "Updating package list..." @@ -2251,11 +2194,11 @@ msgstr "Icke-DFSG-kompatibel programvara" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det " -#~ "andra programmet först." +#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det andra " +#~ "programmet först." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Initierar och hämtar lista med uppdateringar..." @@ -2411,18 +2354,16 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "Försäkra dig om att du angav e-postadressen och aktiveringskoden korrekt" #~ msgid "" -#~ "Unable to show help because the help files were missing. Please report " -#~ "this to your vendor." +#~ "Unable to show help because the help files were missing. Please report this " +#~ "to your vendor." #~ msgstr "" -#~ "Kan inte visa hjälp eftersom hjälpfilerna saknas. Rapportera detta till " -#~ "din leverantör." +#~ "Kan inte visa hjälp eftersom hjälpfilerna saknas. Rapportera detta till din " +#~ "leverantör." #~ msgid "" -#~ "Unable to show help because there are no applications available to view " -#~ "help." +#~ "Unable to show help because there are no applications available to view help." #~ msgstr "" -#~ "Kan inte visa hjälp eftersom inga program för att visa hjälp är " -#~ "tillgängliga." +#~ "Kan inte visa hjälp eftersom inga program för att visa hjälp är tillgängliga." #~ msgid "Are you sure you want to open %d package information windows?" #~ msgstr "Är du säker på att du vill öppna %d fönster med paketinformation?" @@ -2663,11 +2604,10 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Löser beroenden" #~ msgid "" -#~ "You must agree to the licenses covering this software before installing " -#~ "it." +#~ "You must agree to the licenses covering this software before installing it." #~ msgstr "" -#~ "Du måste acceptera villkoren i licenserna som rör denna programvara innan " -#~ "du kan installera den." +#~ "Du måste acceptera villkoren i licenserna som rör denna programvara innan du " +#~ "kan installera den." #~ msgid "I Agree" #~ msgstr "Jag accepterar" @@ -3168,8 +3108,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Kanalprenumerationer på kanal %s" #~ msgid "" -#~ "You do not have permission to subscribe or unsubscribe from channels. " -#~ "You will be unable to make any changes to the subscriptions." +#~ "You do not have permission to subscribe or unsubscribe from channels. You " +#~ "will be unable to make any changes to the subscriptions." #~ msgstr "" #~ "Du har inte rättighet att prenumerera eller säga upp prenumerationer på " #~ "kanaler. Du kommer inte att kunna göra ändringar i prenumerationer." @@ -3190,8 +3130,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Privilegium" #~ msgid "" -#~ "If you remove superuser privileges from yourself, you will be unable to " -#~ "re-add them.\n" +#~ "If you remove superuser privileges from yourself, you will be unable to re-" +#~ "add them.\n" #~ "\n" #~ "Are you sure you want to do this?" #~ msgstr "" @@ -3313,8 +3253,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Information" #~ msgid "" -#~ "Unable to show help because it was not found or because you don't have " -#~ "any help viewers available." +#~ "Unable to show help because it was not found or because you don't have any " +#~ "help viewers available." #~ msgstr "" #~ "Kan inte visa hjälp eftersom den inte hittades eller eftersom du inte har " #~ "några hjälpvisare tillgängliga." @@ -3424,10 +3364,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "Executive Summary" #~ msgstr "Sammanfattning" -#~ msgid "" -#~ "Update packages individually (NOTE: This is an unsupported operation)" -#~ msgstr "" -#~ "Uppdatera paket individuellt (OBSERVERA: Denna operation stöds inte)" +#~ msgid "Update packages individually (NOTE: This is an unsupported operation)" +#~ msgstr "Uppdatera paket individuellt (OBSERVERA: Denna operation stöds inte)" #~ msgid "Actual widget tag" #~ msgstr "Riktig widgettagg" @@ -3571,8 +3509,7 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Städar upp..." #~ msgid "" -#~ "The packages you requested are being downloaded and installed on your " -#~ "system." +#~ "The packages you requested are being downloaded and installed on your system." #~ msgstr "" #~ "Paketen du begärde håller på att hämtas och installeras på ditt system." @@ -3678,9 +3615,9 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "packages. You must free up some disk space before you can continue. Some " #~ "options include:" #~ msgstr "" -#~ "Du har inte tillräckligt med diskutrymme för att kunna hämta " -#~ "de begärda paketen. Du måste skapa ledigt utrymme innan du kan fortsätta. " -#~ "Det finns en del alternativ:" +#~ "Du har inte tillräckligt med diskutrymme för att kunna hämta de " +#~ "begärda paketen. Du måste skapa ledigt utrymme innan du kan fortsätta. Det " +#~ "finns en del alternativ:" #~ msgid "Removing some packages from your system" #~ msgstr "Tar bort en del paket från ditt system" @@ -3692,14 +3629,13 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Töm din cache." #~ msgid "" -#~ "Warning! There may not be sufficient disk " -#~ "space to install this package, and installation of this package may fail. " -#~ "You should free up some disk space before continuing." +#~ "Warning! There may not be sufficient disk space " +#~ "to install this package, and installation of this package may fail. You " +#~ "should free up some disk space before continuing." #~ msgstr "" #~ "Varning! Det kan finnas otillräckligt med " -#~ "diskutrymme för att installera detta paket, och installation av detta " -#~ "paket kan misslyckas. Du bör skapa en del ledigt diskutrymme innan du " -#~ "fortsätter." +#~ "diskutrymme för att installera detta paket, och installation av detta paket " +#~ "kan misslyckas. Du bör skapa en del ledigt diskutrymme innan du fortsätter." #~ msgid "1 Package" #~ msgstr "1 paket" @@ -3717,25 +3653,24 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "nödvändiga installationer" #~ msgid "Please wait, loading page..." -#~ msgstr "" -#~ "Var vänlig vänta, läser in sidan..." +#~ msgstr "Var vänlig vänta, läser in sidan..." #~ msgid "" #~ "You have no packages from this channel currently installed on your system." #~ msgstr "" -#~ "Du har för närvarande inte några paket från denna kanal installerade på " -#~ "ditt system." +#~ "Du har för närvarande inte några paket från denna kanal installerade på ditt " +#~ "system." #~ msgid "" -#~ "You can visit the channel's about page " -#~ "to get more information about what software is available, or you can go " +#~ "You can visit the channel's about page to " +#~ "get more information about what software is available, or you can go " #~ "directly to the install page to " #~ "install software." #~ msgstr "" -#~ "Du kan besöka kanalens om-sida för att " -#~ "få mer information om vilken programvara som är tillgänglig, eller gå " -#~ "direkt till installationssidan för " -#~ "att installera program." +#~ "Du kan besöka kanalens om-sida för att få " +#~ "mer information om vilken programvara som är tillgänglig, eller gå direkt " +#~ "till installationssidan för att " +#~ "installera program." #~ msgid "View the about page." #~ msgstr "Visa om-sidan." @@ -3747,8 +3682,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Gå tillbaka till sammanfattningen." #~ msgid "" -#~ "You don't have any packages installed from this channel. The following " -#~ "pre-defined sets of packages are available, or you may select individual " +#~ "You don't have any packages installed from this channel. The following pre-" +#~ "defined sets of packages are available, or you may select individual " #~ "packages from the Install page." #~ msgstr "" #~ "Du har inga paket installerade från denna kanal. Följande fördefinierade " @@ -3756,37 +3691,37 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "href=updater:available_page>installationssidan." #~ msgid "" -#~ "To install new software from this channel, visit the install page." +#~ "To install new software from this channel, visit the install page." #~ msgstr "" -#~ "För att installera ny programvara går du till installationssidan." +#~ "För att installera ny programvara går du till installationssidan." #~ msgid "" -#~ "To remove already installed software from this channel, visit the remove page." +#~ "To remove already installed software from this channel, visit the remove page." #~ msgstr "" -#~ "För att ta bort redan installerad programvara från denna kanal går du " -#~ "till borttagningssidan." +#~ "För att ta bort redan installerad programvara från denna kanal går du till " +#~ "borttagningssidan." #~ msgid "Unsubscribe from this channel." #~ msgstr "" -#~ "Säg upp prenumerationen på " -#~ "denna kanal." +#~ "Säg upp prenumerationen på denna " +#~ "kanal." #~ msgid "" -#~ "There is 1 update available in this channel, totalling %s " -#~ "of data to be downloaded." +#~ "There is 1 update available in this channel, totalling %s of " +#~ "data to be downloaded." #~ msgstr "" #~ "Det finns 1 uppdatering tillgänglig i denna kanal, som kräver att " #~ "%s data hämtas." #~ msgid "" -#~ "There are %s updates available in this channel, totalling %s of data to be downloaded." +#~ "There are %s updates available in this channel, totalling %s " +#~ "of data to be downloaded." #~ msgstr "" -#~ "Det finns %s uppdateringar tillgängliga i denna kanal, som kräver " -#~ "att %s data hämtas." +#~ "Det finns %s uppdateringar tillgängliga i denna kanal, som kräver att " +#~ "%s data hämtas." #~ msgid "Essential Updates" #~ msgstr "Nödvändiga uppdateringar" @@ -3818,36 +3753,34 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "ditt system.

" #~ msgid "" -#~ "

You can go to the Update page to " -#~ "view available updates for your software in this channel, or return to " -#~ "the Summary to view all available updates." -#~ "

" +#~ "

You can go to the Update page to view " +#~ "available updates for your software in this channel, or return to the Summary to view all available updates.

" #~ msgstr "" -#~ "

Du kan gå till uppdateringssidan " -#~ "för att se de uppdateringar till din programvara som finns i denna kanal, " -#~ "eller gå tillbaka till sammanfattningen " -#~ "för att se alla tillgängliga uppdateringar.

" +#~ "

Du kan gå till uppdateringssidan för " +#~ "att se de uppdateringar till din programvara som finns i denna kanal, eller " +#~ "gå tillbaka till sammanfattningen för att se " +#~ "alla tillgängliga uppdateringar.

" #~ msgid "" #~ "

You can go to the Summary to view all " #~ "available updates for your system.

" #~ msgstr "" -#~ "

Du kan gå till sammanfattningen för " -#~ "att se alla uppdateringar som är tillgängliga för ditt system.

" +#~ "

Du kan gå till sammanfattningen för att " +#~ "se alla uppdateringar som är tillgängliga för ditt system.

" #~ msgid "" #~ "The following packages from this channel are available for " #~ "installation." #~ msgstr "" -#~ "Följande paket från denna kanal är tillgängliga för " -#~ "installation." +#~ "Följande paket från denna kanal är tillgängliga för installation." #~ msgid "" -#~ " Package names that are in gray indicate " -#~ "that a newer version of this package is already installed." +#~ " Package names that are in gray indicate that " +#~ "a newer version of this package is already installed." #~ msgstr "" -#~ " Paketnamn som är grå indikerar att en " -#~ "nyare version av detta paket redan är installerat." +#~ " Paketnamn som är grå indikerar att en nyare " +#~ "version av detta paket redan är installerat." #~ msgid "Name:" #~ msgstr "Namn:" @@ -3889,18 +3822,18 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Du prenumererar för närvarande på alla tillgängliga kanaler!" #~ msgid "" -#~ "There is one update available for your system, totalling %s " -#~ "of data to be downloaded." +#~ "There is one update available for your system, totalling %s of " +#~ "data to be downloaded." #~ msgstr "" -#~ "Det finns en uppdatering tillgänglig för ditt system, som kräver " -#~ "att %s data hämtas." +#~ "Det finns en uppdatering tillgänglig för ditt system, som kräver att " +#~ "%s data hämtas." #~ msgid "" -#~ "There are %s updates available for your system, totalling %s of data to be downloaded." +#~ "There are %s updates available for your system, totalling %s " +#~ "of data to be downloaded." #~ msgstr "" -#~ "Det finns %s uppdateringar tillgängliga för ditt system, som " -#~ "kräver att %s data hämtas." +#~ "Det finns %s uppdateringar tillgängliga för ditt system, som kräver " +#~ "att %s data hämtas." #~ msgid " Of these updates, one is urgent." #~ msgstr " Utav dessa uppdateringar är en brådskande." @@ -3918,8 +3851,7 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Synlig felsökningsnivå, går från 0 (ingenting) till 6 (allting)" #~ msgid "Log file debugging level, ranges from 0 (nothing) to 6 (everything)" -#~ msgstr "" -#~ "Felsökningsnivå för loggfil, går från 0 (ingenting) till 6 (allting)" +#~ msgstr "Felsökningsnivå för loggfil, går från 0 (ingenting) till 6 (allting)" #~ msgid "The XAuthority file (usually from GDM)" #~ msgstr "XAuthority-filen (vanligtvis från GDM)" @@ -3938,11 +3870,11 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Hämtar kanalgrafik..." #~ msgid "" -#~ "An error occurred trying to parse the channel list. You should ensure " -#~ "that you are running a supported distribution and try again later." +#~ "An error occurred trying to parse the channel list. You should ensure that " +#~ "you are running a supported distribution and try again later." #~ msgstr "" -#~ "Ett fel inträffade vid försök att tolka kanallistan. Du bör försäkra dig " -#~ "om att du använder en distribution som stöds och försöka igen senare." +#~ "Ett fel inträffade vid försök att tolka kanallistan. Du bör försäkra dig om " +#~ "att du använder en distribution som stöds och försöka igen senare." #~ msgid "Navigation" #~ msgstr "Navigering" @@ -4148,4 +4080,4 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "translator-credits" #~ msgstr "" #~ "Christian Rose\n" -#~ "Skicka synpunkter på översättningen till sv@li.org" +#~ "Skicka synpunkter på översättningen till sv@li.org" \ No newline at end of file diff --git a/po/ta.po b/po/ta.po index 25ea2785..9e86e706 100644 --- a/po/ta.po +++ b/po/ta.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-08-04 02:52+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Raghavan \n" "Language-Team: Tamil \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "ஒரு மாதத்திற்க்கு பின்" msgid "After %s days" msgstr "%s நாட்களுக்கு பிறகு" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,7 +120,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -160,7 +158,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -173,7 +170,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,7 +192,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -256,7 +251,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -315,7 +309,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -378,7 +371,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -389,7 +381,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -442,7 +433,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "கணிணி மேம்பாடு முடிந்தது." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -458,7 +448,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -470,7 +460,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -486,61 +475,59 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 #, fuzzy msgid "The 'diff' command was not found" msgstr "'diff' என்ற கட்டளை இல்லை" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -548,39 +535,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "%s நீக்கு" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "%s நிறுவு" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "%s மேம்படுத்து" @@ -606,7 +592,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -627,11 +612,10 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " -msgstr "" +msgstr " " #: ../DistUpgrade/DistUpgrade.glade.h:2 msgid "" @@ -698,6 +682,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -733,7 +718,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -823,17 +807,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -846,7 +827,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -868,7 +848,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -903,7 +882,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -925,7 +903,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -937,23 +914,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1050,10 +1023,15 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "%s மேம்படுத்து" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1275,229 +1253,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" +msgstr "" \ No newline at end of file diff --git a/po/th.po b/po/th.po index 2b9c2bae..3707d111 100644 --- a/po/th.po +++ b/po/th.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:44+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Roys Hengwatanakul \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" @@ -54,7 +54,6 @@ msgstr "หลังจาก 1 เดือน" msgid "After %s days" msgstr "หลังจาก %s วัน" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,7 +61,6 @@ msgstr "%s ปรับปรุง" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "เซิร์ฟเวอร์หลัก" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,7 +119,8 @@ msgid "Error removing the key" msgstr "มีปัญหาขณะลบกุจแจ" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "กุญแจที่คุณเลือกไม่สามารถลบออกได้ กรุณารายงานว่าเป็นปัญหา" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -153,8 +151,8 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ กรุณาซ่อมโดยใช้โปรแกรม synaptic " -"หรือ apt-get ก่อนดำเนินการต่อไป" +"ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ " +"กรุณาซ่อมโดยใช้โปรแกรม synaptic หรือ apt-get ก่อนดำเนินการต่อไป" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -164,7 +162,6 @@ msgstr "ไม่สามารถปรับปรุง meta แพกเก msgid "A essential package would have to be removed" msgstr "แพจเกจที่สำคัญจะถูกลบออก" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "ไม่สามารถคำนวนการปรับปรุงได้" @@ -181,7 +178,6 @@ msgstr "" "กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และแนบไฟล์ใน /var/log/dist-" "upgrade/ ในรายงานด้วย" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "ไม่ปัญหาในการยืนยันว่าเป็บของจริงสำหรับบางแพกเกจ" @@ -192,8 +188,9 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"ไม่สามารถที่จะยืนยันความถูกต้องของแพกเกจบางอันได้ นี่อาจจะเกี่ยวกับปัญหาในด้านเครือข่าย " -"คุณอาจจะลองอีกครั้งภายหลังก็ได้ กรุณาตรวจดูรายการของแพกเกจที่ไม่ผ่านการยืนยัน" +"ไม่สามารถที่จะยืนยันความถูกต้องของแพกเกจบางอันได้ " +"นี่อาจจะเกี่ยวกับปัญหาในด้านเครือข่าย คุณอาจจะลองอีกครั้งภายหลังก็ได้ " +"กรุณาตรวจดูรายการของแพกเกจที่ไม่ผ่านการยืนยัน" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -206,7 +203,6 @@ msgid "" "bug. " msgstr "ไม่สามารถที่จะติดตั้งแพกเกจที่ต้องการได้ กรุณารายงานว่าเป็นปัญหา " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "ไม่สามารถเดาเมททาแพกเกจ(meta-package)ได้" @@ -221,8 +217,8 @@ msgid "" msgstr "" "ระบบของคุณไม่มีอูบันตูเดสก์ท็อป คูบันตูเดสก์ท็อป หรือ เอ็ดดูบันตูเดกส์ท็อป " "แพกเกจและไม่สามารถที่จะตรวจสอบได้ว่าคุณใช้อูบันตูรุ่นไหนอยู่\n" -" กรุณาติดตั้งแพกเกจข้างบนอย่างใดอย่างหนึ่งก่อนโดยใช้โปรแกรม synaptic หรือโปรแกรม apt-get " -"ก่อนดำเนินการต่อไป" +" กรุณาติดตั้งแพกเกจข้างบนอย่างใดอย่างหนึ่งก่อนโดยใช้โปรแกรม synaptic " +"หรือโปรแกรม apt-get ก่อนดำเนินการต่อไป" #: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" @@ -237,7 +233,8 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"มีปัญหาในการเพิ่มซีดีการปรับปรุงรุ่นจะถูกยกเลิก กรุณารายงานปัญหานี้ถ้าเป็นซีดีที่ถูกต้องของอูบันตู\n" +"มีปัญหาในการเพิ่มซีดีการปรับปรุงรุ่นจะถูกยกเลิก " +"กรุณารายงานปัญหานี้ถ้าเป็นซีดีที่ถูกต้องของอูบันตู\n" "\n" "ปัญหาคือ : \n" "'%s'" @@ -257,9 +254,10 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" -"การปรับปรุงรุ่นสามารถใช้เครือข่ายเพื่อตรวจเช็คว่ามีรุ่นล่าสุดหรือไม่ ่และดึงแพ็กเกจอื่นๆที่ไม่อยู่ในแผ่นซีดี\n" -"ถ้าคุณติดต่อเครือข่ายได้โดยไม่เสียค่าใช้จ่ายมาก และมีความเร็วสูงคุณควรจะตอบ 'ตกลง' " -"ถ้าค่าใช้จ่ายในการใช้เครือข่ายแพงสำหรับคุณเลือก 'ไม่'" +"การปรับปรุงรุ่นสามารถใช้เครือข่ายเพื่อตรวจเช็คว่ามีรุ่นล่าสุดหรือไม่ " +"่และดึงแพ็กเกจอื่นๆที่ไม่อยู่ในแผ่นซีดี\n" +"ถ้าคุณติดต่อเครือข่ายได้โดยไม่เสียค่าใช้จ่ายมาก และมีความเร็วสูงคุณควรจะตอบ " +"'ตกลง' ถ้าค่าใช้จ่ายในการใช้เครือข่ายแพงสำหรับคุณเลือก 'ไม่'" #: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" @@ -277,13 +275,14 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" "ไม่เจอรายการของเซิรฟ์เวอร์เสริมสำหรับปรับปรุงขณะที่ตรวจสอบแหล่งข้อมูลของคุณ " -"นี่อาจจะเกิดขึ้นได้ถ้าคุณใช้เซิรฟ์เวอร์เสริมภายในหรือข้อมูลของเซิรฟ์เวอร์เสริมล้าสมัย\n" +"นี" +"่อาจจะเกิดขึ้นได้ถ้าคุณใช้เซิรฟ์เวอร์เสริมภายในหรือข้อมูลของเซิรฟ์เวอร์เสริม" +"ล้าสมัย\n" "\n" -"คุณต้องการที่จะเขียนทับไฟล์ 'sources.list' ของคุณหรือไม่? ถ้าคุณเลือก 'Yes' " -"ตรงนี้มันจะถูกปรับปรุงรายการทั้งหมดจาก '%s' to '%s' \n" +"คุณต้องการที่จะเขียนทับไฟล์ 'sources.list' ของคุณหรือไม่? ถ้าคุณเลือก " +"'Yes' ตรงนี้มันจะถูกปรับปรุงรายการทั้งหมดจาก '%s' to '%s' \n" "ถ้าคุณเลือก 'no' การปรับปรุงจะถูกยกเลิก" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "สร้าง default sources?" @@ -308,7 +307,8 @@ msgstr "ข้อมูลเกี่ยวกับแหล่งเก็บ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "การปรับปรุงข้อมูลของแหล่งข้อมูลทำให้ไฟล์เสียหาย กรุณารายงานว่าเป็นปัญหา" +msgstr "" +"การปรับปรุงข้อมูลของแหล่งข้อมูลทำให้ไฟล์เสียหาย กรุณารายงานว่าเป็นปัญหา" #: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" @@ -348,9 +348,9 @@ msgid "" "apt-get clean'." msgstr "" "การปรับปรุงถูกยกเลิกแล้ว กรุณาฟรีอย่างน้อย %s ของดิสก์พื้นที่บน %s " -"เทถังขยะทิ้งและลบแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-get clean'" +"เทถังขยะทิ้งและลบแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-" +"get clean'" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "คุณต้องการที่จะเริ่มการปรับปรุงหรือไม่?" @@ -367,8 +367,8 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"การปรับปรุงถูกยกเลิก ระบบของคุณอาจจะอยู่ในสภาพที่ไม่มั่นคง โปรแกรมกู้ระบบถูกเรียกใช้ (dpkg --" -"configure -a)\n" +"การปรับปรุงถูกยกเลิก ระบบของคุณอาจจะอยู่ในสภาพที่ไม่มั่นคง " +"โปรแกรมกู้ระบบถูกเรียกใช้ (dpkg --configure -a)\n" "\n" "กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และแนบไฟล์ใน /var/log/dist-" "upgrade/ ในรายงานด้วย" @@ -382,8 +382,8 @@ msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -"การปรับปรุงถูกยกเลิก กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณหรือ installation " -"mediaและลองอีกครั้ง " +"การปรับปรุงถูกยกเลิก กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณหรือ " +"installation mediaและลองอีกครั้ง " #: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" @@ -397,8 +397,9 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"แพกเกจเหล่านีไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้วและตอนนี้ได้รับสนับสนุนจากชุมชน " -"แต่เพียงอย่างเดียว\n" +"" +"แพกเกจเหล่านีไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้วและตอนนี้ได้รับสนับสนุนจาก" +"ชุมชน แต่เพียงอย่างเดียว\n" "\n" "ถ้าคุณไม่ได้เลือกใช ้แพกเกจเหล่านี้จะถูกแนะนำให้ลบออกในขั้นต่อไป" @@ -422,9 +423,10 @@ msgstr "เกิดข้อผิดพลาดขณะแก้ไขปร msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "เกิดปัญหาขึ้นขณะทำการเก็บกวาด กรุณาตรวจสอบข้อความข้างล่างสำหรับรายละเอียดเพิ่มเติม " +msgstr "" +"เกิดปัญหาขึ้นขณะทำการเก็บกวาด " +"กรุณาตรวจสอบข้อความข้างล่างสำหรับรายละเอียดเพิ่มเติม " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "คืนระบบสู่สถานะแรกเริ่ม" @@ -435,24 +437,23 @@ msgid "Fetching backport of '%s'" msgstr "ดึงพอร์ตย้อนหลังของ '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "กำลังตรวจสอบโปรแกรมจัดการแพกเกจ" #: ../DistUpgrade/DistUpgradeControler.py:671 -#, fuzzy msgid "Preparing the upgrade failed" -msgstr "กำลังเตรียมปรับปรุงรุ่น" +msgstr "การเตรียมการปรับปรุงรุ่นมีปัญหา" #: ../DistUpgrade/DistUpgradeControler.py:672 -#, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." -msgstr "ไม่สามารถแก้ไขปัญหาที่เกิดขึ้นได้ขณะคำนวนการปรับปรุง กรุณารายงานว่านี่เป็นปัญหา" +msgstr "" +"การเตรียมระบบสำหรับการปรับปรุงรุ่นมีปัญหา กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ " +"'update-manager' และแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" #: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" @@ -491,7 +492,6 @@ msgstr "ค้นหาซอฟแวร์ที่ล้าสมัย" msgid "System upgrade is complete." msgstr "ปรับปรุงระบบเสร็จแล้ว" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -507,7 +507,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "กำลังดึงไฟล์ %li จาก %li ที่ %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "เหลือประมาณ %s" @@ -519,7 +519,6 @@ msgstr "กำลังดึงไฟล์ %li จาก %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "กำลังเปลี่ยนแปลง" @@ -534,11 +533,10 @@ msgid "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"การปรับปรุงรุ่นถูกยกเลิกแล้ว กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และ " -"กรุณาแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" +"การปรับปรุงรุ่นถูกยกเลิกแล้ว กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-" +"manager' และ กรุณาแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -547,53 +545,56 @@ msgstr "" "เปลี่ยนไฟล์ปรับแต่งที่แก้ไขเอง\n" "'%s' หรือไม่?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"" +"คุณจะสูญเสียข้อมูลปรับแต่งที่ได้ทำไว้ในไฟล์ปรับแต่งถ้าคุณเลือกที่จะเปลี่ยนไปใช" +"้ไฟล์รุ่นใหม่กว่านี้" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "ไม่เจอคำสั่ง 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "เกิดข้อผิดพลาดอย่างร้ายแรง" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"กรุณารายงานปัญหานี้และแนบไฟล์ใน /var/log/dist-upgrade/main.log and /var/log/dist-" -"upgrade/apt.log มาในรายงานของคุณด้วย การปรับปรุงถูกยกเลิก\n" -"ไฟล์ sources.list อันเดิมของคุณถูกเก็บไว้ที่ /etc/apt/sources.list.distUpgrade" +"กรุณารายงานปัญหานี้และแนบไฟล์ใน /var/log/dist-upgrade/main.log and " +"/var/log/dist-upgrade/apt.log มาในรายงานของคุณด้วย การปรับปรุงถูกยกเลิก\n" +"ไฟล์ sources.list อันเดิมของคุณถูกเก็บไว้ที่ " +"/etc/apt/sources.list.distUpgrade" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d แพกเกจจะถูกลบออก" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d แพกเกจใหม่จะถูกติดตั้ง" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d แพกเกจจะถูกปรับปรุงรุ่น" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#, fuzzy msgid "" "\n" "\n" @@ -603,39 +604,40 @@ msgstr "" "\n" "คุณจะต้องดาวน์โหลดทั้งหมด %s " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "ดาวน์โหลดและติดตั้งอาจจะใช้เวลานานหลายชั่วโมง และไม่สามารถที่จะยกเลิกได้หลังจากนี้ไป" +msgstr "" +"ดาวน์โหลดและติดตั้งอาจจะใช้เวลานานหลายชั่วโมง " +"และไม่สามารถที่จะยกเลิกได้หลังจากนี้ไป" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "เพื่อป้องกันข้อมูลสูญหายกรุณาออกจากทุกโปรแกรมและเอกสารที่เปิดอยู่" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "ระบบของคุณทันสมัยแล้ว" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "ไม่มีข้อมูลปรับปรุงรุ่นสำหรับระบบของคุณ การปรับปรุงรุ่นจึงถูกยกเลิก" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "ลบออก %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "ติดตั้ง %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "ปรับปรุงรุ่น %s" @@ -661,13 +663,14 @@ msgid "%li seconds" msgstr "%li วินาที" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"ดาวน์โหลดนี้จะใช้เวลาประมาณ %s ด้วยการสื่อสารแบบ 1Mbit DSL และประมาณ %s " +"ถ้าใช้ 56K โมเดม" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -676,12 +679,13 @@ msgstr "ต้องเริ่มระบบใหม่" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "การปรับปรุงเสร็จสิ้นแล้วและต้องการที่จะเริ่มระบบใหม่ คุณต้องการที่จะทำเดี๋ยวนี้หรือเปล่า?" +msgstr "" +"การปรับปรุงเสร็จสิ้นแล้วและต้องการที่จะเริ่มระบบใหม่ " +"คุณต้องการที่จะทำเดี๋ยวนี้หรือเปล่า?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -696,7 +700,8 @@ msgid "" msgstr "" "ต้องการยกเลิกการปรับปรุงที่กำลังทำอยู่หรือไม่?\n" "\n" -"ระบบอาจจะไม่มั่นคงถ้าคุณยกเลิกการปรับปรุง ขอแนะนำเป็นอย่างยิ่งให้คุณดำเนินการปรับปรุงต่อไป" +"ระบบอาจจะไม่มั่นคงถ้าคุณยกเลิกการปรับปรุง " +"ขอแนะนำเป็นอย่างยิ่งให้คุณดำเนินการปรับปรุงต่อไป" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" @@ -743,19 +748,19 @@ msgid "Terminal" msgstr "เทอร์มินัล" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "_ปรับปรุงรุ่นต่อจากคราวที่แล้ว" +msgstr "_ยกเลิกการปรับปรุงรุ่น" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "ดำเนินการ_ต่อไป" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" msgstr "_คงไว้" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "แ_ทนที่" @@ -772,9 +777,8 @@ msgid "_Resume Upgrade" msgstr "_ปรับปรุงรุ่นต่อจากคราวที่แล้ว" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "_ปรับปรุงรุ่นต่อจากคราวที่แล้ว" +msgstr "เ_ริ่มการปรับปรุงรุ่น" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -792,7 +796,6 @@ msgstr "ไม่สามารถดาวน์โหลดบันทึก msgid "Please check your internet connection." msgstr "กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "ไม่สามารถเรียกใช้เครื่องมือปรับปรุง" @@ -834,7 +837,9 @@ msgstr "ไม่สามารถเอาออกมาได้" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "ไม่สามารถแกะข้อมูลปรับปรุงออกมาได้ อาจจะเป็นปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " +msgstr "" +"ไม่สามารถแกะข้อมูลปรับปรุงออกมาได้ " +"อาจจะเป็นปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -844,7 +849,8 @@ msgstr "ไม่สามารถตรวจเช็คความถูก msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "ตรวจทานการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิร์ฟเวอร์ " +msgstr "" +"ตรวจทานการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิร์ฟเวอร์ " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -854,13 +860,15 @@ msgstr "ไม่สามารถยืนยันว่าเป็นขอ msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "ยืนยันการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " +msgstr "" +"ยืนยันการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -"กำลังดาวน์โหลดไฟล์ที่ %(current)li จากทั้งหมด %(total)li ด้วยความเร็ว %(speed)s/s" +"กำลังดาวน์โหลดไฟล์ที่ %(current)li จากทั้งหมด %(total)li ด้วยความเร็ว " +"%(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 #, python-format @@ -872,31 +880,29 @@ msgid "The list of changes is not available" msgstr "รายการของการเปลี่ยนแปลงยังไม่มีให้" #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." -msgstr "รายการของการเปลี่ยนแปลงยังไม่มีให้ กรุณาลองอีกทีภายหลัง" +msgstr "" +"รายการของการเปลี่ยนแปลงยังไม่มีให้ \n" +"กรุณาตรวจอีกทีภายหลัง" #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"ไม่สามารถดาวน์โหลดรายการของการเปลี่ยนแปลง กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" +"ไม่สามารถดาวน์โหลดรายการของการเปลี่ยนแปลง \n" +"กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "ปรับปรุงด้านความปลอดภัยที่สำคัญ" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "การปรับปรุงที่แนะนำให้ทำ" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "การปรับปรุงที่เสนอให้ทำ" @@ -909,7 +915,6 @@ msgstr "พอร์ตย้อนหลัง" msgid "Distribution updates" msgstr "ปรับปรุงชุดเผยแพร่" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "_ปรับปรุงอื่นๆ" @@ -932,7 +937,6 @@ msgstr "ไ_ม่เลือกทั้งหมด" msgid "_Check All" msgstr "เ_ลือกทั้งหมด" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -966,7 +970,6 @@ msgstr "จากรุ่นเก่า: %(old_version)s ไปสู่รุ msgid "Version %s" msgstr "รุ่น %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -991,7 +994,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "มีชุดแจกจ่ายใหม่ '%s' " -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "ดัชนีของซอฟแวร์เสียหาย" @@ -1002,26 +1004,23 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"ไม่สามารถที่จะติดตั้งหรือลบออกซอฟแวร์ใดๆ กรุณาใช้โปรแกรมจัดการแพกเกจ \"Synaptic\" หรือ " -"คำสั่ง \"sudo apt-get install -f\" ในเทอร์มินัลเพื่อที่จะแก้ปัญหานี้ก่อน" +"ไม่สามารถที่จะติดตั้งหรือลบออกซอฟแวร์ใดๆ กรุณาใช้โปรแกรมจัดการแพกเกจ " +"\"Synaptic\" หรือ คำสั่ง \"sudo apt-get install -f\" " +"ในเทอร์มินัลเพื่อที่จะแก้ปัญหานี้ก่อน" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "ไม่มี" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1036,8 +1035,8 @@ msgid "" msgstr "" "คุณต้องตรวจหารายการปรับปรุงด้วยตนเอง\n" "\n" -"ระบบของคุณไม่ตรวจหารายการปรับปรุงโดยอัตโนมัตื คุณสามารถปรับแต่งในแหล่งข้อมูลในแถบปรับปรุงทางอินเทอร์เน็ต" +"ระบบของคุณไม่ตรวจหารายการปรับปรุงโดยอัตโนมัตื " +"คุณสามารถปรับแต่งในแหล่งข้อมูลในแถบปรับปรุงทางอินเทอร์เน็ต" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1084,8 +1083,8 @@ msgid "" msgstr "" "ดำเนินการปรับปรุงชุดเผยแพร่ ทำการติดตั้งปรับปรุงมากที่สุดเท่าที่จะทำได้ \n" "\n" -"นี่อาจจะมีเหตุมาจากการปรับปรุงที่ไม่เสร็จสิ้น ซอฟต์แวร์แพ็กเกจที่ไม่สนับสนุนอย่างเป็นทางการ " -"หรือใช้รุ่นที่ยังพัฒนาไม่เสร็จ" +"นี่อาจจะมีเหตุมาจากการปรับปรุงที่ไม่เสร็จสิ้น " +"ซอฟต์แวร์แพ็กเกจที่ไม่สนับสนุนอย่างเป็นทางการ หรือใช้รุ่นที่ยังพัฒนาไม่เสร็จ" #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1099,7 +1098,8 @@ msgstr "ซอฟต์แวร์ปรับปรุง" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "ซอฟแวร์ปรับปรุงแก้ปัญหา,กำจัดจุดอ่อนด้านความปลอดภัยและเพิ่มความสามารถใหม่" +msgstr "" +"ซอฟแวร์ปรับปรุงแก้ปัญหา,กำจัดจุดอ่อนด้านความปลอดภัยและเพิ่มความสามารถใหม่" #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1127,10 +1127,15 @@ msgstr "_ติดตั้งปรัยปรุง" #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "_ปรับปรุง" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "เปลี่ยนแปลง" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "ปรับปรุง" @@ -1160,7 +1165,8 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"เพื่อที่จะเพิ่มประสพการณ์ให้แก่ผู้ใช้อูบันตู กรุณาเข้าร่วนในการแข่งขันความนิยม ถ้าคุณร่วมด้วย " +"เพื่อที่จะเพิ่มประสพการณ์ให้แก่ผู้ใช้อูบันตู " +"กรุณาเข้าร่วนในการแข่งขันความนิยม ถ้าคุณร่วมด้วย " "รายการของซอฟต์แวร์ที่ติดตั้งและความถี่ในการเรียกใช้งานจะถูกเก็บไว้ " "และส่งโดยไม่ระบุชื่อไปที่โครงการอูบันตูอาทิตย์ละครั้ง\n" "\n" @@ -1195,7 +1201,10 @@ msgstr "ปรัปรุงทางอินเทอร์เน็ต" msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" -msgstr "การปรับปรุงด้านความปลอดภัยจะติดตั้งโดยอัตโนมัติจากเซิรฟ์เวอร์ทางการของอูบันตูเท่านั้น" +msgstr "" +"" +"การปรับปรุงด้านความปลอดภัยจะติดตั้งโดยอัตโนมัติจากเซิรฟ์เวอร์ทางการของอูบันตูเ" +"ท่านั้น" #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" @@ -1286,10 +1295,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"กรุณาเติมให้ครบบรรทัด APT ของแหล่งข้อมูลที่คุณต้องการจะเพิ่ม\n" +"กรุณาเติมให้ครบบรรทัด APT " +"ของแหล่งข้อมูลที่คุณต้องการจะเพิ่ม\n" "\n" -"บรรทัด APT ประกอบด้วย ชนิด,สถานที่,ส่วนประกอบของแหล่งข้อมูล เช่น \"deb http://ftp." -"debian.org sarge main\"" +"บรรทัด APT ประกอบด้วย ชนิด,สถานที่,ส่วนประกอบของแหล่งข้อมูล เช่น \"deb " +"http://ftp.debian.org sarge main\"" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1332,7 +1342,9 @@ msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." msgstr "" -"ตรวจหาโดยอัตโนมัติว่ารุ่นใหม่ของชุดเผยแพร่นี้มีหรือยังและสามารถใช้ปรับปรุงรุ่นได้(ถ้าเป็นไปได้)" +"" +"ตรวจหาโดยอัตโนมัติว่ารุ่นใหม่ของชุดเผยแพร่นี้มีหรือยังและสามารถใช้ปรับปรุงรุ่น" +"ได้(ถ้าเป็นไปได้)" #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" @@ -1344,7 +1356,8 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"ถ้าการตรวจสอบสำหรับปรับปรุงโดยอัตโนมัติถูกปิดไว้ คุณจะต้องโหลดช่องรายการใหม่เอง " +"ถ้าการตรวจสอบสำหรับปรับปรุงโดยอัตโนมัติถูกปิดไว้ " +"คุณจะต้องโหลดช่องรายการใหม่เอง " "ตัวเลือกนี้ทำให้ซ่อนคำเตือนที่จะแสดงในกรณีนี้ได้" #: ../data/update-manager.schemas.in.h:4 @@ -1373,235 +1386,191 @@ msgstr "ขนาดของหน้าต่าง" msgid "Configure the sources for installable software and updates" msgstr "ปรับแต่งแหล่งสำหรับซอฟต์แวร์และปรับปรุงที่ติดตั้งได้" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "อูบันตู 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "ชุมชนดูแล" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "ไดรเวอร์ที่มีกรรมสิทธิ์สำหรับอุปกรณ์" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "ซอฟต์แวร์จำกัดการใช้งาน" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "ซีดีรอมที่มีอูบันตู 6.10 'Edgy Eft'" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "อูบันตู 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -#, fuzzy msgid "Canonical supported Open Source software" -msgstr "ชุมชนดูแล (Universe)" +msgstr "ซอฟต์แบบเปิดเผยสนับสนุนโดย Canonical" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "ชุมชนดูแล (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "ชุมชนดูแล ซอฟต์แวร์แบบเปิดเผย" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "ไดรเวอร์ที่ไม่ฟรี" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "ไดรเวอร์ที่มีกรรมสิทธิ์สำหรับอุปกรณ์ " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "ซอฟต์แวร์จำกัดการใช้งาน(Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "ซอฟต์แวร์นี้มีลิขสิทธ์หรือข้อกฏหมายจำกัดอยู่" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "ซีดีรอมที่มีอูบันตู 6.06 LST 'Dapper Drake'" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "การปรับปรุงแบบย้อนหลัง" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "อูบันตู 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "ซีดีรอมที่มี อูบันตู 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "อูบันตู 5.10 Security Updates" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "อูบันตู 5.10 Updates" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "อูบันตู 5.10 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "อูบันตู 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "ซีดีรอมที่มีอูบันตู 5.04 'Hoary Hedgehog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "สนับสนุนอย่างเป็นทางการ" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "อูบันตู 5.04 ปรับปรุงด้านความปลอดภัย" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "อูบันตู 5.04 ปรับปรุง" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "อูบันตู 5.04 พอร์ตย้อนหลัง" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "อูบันตู 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "ชุมชนดูแล (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "ไม่ฟรี(ลิขสิทธิ์)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "ซีดีรอมที่มีอูบันตู 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "ไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้ว" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "จำกัดลิขสิทธิ์" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "อูบันตู 4.10 ปรับปรุงด้านความปลอดภัย" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "อูบันตู 4.10 ปรับปรุง" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "อูบันตู 4.10 พอร์ตย้อนหลัง" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "เดเบียน 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "เดเบียน 3.1 \"Sarge\" ปรับปรุงด้านความปลอดภัย" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "เดเบียน \"Etch\" (กำลังทดสอบ)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "เดเบียน \"Sid\" (ผันผวน)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "เข้ากับ DFSG ซอฟแวร์แต่ขึ้นอยู่กับไม่ฟรี" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li โดยไม่ทราบความเร็ว" @@ -1653,16 +1622,17 @@ msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "การปรับปรุงบางอันต้องการที่จะลบซอฟแวร์ออกอีก กรุณาใช้ตัวเลือก \"Mark All Upgrades\" " -#~ "ของโปรแกรมจัดการแพกเกจ \"Synaptic\" หรือใช้คำสั่ง \"sudo apt-get dist-upgrade" -#~ "\" ในเทอร์มินัล ในการปรับปรุงระบบของคุณให้เสร็จสิ้นสมบรูณ์" +#~ "การปรับปรุงบางอันต้องการที่จะลบซอฟแวร์ออกอีก กรุณาใช้ตัวเลือก \"Mark All " +#~ "Upgrades\" ของโปรแกรมจัดการแพกเกจ \"Synaptic\" หรือใช้คำสั่ง \"sudo apt-get " +#~ "dist-upgrade\" ในเทอร์มินัล ในการปรับปรุงระบบของคุณให้เสร็จสิ้นสมบรูณ์" #~ msgid "The following updates will be skipped:" #~ msgstr "การปรับปรุงต่อไปนี้จะถูกข้ามไป:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "เหลือประมาณ %li วินาที" @@ -1736,12 +1706,12 @@ msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" #~ msgid "" #~ "The upgrade aborts now. Please free at least %s of disk space. Empty your " -#~ "trash and remove temporary packages of former installations using 'sudo " -#~ "apt-get clean'." +#~ "trash and remove temporary packages of former installations using 'sudo apt-" +#~ "get clean'." #~ msgstr "" #~ "การปรับปรุงถูกยกเลิก กรุณาทำให้มีพื้นที่ว่างในดิสก์อย่างน้อย %s " -#~ "เทถังขยะทิ้งและลบทิ้งแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-get " -#~ "clean'." +#~ "เทถังขยะทิ้งและลบทิ้งแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo " +#~ "apt-get clean'." #~ msgid "%s remaining" -#~ msgstr "%s เหลืออีก" +#~ msgstr "%s เหลืออีก" \ No newline at end of file diff --git a/po/tr.po b/po/tr.po index 495e1825..3c455939 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-09-27 21:59+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Kayra Akman \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" @@ -55,7 +55,6 @@ msgstr "Bir ay sonra" msgid "After %s days" msgstr "%s gün sonra" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "%s güncellemeleri" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Ana sunucu" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -116,18 +113,21 @@ msgstr "Seçili dosyayı aktarmada hata" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "Seçili dosya bir GPG anahtar dosyası olmayabilir veya bozuk olabilir." +msgstr "" +"Seçili dosya bir GPG anahtar dosyası olmayabilir veya bozuk olabilir." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Anahtar kaldırmada hata" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." -msgstr "Seçtiğiniz anahtar kaldırılamadı. Lütfen bunu bir hata olarak iletin." +msgid "" +"The key you selected could not be removed. Please report this as a bug." +msgstr "" +"Seçtiğiniz anahtar kaldırılamadı. Lütfen bunu bir hata olarak iletin." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, fuzzy msgid "" "Error scanning the CD\n" "\n" @@ -165,7 +165,6 @@ msgstr "Gerekli bilgi-paketleri güncelleştirilemiyor" msgid "A essential package would have to be removed" msgstr "Gerekli bir paketin kaldırılması gerekmekte" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Güncelleme hesaplanamadı" @@ -182,7 +181,6 @@ msgstr "" "Lütfen bu hatayı 'update-manager' için bildirin, hata raporuna /var/log/dist-" "upgrade/ konumundaki dosyaları da ekleyin." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Bazı paketlerin doğrulamasında hata" @@ -206,9 +204,9 @@ msgstr "'%s' yüklenemiyor" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "Gerekli bir paket yüklenemedi. Lütfen bunu bir hata olarak bildirin. " +msgstr "" +"Gerekli bir paket yüklenemedi. Lütfen bunu bir hata olarak bildirin. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Meta-paket kestirilemedi" @@ -289,7 +287,6 @@ msgstr "" "'Evet'i seçersiniz '%s'den '%s'e kadar olan girdiler güncellenecek.\n" "'Hayır'ı seçerseniz güncelleme iptal edilecek." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Öntanımlı depolar kaydedilsin mi??" @@ -360,7 +357,6 @@ msgstr "" "Çöpünüzü boşaltın ve 'sudo apt-get clean' kullanarak önceden kurulumların " "geçici paketlerini kaldırın." -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Yükseltmeyi başlatmak istiyor musunuz?" @@ -380,8 +376,8 @@ msgstr "" "Yükseltmeden şimdi iptal ediliyor. Sisteminiz kararsız bir durumda olabilir. " "Bir kurtarma işlemi gerçekleştirildi. (dpkg --configure -a).\n" "\n" -"Lütfen 'update-manager' paketi için bu hatayı bildirin. Hata bildirimine /" -"var/log/dist-upgrade/ konumundaki dosyaları da ekleyin." +"Lütfen 'update-manager' paketi için bu hatayı bildirin. Hata bildirimine " +"/var/log/dist-upgrade/ konumundaki dosyaları da ekleyin." #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -432,7 +428,6 @@ msgstr "" "Temizleme sırasında bazı sorunlar oluştu. Bilgi için lütfen aşağıdaki mesaja " "bakın. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Orijinal sistem durumuna geri dönülüyor" @@ -443,7 +438,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -499,7 +493,6 @@ msgstr "Kullanılmayan yazılımlar aranıyor" msgid "System upgrade is complete." msgstr "Sistem yükseltmesi tamamlandı." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -516,7 +509,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "Dosyalar indiriliyor. İnen: %li Toplam: %li Hız: %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "Yaklaşık %s kaldı" @@ -528,7 +521,6 @@ msgstr "Dosyalar inidiriliyor. İnen: %li Toplam: %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Değişiklikler uygulanıyor" @@ -547,8 +539,7 @@ msgstr "" "bildirin. Hata bildiriminize /var/log/dist-upgrade/ konumundaki dosyaları da " "ekleyin." -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -557,25 +548,25 @@ msgstr "" "Özelleştirilmiş yapılandırma dosyası\n" "'%s' değiştirilsin mi?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "'diff' komutu bulunamadı" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Giderilemez bir hata oluştu" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Lütfen bu hatayı bildirin. Hata bildiriminize /var/log/dist-upgrade/ " @@ -584,26 +575,25 @@ msgstr "" "kaydedildi." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paket kaldırılacak." -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d yeni paket kurulacak." -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paket yükseltilecek." -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -614,7 +604,7 @@ msgstr "" "\n" "Toplam %s indirmeniz gerekmektedir. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -622,18 +612,17 @@ msgstr "" "Yükseltmeyi indirmek ve kurmak saatlerce sürebilir ve daha sonra iptal " "edilemez." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Veri kaybını önlemek için açık olan tüm uygulamaları ve belgeleri kapatın." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sisteminiz güncel" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -641,17 +630,17 @@ msgstr "" "Sisteminiz için olası herhangi bir yükseltme yok. Yükseltme işlemi şimdi " "iptal edilecek." -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Şunu kaldır: %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "%s'i kur" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "%s'i yükselt" @@ -677,7 +666,6 @@ msgid "%li seconds" msgstr "%li saniye" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -699,7 +687,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -719,7 +706,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Yükseltmeyi tamamlamak için sistemi yeniden başlatın" +msgstr "" +"Yükseltmeyi tamamlamak için sistemi yeniden başlatın" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -774,6 +762,7 @@ msgid "_Keep" msgstr "_Koru" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "_Değiştir" @@ -796,7 +785,7 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" -"Suggestions: \t\t\r\n" +"Suggestions: \t\t \n" "Yayın notları bulunamadı" #: ../UpdateManager/DistUpgradeFetcher.py:69 @@ -811,7 +800,6 @@ msgstr "Yayın notları indirilemedi" msgid "Please check your internet connection." msgstr "İnternet bağlantınızı kontrol ediniz." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Yükseltme aracı çalıştırılamadı." @@ -854,7 +842,8 @@ msgstr "Çıkarılamadı" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "Yükseltme çıkarılamadı. Ağ veya sunucu ile ilgili bir sorun olabilir. " +msgstr "" +"Yükseltme çıkarılamadı. Ağ veya sunucu ile ilgili bir sorun olabilir. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -904,17 +893,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Önemli güvenlik güncelleştirmeleri" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Önerilen güncellemeler" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Teklif edilmiş güncellemeler" @@ -927,7 +913,6 @@ msgstr "Backport edilmiş yazılımlar" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Diğer güncellemeler" @@ -949,7 +934,6 @@ msgstr "Hiç_birini Seçme" msgid "_Check All" msgstr "_Hepsini Seç" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -983,7 +967,6 @@ msgstr "" msgid "Version %s" msgstr "Sürüm %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1009,7 +992,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Yeni dağıtım yayını '%s' ulaşılabilir" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Yazılım dizini bozulmuş" @@ -1024,23 +1006,19 @@ msgstr "" "durumu düzeltmek için öncelikle \"Synaptic\" paket yöneticisini kullanın ya " "da uçbirim penceresine \"sudo apt-get install -f\" komutunu yazıp çalıştırın." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Hiçbiri" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1062,8 +1040,8 @@ msgstr "Sisteminizi güncel tutun" #, fuzzy msgid "Not all updates can be installed" msgstr "" -"CD taramada hata\r\n" -"\r\n" +"CD taramada hata \n" +" \n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1147,10 +1125,15 @@ msgid "_Install Updates" msgstr "Güncelemeleri _Yükle" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "_Yükselt" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "değişiklikler" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "güncellemeler" @@ -1391,229 +1374,185 @@ msgstr "Pencere boyutu" msgid "Configure the sources for installable software and updates" msgstr "Kurulabilir yazılım ve güncellemeler için kaynakları yapılandır" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Topluluk tarafından bakılan" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Aygıtlar için kapalı kaynak sürücüler" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Kısıtlı yazılımlar" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft' Cdrom'u" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Topluluk tarafından bakılan (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Topluluk tarafından bakılan Açık Kaynak Kodlu yazılımlar" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Özgür olmayan sürücüler" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Aygıtlar için lisanslı sürücüler " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Kısıtlı yazılımlar (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake' Cdrom'u" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Geritaşınmış (backported) güncellemeler" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger' Cdrom'u" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Güncelleştirmeleri" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Geritaşınmış Yazılımlar (Backports)" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog' Cdrom'u" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Resmi olarak desteklenenler" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Güvenlik Güncelleştirmeleri" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Güncelleştirmeleri" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Geritaşınmış Yazılımlar (Backports)" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Topluluk tarafından bakılan (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Özgür olmayan (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog' Cdrom'u" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Artık resmi olarak desteklenmiyor" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Sınırlı telif hakkı" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Güvenlik Güncelleştirmeleri" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Güncelleştirmeleri" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Geritaşınmış Yazılımlar (Backports)" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Güvenlik Güncelleştirmeleri" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (test)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (kararsız)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Özgür Olmayan Bağımlılığı Bulunan DFSG Uyumlu Yazılım" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG Uyumlu Olmayan Yazılım" @@ -1651,4 +1590,4 @@ msgstr "DFSG Uyumlu Olmayan Yazılım" #~ msgstr "Ubuntu 6.06 Güvenlik Güncelleştirmeleri" #~ msgid "Ubuntu 6.06 LTS Security Updates" -#~ msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" +#~ msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" \ No newline at end of file diff --git a/po/uk.po b/po/uk.po index 1e85b1f9..ff1f2a21 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: uk(5)\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-08-20 22:36+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Vadim Abramchuck \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: KBabel 1.11.2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 @@ -56,7 +56,6 @@ msgstr "Через місяць" msgid "After %s days" msgstr "Через %s днів" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,7 +63,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,7 +72,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "Помилка видалення ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -164,7 +162,6 @@ msgstr "Не можливо поновити необхідні meta-пакун msgid "A essential package would have to be removed" msgstr "Це призведе до видалення !essential! пакунку системи" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не можливо розрахувати поновлення" @@ -177,7 +174,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Помилка підписів в деяких пакунках" @@ -204,7 +200,6 @@ msgid "" msgstr "" "Неможливо встановити необхідний пакунок. Сповістіть про це як про помилку. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не можливо підібрати meta-пакунок" @@ -264,7 +259,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "Створити джерела за замовчуванням?" @@ -324,7 +318,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "Бажаєте почати оновлення системи?" @@ -392,7 +385,6 @@ msgstr "" "При очищенні системи виникли проблеми. Прочитайте детальнішу інформацію " "нижче. " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -403,7 +395,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -454,7 +445,6 @@ msgstr "Пошук програм, що не використовуються" msgid "System upgrade is complete." msgstr "Оновлення системи завершено." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -470,7 +460,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -482,7 +472,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -499,39 +488,37 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Команда 'diff' не знайдена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "Виникла невиправна помилка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -539,7 +526,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -547,7 +534,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -555,7 +542,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -563,40 +550,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." -msgstr "Для запобігання втраті інформації закрийте усі програми та документи." +msgstr "" +"Для запобігання втраті інформації закрийте усі програми та документи." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Ваша система оновлена!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#, fuzzy msgid "Remove %s" msgstr "Видалити %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#, fuzzy msgid "Install %s" msgstr "Встановити %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Оновити %s" @@ -622,7 +609,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -644,7 +630,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -719,6 +704,7 @@ msgid "_Keep" msgstr "Затримати" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 #, fuzzy msgid "_Replace" msgstr "Перезавантажити" @@ -755,7 +741,6 @@ msgstr "Не вдалося завантажити примітки випуск msgid "Please check your internet connection." msgstr "Будь ласка, перевірте ваше з'єднання з Інтернетом." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 #, fuzzy msgid "Could not run the upgrade tool" @@ -849,17 +834,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -872,7 +854,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -894,7 +875,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -930,7 +910,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -947,15 +926,14 @@ msgid "" "information on upgrading." msgstr "" "Ви більше не будете отримувати оновлень критичних оновлень та оновлень " -"безпеки. Оновіться до новішої версії Ubuntu Linux. Зайдіть на http://www." -"ubuntu.com для подальшої інформації про оновлення." +"безпеки. Оновіться до новішої версії Ubuntu Linux. Зайдіть на " +"http://www.ubuntu.com для подальшої інформації про оновлення." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -967,23 +945,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1083,10 +1057,15 @@ msgid "_Install Updates" msgstr "Встановлення оновлень..." #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "Оновити" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1316,233 +1295,190 @@ msgstr "Розмір вікна" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Офіційно підтримуються" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Підтримується спільнотою (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Не-вільний (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Обмежені авторські права" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Оновлення безпеки Debian 3.1 \"Sarge\"" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (тестовий)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (нестабільний)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" +#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1553,32 +1489,32 @@ msgstr "" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please " -#~ "report this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " #~ msgstr "" #~ "Під час розрахунку оновлення виникла невиправна помилка. Будь ласка, " #~ "повідомте про це як про помилку програми. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " -#~ "edubuntu-desktop package and it was not possible to detect which version " -#~ "of ubuntu you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" #~ "Ваша система не містить пакунків ubuntu-desktop, kubuntu-desktop або " #~ "edubuntu-desktop, через що не вдалося встановити, яку версію ubuntu Ви " #~ "використовуєте.\n" -#~ " Будь ласка, спочатку встановіть один з цих пакетів, використовуючи " -#~ "synaptic або apt-get." +#~ " Будь ласка, спочатку встановіть один з цих пакетів, використовуючи synaptic " +#~ "або apt-get." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." #~ msgstr "" #~ "Оновлення системи щойно зупинено. Внаслідок цього система може працювати " -#~ "нестабільно. Виконайте команду 'sudo apt-get install -f', або " -#~ "скористайтесь програмою Synaptic для налаштування системи." +#~ "нестабільно. Виконайте команду 'sudo apt-get install -f', або скористайтесь " +#~ "програмою Synaptic для налаштування системи." #~ msgid "Some software no longer officially supported" #~ msgstr "Деяке програмне забезпечення більше офіційно не підтримується" @@ -1587,12 +1523,14 @@ msgstr "" #~ msgid "Restoring originale system state" #~ msgstr "Перезавантаження системи" +#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Залишилось близько %li хвилин" #~ msgid "Download is complete" #~ msgstr "Завантадення пакунків завершено" +#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Завантажується файл %li of %li at %s/s" @@ -1600,6 +1538,7 @@ msgstr "" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку." +#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1609,41 +1548,43 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade." -#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " -#~ "now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" #~ "Будь ласка, повідмте це я помилку, включивши в повідомлення файли ~/dist-" #~ "upgrade.log and ~/dist-upgrade-apt.log . Апргрейд щойно перервано." +#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s пакунків буде видалено." #~ msgstr[1] "" #~ msgstr[2] "" +#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s пакунків буде встановлено." #~ msgstr[1] "" #~ msgstr[2] "" +#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "буде проведено оновлення %s пакунка." #~ msgstr[1] "буде проведено оновлення %s пакунків." #~ msgstr[2] "буде проведено оновлення %s пакунків." +#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Потрібно завантажити всього %s пакунків." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time " -#~ "later." +#~ "The upgrade can take several hours and cannot be canceled at any time later." #~ msgstr "" -#~ "Оновлення може тривати декілька годин; зауважте, що цей процес не може " -#~ "бути перервано протягом усього часу." +#~ "Оновлення може тривати декілька годин; зауважте, що цей процес не може бути " +#~ "перервано протягом усього часу." #~ msgid "Could not find any upgrades" #~ msgstr "Не знайдено пакунків для оновлення" @@ -1691,6 +1632,7 @@ msgstr "" #~ msgid "Show details" #~ msgstr "Показати деталі" +#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "Нова версія: %s (Розмір: %s)" @@ -1725,17 +1667,16 @@ msgstr "" #~ msgstr "Компоненти" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Введіть повний рядок сховища APT, який ви бажаєте додати\n" +#~ "Введіть повний рядок сховища APT, який ви бажаєте додати\n" #~ "\n" -#~ "Рядок APT містить тип, адресу та вміст сховища, наприклад \"deb http://" -#~ "ftp.debian.org sarge main\". Докладні приклади можна знайти у " +#~ "Рядок APT містить тип, адресу та вміст сховища, наприклад \"deb " +#~ "http://ftp.debian.org sarge main\". Докладні приклади можна знайти у " #~ "документації." #~ msgid "Add Channel" @@ -1766,4 +1707,4 @@ msgstr "" #~ msgstr "Оновлення Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Зворотні порти Ubuntu 6.06 LTS" +#~ msgstr "Зворотні порти Ubuntu 6.06 LTS" \ No newline at end of file diff --git a/po/ur.po b/po/ur.po index 12322795..f9a2a9ad 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" "PO-Revision-Date: 2006-05-19 02:46+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -55,7 +55,6 @@ msgstr "ایک ماھ باد" msgid "After %s days" msgstr "بعد %s دن" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -161,7 +159,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -174,7 +171,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -197,7 +193,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -257,7 +252,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -314,7 +308,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -377,7 +370,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -388,7 +380,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -439,7 +430,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -455,7 +445,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -467,7 +457,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -483,60 +472,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -544,39 +531,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -602,7 +588,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -622,7 +607,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -693,6 +677,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -728,7 +713,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -818,17 +802,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -841,7 +822,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -863,7 +843,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -898,7 +877,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -920,7 +898,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -932,23 +909,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1045,10 +1018,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1271,232 +1248,187 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " +#~ msgstr " " \ No newline at end of file diff --git a/po/vi.po b/po/vi.po index 25886b33..3e3715ab 100644 --- a/po/vi.po +++ b/po/vi.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager Gnome HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:45+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Tran The Trung \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" @@ -54,7 +54,6 @@ msgstr "Sau một tháng" msgid "After %s days" msgstr "Sau %s ngày" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,7 +61,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -118,14 +115,16 @@ msgstr "Gặp lỗi khi nhập tâp tin đã chọn" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "Có lẽ tập tin đã chọn không phai là tập tin khóa GPG, hoặc nó bị hỏng." +msgstr "" +"Có lẽ tập tin đã chọn không phai là tập tin khóa GPG, hoặc nó bị hỏng." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Gặp lỗi khi gỡ bỏ khóa" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -164,7 +163,6 @@ msgstr "Không thể nâng cấp các gói gốc được yêu cầu" msgid "A essential package would have to be removed" msgstr "Một gói quan trọng cần phải bị gỡ bỏ" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Không thể tính được dung lượng cần nâng cấp" @@ -178,7 +176,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Gặp lỗi khi đang xác thực một số gói" @@ -205,7 +202,6 @@ msgid "" "bug. " msgstr "Không thể cài đặt được gói yêu cầu. Vui lòng thông báo lỗi này. " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Không thể đoán được gói gốc" @@ -265,7 +261,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -323,7 +318,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -386,7 +380,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -397,7 +390,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 #, fuzzy @@ -452,7 +444,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -468,7 +459,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -480,7 +471,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -497,57 +487,55 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -555,40 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Hệ thống bạn toàn mới nhất." -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -614,7 +601,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -634,7 +620,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -706,6 +691,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 #, fuzzy msgid "_Replace" msgstr "Tải lại" @@ -742,7 +728,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -840,18 +825,15 @@ msgstr "" "Không tải thay đổi về được. Bạn hãy kiểm tra có kết nối đến Mạng hoạt động " "chưa." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -867,7 +849,6 @@ msgstr "Bản cập nhật Ubuntu 5.10" msgid "Distribution updates" msgstr "Đang cài đặt bản cập nhật..." -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -891,7 +872,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -922,11 +902,10 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, fuzzy msgid "Version %s" msgstr "Phiên bản %s:" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -949,7 +928,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -961,23 +939,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1076,10 +1050,15 @@ msgstr "Đang cài đặt bản cập nhật..." #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "Nâng cấp xong" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Đổi" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1323,256 +1302,211 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Bản cập nhật Ubuntu 5.10" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Do cộng đồng bảo quản (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Phần mềm đã đóng góp" -#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Bản cập nhật Ubuntu 5.04" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Do cộng đồng bảo quản (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Do cộng đồng bảo quản (Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Do cộng đồng bảo quản (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Không tự do (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Không tự do (Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Bản cập nhật Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Bản cập nhật Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Bản cập nhật Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04" -#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Được hỗ trợ một cách chính thức" -#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Bản cập nhật Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Bản cập nhật Ubuntu 5.10" -#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Do cộng đồng bảo quản (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Không tự do (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Được hỗ trợ một cách chính thức" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Bản quyền bị giới hạn" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Bản cập nhật Ubuntu 4.10" -#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Bản cập nhật Ubuntu 5.10" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 « Sarge »" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Bản cập nhật bảo mặt ổn định Debian" -#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "Thử ra Debian" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "Không Mỹ Debian (Bất định)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1701,12 +1635,12 @@ msgstr "" #~ msgstr "" #~ "Khóa xác thực\n" #~ "\n" -#~ "Bạn có thể thêm và gỡ bỏ khóa xác thực dùng hộp thoại này. Khóa cho phép " -#~ "bạn thẩm tra toàn vẹn của phần mềm đã tải về." +#~ "Bạn có thể thêm và gỡ bỏ khóa xác thực dùng hộp thoại này. Khóa cho phép bạn " +#~ "thẩm tra toàn vẹn của phần mềm đã tải về." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Thêm tập tin khóa mới vào vòng khóa tin cây. Hãy đảm bảo bạn đã nhận khóa " #~ "này qua kênh bảo mật, và bạn tin cây người sở hữu khóa này. " @@ -1736,11 +1670,11 @@ msgstr "" #~ msgstr "Cỡ tối đa, theo MB:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Phục hồi các khóa mặc định có sẵn trong bản phát hành. Tuy nhiên, hành " -#~ "động này sẽ không sửa đổi khóa nào tự cài đặt." +#~ "Phục hồi các khóa mặc định có sẵn trong bản phát hành. Tuy nhiên, hành động " +#~ "này sẽ không sửa đổi khóa nào tự cài đặt." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Đặt cỡ tối _đa cho bộ nhớ tạm gói" @@ -1769,13 +1703,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Bản nâng cấp công bố\n" #~ "\n" -#~ "Tìm thấy có thể nâng cấp những gói theo đây. Để nâng cấp gói, chỉ đơn " -#~ "giản hãy sử dụng nút « Cài đặt »." +#~ "Tìm thấy có thể nâng cấp những gói theo đây. Để nâng cấp gói, chỉ đơn giản " +#~ "hãy sử dụng nút « Cài đặt »." #~ msgid "Cancel downloading the changelog" #~ msgstr "Thôi tải về Bản ghi đổi..." @@ -1831,19 +1765,18 @@ msgstr "" #~ msgstr[0] "Bạn đã chọn tất cả %s gói đã cập nhật: cỡ tổng là %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "" -#~ "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Bạn đã chọn %s trong %s gói đã cập nhật: cỡ tổng là %s" #~ msgid "The updates are being applied." #~ msgstr "Đang áp dụng những bản cập nhật." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" -#~ "Bạn có thể chạy chỉ một ứng dụng quản lý gói trong một thời gian thôi. " -#~ "Vui lòng đóng ứng dụng khác trước khi tiếp tục." +#~ "Bạn có thể chạy chỉ một ứng dụng quản lý gói trong một thời gian thôi. Vui " +#~ "lòng đóng ứng dụng khác trước khi tiếp tục." #~ msgid "Updating package list..." #~ msgstr "Đạng cập nhật danh sách gói..." @@ -1856,22 +1789,22 @@ msgstr "" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Xin hãy nâng cấp đến một phiên bản Linux Ubuntu mới hơn, vì phiên bản " -#~ "hiện thời của bạn sẽ không còn nhận lại bản cập nhật bảo mật. Hãy xem " +#~ "Xin hãy nâng cấp đến một phiên bản Linux Ubuntu mới hơn, vì phiên bản hiện " +#~ "thời của bạn sẽ không còn nhận lại bản cập nhật bảo mật. Hãy xem " #~ " để tìm thông tin nâng cấp." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Có một bản phát hành mới có tên mã « %s ». Hãy xem để tìm hướng dẫn nâng cấp." +#~ "Có một bản phát hành mới có tên mã « %s ». Hãy xem " +#~ " để tìm hướng dẫn nâng cấp." #~ msgid "Never show this message again" #~ msgstr "Đừng hiện thông điệp này lần nữa." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Không tìm thấy thay đổi nào. Có lẽ máy phục vụ chưa được cập nhật." +#~ msgstr "Không tìm thấy thay đổi nào. Có lẽ máy phục vụ chưa được cập nhật." \ No newline at end of file diff --git a/po/xh.po b/po/xh.po index d18e6633..e5270ec4 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" "PO-Revision-Date: 2006-10-05 20:45+0000\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" @@ -55,7 +55,6 @@ msgstr "" msgid "After %s days" msgstr "" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,7 +62,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,7 +71,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -161,7 +159,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -174,7 +171,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -197,7 +193,6 @@ msgid "" "bug. " msgstr "" -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -257,7 +252,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -314,7 +308,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "" @@ -377,7 +370,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -388,7 +380,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -439,7 +430,6 @@ msgstr "" msgid "System upgrade is complete." msgstr "" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -455,7 +445,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -467,7 +457,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -483,60 +472,58 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -544,39 +531,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -602,7 +588,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -622,7 +607,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -693,6 +677,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -728,7 +713,6 @@ msgstr "" msgid "Please check your internet connection." msgstr "" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -820,18 +804,15 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Bonisa izihlaziyo" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -846,7 +827,6 @@ msgstr "" msgid "Distribution updates" msgstr "Bonisa izihlaziyo" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -869,7 +849,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -905,7 +884,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -927,7 +905,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -939,23 +916,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1054,10 +1027,14 @@ msgid "_Install Updates" msgstr "Bonisa izihlaziyo" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1285,229 +1262,184 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1575,8 +1507,8 @@ msgstr "" #~ msgstr "" #~ "Ulwazi oluhlaziyiweyo\n" #~ "\n" -#~ "Kukho iinkqubo zekhompyutha zasemva kohlaziyo zolwazi olukhoyo. Nceda " -#~ "funda olu lwazi lulandelayo ngocoselelo." +#~ "Kukho iinkqubo zekhompyutha zasemva kohlaziyo zolwazi olukhoyo. Nceda funda " +#~ "olu lwazi lulandelayo ngocoselelo." #~ msgid "Run now" -#~ msgstr "Phumeza inkqubo ngoku" +#~ msgstr "Phumeza inkqubo ngoku" \ No newline at end of file diff --git a/po/zh_CN.po b/po/zh_CN.po index 41d42065..8510173c 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-10-05 20:36+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:00+0000\n" "Last-Translator: catinsnow \n" "Language-Team: zh_CN \n" "MIME-Version: 1.0\n" @@ -54,7 +54,6 @@ msgstr "一月后" msgid "After %s days" msgstr "%s天后" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,7 +61,6 @@ msgstr "%s 更新" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "主服务器" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,7 +119,8 @@ msgid "Error removing the key" msgstr "删除密钥时候出错" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "你所选择的密钥不能被删除。请汇报这个bug" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -152,9 +150,7 @@ msgstr "破损的软件包" msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -msgstr "" -"你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者" -"apt-get修复它们。" +msgstr "你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者apt-get修复它们。" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -164,7 +160,6 @@ msgstr "不能升级要求的元包" msgid "A essential package would have to be removed" msgstr "一个必要的软件包会被删除" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "无法计算升级" @@ -178,10 +173,8 @@ msgid "" msgstr "" "在计算升级时遇到一个无法解决的问题。\n" "\n" -"请汇报这个有关 'update-manager' 的错误,并且将 /var/log/dist-upgrade/ 中的文" -"件包含在错误报告中。" +"请汇报这个有关 'update-manager' 的错误,并且将 /var/log/dist-upgrade/ 中的文件包含在错误报告中。" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "在认证一些软件包时出错" @@ -191,9 +184,7 @@ msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." -msgstr "" -"无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软" -"件包的列表。" +msgstr "无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软件包的列表。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -206,7 +197,6 @@ msgid "" "bug. " msgstr "无法安装要求的软件包。请汇报这个bug。 " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "无法猜出元包" @@ -219,8 +209,8 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"你的系统没有一个ubuntu-desktop,kubuntu-desktop或eubuntu-desktop软件包所以无法" -"确定你运行的ubuntu的版本。\n" +"你的系统没有一个ubuntu-desktop,kubuntu-desktop或eubuntu-" +"desktop软件包所以无法确定你运行的ubuntu的版本。\n" " 请先用新立得或apt-get安装以上所举软件包中的一个。" #: ../DistUpgrade/DistUpgradeControler.py:74 @@ -274,12 +264,10 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"扫描你的源列表时没有找到用于升级的镜像的条目.可能是因为你运行在一个内部的镜像" -"或镜像信息过时了.\n" +"扫描你的源列表时没有找到用于升级的镜像的条目.可能是因为你运行在一个内部的镜像或镜像信息过时了.\n" "一定要重写您的'sources.list'吗?如果选'Yes'将会更新所有'%s'到'%s'条目.\n" "如果选'no'更新将被取消." -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "生成默认的源?" @@ -315,9 +303,7 @@ msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." -msgstr "" -"sources.list中的一些第三方源被禁用。你可以在升级后用\"软件属性\"工具或新立得" -"包管理器来重新启用它们." +msgstr "sources.list中的一些第三方源被禁用。你可以在升级后用\"软件属性\"工具或新立得包管理器来重新启用它们." #: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" @@ -340,10 +326,8 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"升级已被取消。请清理出至少%s的空间在%s磁盘上。清空你的回收站并通过'sudo apt-" -"get clean'命令来删除之前安装的临时软件包。" +"升级已被取消。请清理出至少%s的空间在%s磁盘上。清空你的回收站并通过'sudo apt-get clean'命令来删除之前安装的临时软件包。" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "你要开始升级么?" @@ -360,11 +344,9 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"升级现在取消。你的系统可能处于不稳定状态。恢复操作可运行(dpkg --configure -" -"a)。\n" +"升级现在取消。你的系统可能处于不稳定状态。恢复操作可运行(dpkg --configure -a)。\n" "\n" -"请报告本'update-manger'包的bug,并在报告中包含/var/log/disg-upgrade/中的文" -"件。" +"请报告本'update-manger'包的bug,并在报告中包含/var/log/disg-upgrade/中的文件。" #: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" @@ -415,7 +397,6 @@ msgid "" "more information. " msgstr "在清理时发生问题。更多信息请查看以下消息。 " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "正在恢复原始系统状态" @@ -426,7 +407,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -464,8 +444,7 @@ msgid "" msgstr "" "包信息被更新后核心包'%s'没有找到。\n" "\n" -"这表示严重的错误,请报告这个'update-manager'包的bug,并在报告中包含/var/log/" -"dist-upgrade/中的文件。" +"这表示严重的错误,请报告这个'update-manager'包的bug,并在报告中包含/var/log/dist-upgrade/中的文件。" #: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" @@ -483,7 +462,6 @@ msgstr "寻找陈旧的软件包" msgid "System upgrade is complete." msgstr "系统更新完毕" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -499,7 +477,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "下载文件 %li/%li 速度是%s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "大约还要 %s" @@ -511,7 +489,6 @@ msgstr "下载第 %li 个文件(共 %li 个文件)" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "正在应用更新" @@ -525,12 +502,9 @@ msgstr "无法安装'%s'" msgid "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." -msgstr "" -"升级中止。请报告本'update-manager'包的bug,度在报告中包含/var/log/dist-" -"upgrade/中的文件。" +msgstr "升级中止。请报告本'update-manager'包的bug,度在报告中包含/var/log/dist-upgrade/中的文件。" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" @@ -539,53 +513,51 @@ msgstr "" "替换定制配置文件\n" "“%s”吗?" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "外部命令“diff”没有找到" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "出现致命错误" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"请报告这个bug并在你的报告中包括文件~/dist-upgrade.log和~/dist-upgrade-apt." -"log。升级现在取消。\n" +"请报告这个bug并在你的报告中包括文件~/dist-upgrade.log和~/dist-upgrade-apt.log。升级现在取消。\n" "你原始的sources.list已保存在/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d 个软件包将被删除。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d 个新的软件包将被安装。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d 个软件包将被升级" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -596,39 +568,38 @@ msgstr "" "\n" "你需要下载了总共 %s。 " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "下载及升级会持续几个小时,且不可取消。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "关闭所有打开的程序和文档以防止数据丢失。" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "您的系统已为最新" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "你的系统没有可用升级。升级被取消。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "删除%s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "安装%s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "升级%s" @@ -654,7 +625,6 @@ msgid "%li seconds" msgstr "%li 秒" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -674,7 +644,6 @@ msgstr "升级已经完成并需要重启。你要现在重启么?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -749,6 +718,7 @@ msgid "_Keep" msgstr "维持原状(_K)" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "替换(_R)" @@ -785,7 +755,6 @@ msgstr "无法下载发行说明" msgid "Please check your internet connection." msgstr "请检查你的互联网连接。" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "不能运行升级工具" @@ -851,12 +820,12 @@ msgid "" msgstr "认证升级信息失败。可能是网络或服务器的问题。 " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "正在下载文件 %li/%li 速度是 %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy, python-format +#, fuzzy msgid "Downloading file %(current)li of %(total)li" msgstr "正在下载文件 %li/%li 速度是 %s/s" @@ -878,17 +847,14 @@ msgid "" "Please check your Internet connection." msgstr "无法下载更新列表。请检查您的网络连接。" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "重要安全更新" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "建议更新" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "建议更新" @@ -902,7 +868,6 @@ msgstr "Backports" msgid "Distribution updates" msgstr "继续升级(_R)" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "其它更新" @@ -925,7 +890,6 @@ msgstr "取消全部(_U)" msgid "_Check All" msgstr "选中全部(_C)" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -950,7 +914,7 @@ msgid "Checking for updates" msgstr "检查更新" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, fuzzy msgid "From version %(old_version)s to %(new_version)s" msgstr "新版本:%s(大小:%s)" @@ -959,7 +923,6 @@ msgstr "新版本:%s(大小:%s)" msgid "Version %s" msgstr "版本 %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -975,8 +938,7 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"你将不再获得未来的安全修订或重要更新。升级到更高版本的 Ubuntu Linux。请参见" -"\r\n" +"你将不再获得未来的安全修订或重要更新。升级到更高版本的 Ubuntu Linux。请参见 \n" "http://www.ubuntu.com 来获取更多有关升级的信息。" #: ../UpdateManager/UpdateManager.py:863 @@ -984,7 +946,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "新发行版 '%s' 可用" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "软件索引已被破坏" @@ -995,26 +956,21 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"无法安装或删除任何软件。请使用包管理软件\"synaptic\"或在终端运行\"sudo apt-" -"get install -f\"来修正这个问题。" +"无法安装或删除任何软件。请使用包管理软件\"synaptic\"或在终端运行\"sudo apt-get install -f\"来修正这个问题。" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "无" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1030,8 +986,7 @@ msgid "" msgstr "" "你必须手动检测升级\n" "\n" -"你的系统未自动检测升级。你可以通过编辑\"系统\" -> \"管理\" -> \"软件性能\"改" -"变." +"你的系统未自动检测升级。你可以通过编辑\"系统\" -> \"管理\" -> \"软件性能\"改变." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1119,10 +1074,15 @@ msgid "_Install Updates" msgstr "安装更新(_I)" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "升级(_p)" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "变化" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "更新" @@ -1152,8 +1112,7 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"为了提高Ubuntu的用户体验,请参加流行对比。这样,你安装了哪些软件及使用频度" -"每周会被匿名发送给Unbuntu。\n" +"为了提高Ubuntu的用户体验,请参加流行对比。这样,你安装了哪些软件及使用频度每周会被匿名发送给Unbuntu。\n" "\n" "其结果用于流行软件支持及应用软件搜索排名。" @@ -1278,8 +1237,7 @@ msgid "" "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "输入你想增加的完整的频道 APT 命令行\n" -"APT 命令行包含频道的类型,位置和部分,例如:\"deb http://ftp.debian.org " -"sarge main\"。" +"APT 命令行包含频道的类型,位置和部分,例如:\"deb http://ftp.debian.org sarge main\"。" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1333,9 +1291,7 @@ msgid "" "If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." -msgstr "" -"如果自动检查更新被禁用,你将不得不手动重载频道列表。本选项允许隐藏此种情况下" -"要出现的提醒语。" +msgstr "如果自动检查更新被禁用,你将不得不手动重载频道列表。本选项允许隐藏此种情况下要出现的提醒语。" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1364,232 +1320,188 @@ msgstr "窗口大小" msgid "Configure the sources for installable software and updates" msgstr "设定可安装和升级的源" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "社区维护(Universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "设备的专有驱动" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "受限软件" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft' 光盘" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "社区维护(Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "社区维护(universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "社区维护开源软件" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "非自由驱动" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "设备的属性驱动 " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "受限软件(Multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake' 光盘" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported 更新" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger' 光盘" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 安全更新" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 更新" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 移植" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'光盘" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "官方支持" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 安全更新" -#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 更新" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "社区维护" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'光盘" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "官方不再支持" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版权限制" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 安全更新" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 更新" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" 安全更新" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (测试)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (非稳定)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "带有非自由依赖关系的DFSG兼容软件" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "非DFSG兼容软件" @@ -1597,6 +1509,7 @@ msgstr "非DFSG兼容软件" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "受到版权或法律问题限制的软件" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "正在下载文件 %li/%li 速度未知" @@ -1618,8 +1531,7 @@ msgstr "非DFSG兼容软件" #, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" -#~ msgstr "" -#~ "正在升级到 Ubuntu 6.06 LTS" +#~ msgstr "正在升级到 Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1647,15 +1559,16 @@ msgstr "非DFSG兼容软件" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "一些更新包要求删除更多的软件。用包管理器 “Synaptic” 的“标出所有更新”功能并" -#~ "运行 “sudo apt-get dist-upgrade”来彻底更你新的系统。" +#~ "一些更新包要求删除更多的软件。用包管理器 “Synaptic” 的“标出所有更新”功能并运行 “sudo apt-get dist-" +#~ "upgrade”来彻底更你新的系统。" #~ msgid "The following updates will be skipped:" #~ msgstr "将跳过以下的升级包" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "大约还要%li秒" @@ -1728,8 +1641,8 @@ msgstr "非DFSG兼容软件" #~ msgstr "Ubuntu 6.06 LTS 后备支持" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "在检查你的源的信息时未能找到有效的升级记录\n" #~ msgid "Repositories changed" @@ -1841,4 +1754,4 @@ msgstr "非DFSG兼容软件" #~ msgstr "CD" #~ msgid "Non-free software" -#~ msgstr "非自由软件" +#~ msgstr "非自由软件" \ No newline at end of file diff --git a/po/zh_HK.po b/po/zh_HK.po index a1cc8f61..65d2dc88 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.42.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-06-16 01:18+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (Hong Kong) \n" "MIME-Version: 1.0\n" @@ -53,7 +53,6 @@ msgstr "一個月後" msgid "After %s days" msgstr "%s 日後" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,7 +60,6 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,7 +69,6 @@ msgstr "" msgid "Main server" msgstr "" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,7 +118,8 @@ msgid "Error removing the key" msgstr "移除密碼匙時發生錯誤" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "你選定的密碼匙無法移除,請匯報問題。" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -148,9 +146,7 @@ msgstr "不完整套件" msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -msgstr "" -"系統裝了不完整的套件,本程式無法將它們修復。請先用 synaptic 或 apt-get 來修復" -"套件。" +msgstr "系統裝了不完整的套件,本程式無法將它們修復。請先用 synaptic 或 apt-get 來修復套件。" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -160,7 +156,6 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "無法計算升級過程" @@ -173,7 +168,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -183,9 +177,7 @@ msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." -msgstr "" -"有些套件不能認證,這可能是短暫的網絡問題;你可以稍後再試。以下為沒有認證的套" -"件。" +msgstr "有些套件不能認證,這可能是短暫的網絡問題;你可以稍後再試。以下為沒有認證的套件。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -198,7 +190,6 @@ msgid "" "bug. " msgstr "有必須的套件無法安裝,請匯報問題。 " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -258,7 +249,6 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "" @@ -315,7 +305,6 @@ msgid "" "apt-get clean'." msgstr "" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "是否要開始升級?" @@ -378,7 +367,6 @@ msgid "" "more information. " msgstr "" -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "" @@ -389,7 +377,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -440,7 +427,6 @@ msgstr "正在搜尋過時的軟件" msgid "System upgrade is complete." msgstr "已完成系統升級。" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -456,7 +442,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -468,7 +454,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -485,57 +470,55 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "找不到「diff」指令" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -543,39 +526,38 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "系統已經在最新狀態" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -601,7 +583,6 @@ msgid "%li seconds" msgstr "" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -621,7 +602,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -692,6 +672,7 @@ msgid "_Keep" msgstr "保留(_K)" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "取代(_R)" @@ -727,7 +708,6 @@ msgstr "無法下載發行通告" msgid "Please check your internet connection." msgstr "請檢查網絡連線是否正常。" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "無法執行升級工具" @@ -817,17 +797,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -840,7 +817,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -862,7 +838,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -896,7 +871,6 @@ msgstr "" msgid "Version %s" msgstr "" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -919,7 +893,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -931,23 +904,19 @@ msgid "" "this issue at first." msgstr "" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1044,10 +1013,15 @@ msgid "_Install Updates" msgstr "安裝軟件更新(_I)" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "升級(_P)" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" @@ -1274,233 +1248,190 @@ msgstr "視窗大小" msgid "Configure the sources for installable software and updates" msgstr "" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "正式支援" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "協力維護軟件 (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由軟件 (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版權受限" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1「Sarge」" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1「Sarge」安全性更新" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian 「Etch」(測試版)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "ftp://ftp.hk.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian 「Sid」(不穩定版)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "符合 DFSG 的軟件,但依賴於非自由軟件" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "和 DFSG 不相容的軟件" +#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1511,19 +1442,19 @@ msgstr "和 DFSG 不相容的軟件" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please " -#~ "report this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " #~ msgstr "計算升級時發生無法解決的問題,請匯報問題。 " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " -#~ "edubuntu-desktop package and it was not possible to detect which version " -#~ "of ubuntu you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "系統沒有安裝 ubuntu-desktop、kubuntu-desktop 或 edubuntu-desktop 套件,因" -#~ "此無法偵測正在執行哪一個版本的 ubuntu。\n" +#~ "系統沒有安裝 ubuntu-desktop、kubuntu-desktop 或 edubuntu-desktop 套件,因此無法偵測正在執行哪一個版本的 " +#~ "ubuntu。\n" #~ "請先使用 synaptic 或 apt-get 安裝上述其中一個套件。" #~ msgid "" @@ -1531,15 +1462,13 @@ msgstr "和 DFSG 不相容的軟件" #~ "enable them after the upgrade with the 'software-properties' tool or with " #~ "synaptic." #~ msgstr "" -#~ "sources.list 中部份外來的套件來源已經被停用。系統升級後,你可以使用" -#~ "「software-properties」工具或 synaptic 重新啟用這些來源。" +#~ "sources.list 中部份外來的套件來源已經被停用。系統升級後,你可以使用「software-properties」工具或 synaptic " +#~ "重新啟用這些來源。" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery was run (dpkg --configure -a)." -#~ msgstr "" -#~ "升級中止。你的系統現在可能在一個不穩定的狀態。正在進行復原 (dpkg --" -#~ "configure -a)。" +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." +#~ msgstr "升級中止。你的系統現在可能在一個不穩定的狀態。正在進行復原 (dpkg --configure -a)。" #~ msgid "Some software no longer officially supported" #~ msgstr "某些軟件不會再有正式支援" @@ -1547,27 +1476,33 @@ msgstr "和 DFSG 不相容的軟件" #~ msgid "Restoring originale system state" #~ msgstr "恢復原來的系統狀態" +#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 天 %li 小時 %li 分鐘" +#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 小時 %li 分鐘" +#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "大約還剩下 %li 分鐘" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "大約還剩下 %li 秒鐘" #~ msgid "Download is complete" #~ msgstr "下載完成" +#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "正在下載檔案 %li/%li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "升級現正中止,請匯報問題。" +#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1575,14 +1510,17 @@ msgstr "和 DFSG 不相容的軟件" #~ "取代設定檔\n" #~ "「%s」?" +#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "準備移除 %s 個套件。" +#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "準備安裝 %s 個新套件。" +#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "準備升級 %s 個套件。" @@ -1594,13 +1532,15 @@ msgstr "和 DFSG 不相容的軟件" #~ msgstr "正在升級 Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or " -#~ "with the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " #~ msgstr "檢驗升級套件失敗。可能是因為網路或伺服器出現問題。 " +#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "正在下載檔案 %li/%li,下載速度為 %s/秒" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "正在下載檔案 %li/%li,下載速度不明" @@ -1617,12 +1557,11 @@ msgstr "和 DFSG 不相容的軟件" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "有一些更新套件需要移除其它套件才可以安裝。請使用「Synaptic 套件管理程式」" -#~ "的「標記所有升級」功能或在終端機中執行「sudo apt-get dist-upgrade」來更新" -#~ "整個系統。" +#~ "有一些更新套件需要移除其它套件才可以安裝。請使用「Synaptic 套件管理程式」的「標記所有升級」功能或在終端機中執行「sudo apt-get " +#~ "dist-upgrade」來更新整個系統。" #~ msgid "The following updates will be skipped:" #~ msgstr "會略過更新以下套件:" @@ -1665,16 +1604,16 @@ msgstr "和 DFSG 不相容的軟件" #, fuzzy #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" #~ "請輸入整行你想加入的 APT 軟件庫位置\n" #~ "\n" -#~ "該行的內容包括 APT 軟件庫的類型、位置和內容,例如: \"deb http://ftp." -#~ "debian.org sarge main\"。你可以在文件中尋找有關該行的格式的詳細描述。" +#~ "該行的內容包括 APT 軟件庫的類型、位置和內容,例如: \"deb http://ftp.debian.org sarge " +#~ "main\"。你可以在文件中尋找有關該行的格式的詳細描述。" #~ msgid "Edit Channel" #~ msgstr "修改套件來源" @@ -1703,4 +1642,4 @@ msgstr "和 DFSG 不相容的軟件" #, fuzzy #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 5.10 更新" +#~ msgstr "Ubuntu 5.10 更新" \ No newline at end of file diff --git a/po/zh_TW.po b/po/zh_TW.po index 2ae0134e..821fbf00 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" -"PO-Revision-Date: 2006-09-14 07:29+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: SOC Ho \n" "Language-Team: Chinese (Taiwan) \n" "MIME-Version: 1.0\n" @@ -49,7 +49,6 @@ msgstr "一個月後" msgid "After %s days" msgstr "%s 天過後" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -57,9 +56,8 @@ msgstr "%s 更新" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 -#, fuzzy, python-format +#, fuzzy msgid "%s (%s)" msgstr "%s (%s)" @@ -67,7 +65,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "主要伺服器" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -117,7 +114,8 @@ msgid "Error removing the key" msgstr "移除金鑰時發生錯誤" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "您選定的金鑰無法移除,請匯報問題。" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -144,9 +142,7 @@ msgstr "不完整套件" msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -msgstr "" -"您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 " -"synaptic 或 apt-get 來修恢它們。" +msgstr "您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 synaptic 或 apt-get 來修恢它們。" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -156,7 +152,6 @@ msgstr "無法升級須要的元套件 (meta-package)" msgid "A essential package would have to be removed" msgstr "將會移除的核心套件" -#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "無法計算升級" @@ -169,7 +164,6 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "認證一些套件時發生錯誤" @@ -179,9 +173,7 @@ msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." -msgstr "" -"一些套件不能認證,這可能是由於短暫的網路問題;您可以稍後再試。以下為沒有認證" -"的套件。" +msgstr "一些套件不能認證,這可能是由於短暫的網路問題;您可以稍後再試。以下為沒有認證的套件。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -194,7 +186,6 @@ msgid "" "bug. " msgstr "無法安裝須要的套件,請匯報問題。 " -#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "無法估計元套件 (meta-package)" @@ -221,8 +212,7 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"在加入光碟時有錯誤產升,升級將終止。若此光碟為一個有效的ubuntu光碟,請將此舉" -"報為臭蟲。\n" +"在加入光碟時有錯誤產升,升級將終止。若此光碟為一個有效的ubuntu光碟,請將此舉報為臭蟲。\n" "\n" "錯誤訊息為:\n" "「%s」" @@ -258,14 +248,11 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"掃描你的套件庫資訊時,找不到任何 mirror。這可能在你使用內部 mirror 或 mirror " -"資訊已經過時的時候發生。\n" +"掃描你的套件庫資訊時,找不到任何 mirror。這可能在你使用內部 mirror 或 mirror 資訊已經過時的時候發生。\n" "\n" -"是否無論如何都要重新寫入 'sources.list'? 如果選擇「是」,將會更新所有 '%s' " -"到 '%s'。\n" +"是否無論如何都要重新寫入 'sources.list'? 如果選擇「是」,將會更新所有 '%s' 到 '%s'。\n" "如果選擇「否」,則更新會被取消。" -#. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" msgstr "產生預設的來源?" @@ -324,10 +311,8 @@ msgid "" "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"升級中止。請至少空出 %s 的磁碟空間 (從%s上)。 清空垃圾桶及使用 'sudo apt-get " -"clean'來移除先前安裝套件時的暫存檔。" +"升級中止。請至少空出 %s 的磁碟空間 (從%s上)。 清空垃圾桶及使用 'sudo apt-get clean'來移除先前安裝套件時的暫存檔。" -#. ask the user if he wants to do the changes #: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" msgstr "是否要開始升級?" @@ -390,7 +375,6 @@ msgid "" "more information. " msgstr "在清理時發生一些問題。請參閱以下訊息以取得更多資訊。 " -#. generate a new cache #: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "回覆原有系統狀態" @@ -401,7 +385,6 @@ msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) #: ../DistUpgrade/DistUpgradeControler.py:667 #: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" @@ -452,7 +435,6 @@ msgstr "尋搜不再使用的套件" msgid "System upgrade is complete." msgstr "系統升級完成。" -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -468,7 +450,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -480,7 +462,6 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "正在套用變更" @@ -496,57 +477,55 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "找不到‘diff’指令" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "發生嚴重錯誤" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -557,39 +536,38 @@ msgstr "" "\n" "你必須下載全部的%s。 " -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "避免遺失請關閉所有已開啟的程式及文件。" -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "系統已經在最新狀態" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "移除 %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "安裝 %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "升級 %s" @@ -615,7 +593,6 @@ msgid "%li seconds" msgstr "%li秒" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -635,7 +612,6 @@ msgstr "升級已經完成及須要重新啟動。現在要重新啟動嗎?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -709,6 +685,7 @@ msgid "_Keep" msgstr "保留(_K)" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "取代(_R)" @@ -744,7 +721,6 @@ msgstr "無法下載發行說明" msgid "Please check your internet connection." msgstr "請檢查您的網路連線。" -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "無法執行升級工具" @@ -834,17 +810,14 @@ msgid "" "Please check your Internet connection." msgstr "" -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "重要的安全更新" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "建議的安全更新" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -857,7 +830,6 @@ msgstr "" msgid "Distribution updates" msgstr "" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "其他更新" @@ -879,7 +851,6 @@ msgstr "" msgid "_Check All" msgstr "" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -913,7 +884,6 @@ msgstr "" msgid "Version %s" msgstr "版本%s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -929,15 +899,13 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"您不會再取得任何安全或重大更新,請升級到最新版本的 Ubuntu Linux。請參閱 " -"http://www.ubuntu.com以取得更多升級資訊。" +"您不會再取得任何安全或重大更新,請升級到最新版本的 Ubuntu Linux。請參閱 http://www.ubuntu.com以取得更多升級資訊。" #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "有新的 distribution 發行版 '%s'" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "軟體索引損壞" @@ -948,27 +916,22 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"不能安裝或移除任何套件。請先使用套件管理程式“Synaptic”或在終端機中執行“sudo " -"apt-get install -f”來修正問題。" +"不能安裝或移除任何套件。請先使用套件管理程式“Synaptic”或在終端機中執行“sudo apt-get install -f”來修正問題。" -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 #, fuzzy msgid "None" msgstr "無下載" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1065,10 +1028,15 @@ msgid "_Install Updates" msgstr "安裝更新套件(_I)" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy +msgid "_Upgrade" +msgstr "升級(_P)" + +#: ../data/glade/UpdateManager.glade.h:26 msgid "changes" msgstr "更動" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "更新" @@ -1292,229 +1260,185 @@ msgstr "視窗大小" msgid "Configure the sources for installable software and updates" msgstr "設置可安裝的軟體及更新部份之來源。" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'的光碟" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "含Ubuntu 6.06 LTS 'Dapper Drake'之光碟" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'的光碟" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10安全性更新" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10更新" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'的光碟" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "官方支援" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04安全性更新" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04更新" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "協力維護軟體 (Universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由軟體 (Multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "含Ubuntu 4.10 'Warty Warthog'之光碟" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版權受限制" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10安全性更新" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10更新" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 “Sarge”" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 “Sarge” 安全性更新" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian “Etch”(測試版)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian “Sid”(不穩定版)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "符合 DFSG 的軟體,但有依賴於非自由軟體" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "不符合 DFSG 的軟體" @@ -1522,14 +1446,17 @@ msgstr "不符合 DFSG 的軟體" #~ msgid " " #~ msgstr " " +#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s 個新套件將會安裝。" +#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s 個套件將會移除。" +#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s 個套件將會升級。" @@ -1537,29 +1464,26 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and " -#~ "updates from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and updates " +#~ "from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" #~ "套件來源的資料已經過期\n" #~ "\n" -#~ "您需要重新載入套件來源的資料以安裝軟體,及更新套件來源新加入或修改了的套" -#~ "件。\n" +#~ "您需要重新載入套件來源的資料以安裝軟體,及更新套件來源新加入或修改了的套件。\n" #~ "\n" #~ "您須要連線到網際網路繼續。" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" #~ "您必須自行檢查更新\n" #~ "\n" -#~ "您的系統不會自動檢查更新。您可以在「系統」→「管理的→「軟體偏好設定」中設" -#~ "定。" +#~ "您的系統不會自動檢查更新。您可以在「系統」→「管理的→「軟體偏好設定」中設定。" #~ msgid "Channel" #~ msgstr "套件來源" @@ -1574,8 +1498,8 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "金鑰" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to add\n" +#~ "Enter the complete APT line of the channel that you want to " +#~ "add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1583,9 +1507,10 @@ msgstr "不符合 DFSG 的軟體" #~ "請輸入您想加入的完整的 APT 來源列\n" #~ "\n" #~ "\n" -#~ "APT 來源列包括了來源的類型、位置及 components,例如 \"deb http://ftp." -#~ "debian.org sarge main\"。" +#~ "APT 來源列包括了來源的類型、位置及 components,例如 \"deb http://ftp.debian.org sarge " +#~ "main\"。" +#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1607,23 +1532,26 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "" #~ "Upgrading to Ubuntu 6.06 LTS" -#~ msgstr "" -#~ "升級至 Ubuntu 6.06 LTS" +#~ msgstr "升級至 Ubuntu 6.06 LTS" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please " -#~ "report this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please report " +#~ "this as a bug. " #~ msgstr "計算升級時發生無法解決的問題,請匯報問題。 " +#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 天 %li 小時 %li 分鐘" +#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 小時 %li 分鐘" +#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "大約還剩下 %li 分鐘" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "大約還剩下 %li 秒鐘" @@ -1633,6 +1561,7 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "Add _Cdrom" #~ msgstr "加入光碟(_C)" +#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1659,15 +1588,19 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "Downloading and installing the upgrades" #~ msgstr "正在下載及安裝升級" +#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "正在下載檔案 %li/%li" +#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "正在下載檔案 %li/%li,速度在 %s/秒" +#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "正在下載檔案 %li/%li,下載速度為 %s/秒" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "正在下載檔案 %li/%li,下載速度不明" @@ -1687,15 +1620,14 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in " -#~ "this case." -#~ msgstr "" -#~ "如果停用自動更新檢查,您需要自行重新載入套件來源清單。在此情況下本選項允許" -#~ "關閉更新提示" +#~ "channel list manually. This option allows to hide the reminder shown in this " +#~ "case." +#~ msgstr "如果停用自動更新檢查,您需要自行重新載入套件來源清單。在此情況下本選項允許關閉更新提示" #~ msgid "Installation Media" #~ msgstr "安裝媒體" +#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "新版本:%s (大小:%s)" @@ -1707,15 +1639,15 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "請先關閉其它程式,如‘aptitude’ 或‘Synaptic’。" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade." -#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " -#~ "now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " +#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "請將此視為 bug 來回報,並於報告中包含 /var/log/dist-upgrade.log 及 /var/" -#~ "log/dist-upgrade-apt.log 這兩個檔案。 現在取消更新。\n" +#~ "請將此視為 bug 來回報,並於報告中包含 /var/log/dist-upgrade.log 及 /var/log/dist-upgrade-" +#~ "apt.log 這兩個檔案。 現在取消更新。\n" #~ "您的原始 sources.list 已被存到 /etc/apt/sources.list.distUpgrade。" +#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1743,16 +1675,16 @@ msgstr "不符合 DFSG 的軟體" #~ "enable them after the upgrade with the 'software-properties' tool or with " #~ "synaptic." #~ msgstr "" -#~ "你的 sources.list 中,部份第三方的項目已經被停用。在使用 'software-" -#~ "properties' 工具或 synaptic升級後,你可以重新啟用它。" +#~ "你的 sources.list 中,部份第三方的項目已經被停用。在使用 'software-properties' 工具或 " +#~ "synaptic升級後,你可以重新啟用它。" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "有一些更新須要移除其它套件。使用“Synaptic 套件管理程式”的「標記所有升級」" -#~ "功能或在終端機中執行“sudo apt-get dist-upgrade”來完整地更新您的系統。" +#~ "有一些更新須要移除其它套件。使用“Synaptic 套件管理程式”的「標記所有升級」功能或在終端機中執行“sudo apt-get dist-" +#~ "upgrade”來完整地更新您的系統。" #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " @@ -1769,15 +1701,12 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "升級現正中止,請匯報問題。" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A " -#~ "recovery was run (dpkg --configure -a)." -#~ msgstr "" -#~ "升級中止。 你的系統現在可能在一個不穩定的狀態。 正在進行復原 (dpkg --" -#~ "configure -a)。" +#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " +#~ "was run (dpkg --configure -a)." +#~ msgstr "升級中止。 你的系統現在可能在一個不穩定的狀態。 正在進行復原 (dpkg --configure -a)。" #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time " -#~ "later." +#~ "The upgrade can take several hours and cannot be canceled at any time later." #~ msgstr "升級可能需要數小時及無法在稍後任何時間取消。" #~ msgid "" @@ -1807,22 +1736,23 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "正在升級 Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or " -#~ "with the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or with " +#~ "the server. " #~ msgstr "檢驗升級套件失敗。可能是因為跟伺服器的網路連接出現問題。 " +#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "您總共需要下載 %s。" #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " -#~ "edubuntu-desktop package and it was not possible to detect which version " -#~ "of ubuntu you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +#~ "desktop package and it was not possible to detect which version of ubuntu " +#~ "you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "您的系統沒有安裝 ubuntu-desktop,kubuntu-desktop 或 edubuntu-desktop 套" -#~ "件,因此無法偵測正在執行那個版本的 ubuntu。\n" +#~ "您的系統沒有安裝 ubuntu-desktop,kubuntu-desktop 或 edubuntu-desktop " +#~ "套件,因此無法偵測正在執行那個版本的 ubuntu。\n" #~ " 請進行操作前使用 synaptic 或 apt-get安裝上述其中一個套件" #~ msgid "Your system has already been upgraded." @@ -1832,4 +1762,4 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "自訂(_C)" #~ msgid "_Download updates in the background, but do not install them" -#~ msgstr "在背景下載更新套件,但無須安裝(_D)" +#~ msgstr "在背景下載更新套件,但無須安裝(_D)" \ No newline at end of file -- cgit v1.2.3 From 51001f1c9963f7054ec94621ee6b45faaacdf86d Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 17 Oct 2006 18:04:25 +0200 Subject: * po/*: -make update-po * DistUpgrade/Changelog: - updated * DistUpgrade/build-tarball.sh: - clean *.rej und *.orig --- DistUpgrade/Changelog | 1 - DistUpgrade/build-tarball.sh | 2 +- po/am.po | 171 +++++++++---- po/ar.po | 180 +++++++++----- po/be.po | 179 +++++++++----- po/bg.po | 286 +++++++++++++--------- po/bn.po | 249 ++++++++++++------- po/br.po | 171 +++++++++---- po/ca.po | 276 +++++++++++++-------- po/cs.po | 227 ++++++++++++------ po/csb.po | 176 ++++++++++---- po/da.po | 211 ++++++++++------ po/de.po | 333 ++++++++++++++++---------- po/el.po | 242 ++++++++++++------- po/en_AU.po | 293 ++++++++++++++--------- po/en_CA.po | 253 +++++++++++++------- po/en_GB.po | 239 ++++++++++++------- po/eo.po | 171 +++++++++---- po/es.po | 311 ++++++++++++++---------- po/et.po | 175 ++++++++++---- po/eu.po | 174 ++++++++++---- po/fa.po | 175 ++++++++++---- po/fi.po | 312 ++++++++++++++---------- po/fr.po | 294 ++++++++++++++--------- po/fur.po | 171 +++++++++---- po/gl.po | 335 +++++++++++++++----------- po/he.po | 232 +++++++++++------- po/hi.po | 171 +++++++++---- po/hr.po | 225 ++++++++++++------ po/hu.po | 221 +++++++++++------ po/id.po | 237 +++++++++++------- po/it.po | 342 +++++++++++++++----------- po/ja.po | 523 +++++++++++++++++++++++++--------------- po/ka.po | 197 ++++++++++----- po/ko.po | 356 +++++++++++++++++---------- po/ku.po | 194 ++++++++++----- po/lt.po | 251 ++++++++++++------- po/lv.po | 171 +++++++++---- po/mk.po | 241 ++++++++++++------- po/ms.po | 188 ++++++++++----- po/nb.po | 300 ++++++++++++++--------- po/ne.po | 293 ++++++++++++++--------- po/nl.po | 237 +++++++++++------- po/nn.po | 175 ++++++++++---- po/no.po | 128 +++++----- po/oc.po | 184 +++++++++----- po/pa.po | 175 ++++++++++---- po/pl.po | 413 ++++++++++++++++++-------------- po/pt.po | 242 ++++++++++++------- po/pt_BR.po | 373 +++++++++++++++++------------ po/qu.po | 171 +++++++++---- po/ro.po | 232 +++++++++++------- po/ru.po | 216 +++++++++++------ po/rw.po | 218 +++++++++++------ po/sk.po | 328 +++++++++++++++---------- po/sl.po | 179 +++++++++----- po/sq.po | 171 +++++++++---- po/sr.po | 181 +++++++++----- po/sv.po | 555 ++++++++++++++++++++++++------------------- po/ta.po | 171 +++++++++---- po/th.po | 336 ++++++++++++++------------ po/tr.po | 201 ++++++++++------ po/uk.po | 243 ++++++++++++------- po/update-manager.pot | 127 +++++----- po/ur.po | 171 +++++++++---- po/urd.po | 127 +++++----- po/vi.po | 227 ++++++++++++------ po/xh.po | 175 ++++++++++---- po/zh_CN.po | 257 +++++++++++++------- po/zh_HK.po | 241 ++++++++++++------- po/zh_TW.po | 302 ++++++++++++++--------- 71 files changed, 10667 insertions(+), 5838 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 23a66450..a6faeb8a 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,5 +1,4 @@ 2006-10-16: - - backup cdroms.list only if actually available - remove leftover references to ubuntu-base and use ubuntu-minimal and ubuntu-standard instead - updated translations from rosetta diff --git a/DistUpgrade/build-tarball.sh b/DistUpgrade/build-tarball.sh index df9d6506..241eda06 100755 --- a/DistUpgrade/build-tarball.sh +++ b/DistUpgrade/build-tarball.sh @@ -4,7 +4,7 @@ DIST=edgy # cleanup echo "Cleaning up" -rm -f *~ *.bak *.pyc *.moved '#'* +rm -f *~ *.bak *.pyc *.moved '#'* *.rej *.orig sudo rm -rf backports/ profile/ result/ tarball/ *.deb diff --git a/po/am.po b/po/am.po index d979ff57..7b63b325 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: Habte \n" "Language-Team: Amharic \n" @@ -55,6 +55,7 @@ msgstr "ከአንድ ወር በሓላ" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +127,7 @@ msgstr "ቁለፉን የማጥፋት ሰህተት" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "የመረጡትን ቁለፍ ማጥፋት አይቻልም፣ እባክዎን ይህንን ሰህተት ያመለከቱ" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -162,6 +164,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -174,6 +177,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,6 +200,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -209,11 +214,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -223,15 +228,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -239,11 +244,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -255,11 +260,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -268,42 +274,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -311,15 +317,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -328,21 +335,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -351,63 +358,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -417,22 +426,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -460,6 +470,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -475,6 +486,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -498,13 +510,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -544,6 +557,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -591,6 +605,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -610,6 +625,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -716,6 +732,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -805,14 +822,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -825,6 +845,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -846,6 +867,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -880,6 +902,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -901,6 +924,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -912,19 +936,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1250,184 +1278,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/ar.po b/po/ar.po index e9d0bccc..b747dadf 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Saleh Odeh \n" "Language-Team: Arabic \n" @@ -55,6 +55,7 @@ msgstr "بعد شهر" msgid "After %s days" msgstr "بعد %s يوم" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,10 +124,8 @@ msgstr "خطاء في ازالة المفتاح" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "" -"The key you selected could not be removed. Please report this as a bug." -msgstr "" -"إلمفتاح الذي إخترتة لا يمكن إزالتة, الرجاء التبليغ عن هذا كخطأ برمجي." +msgid "The key you selected could not be removed. Please report this as a bug." +msgstr "إلمفتاح الذي إخترتة لا يمكن إزالتة, الرجاء التبليغ عن هذا كخطأ برمجي." #: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format @@ -164,6 +165,7 @@ msgstr "لا يمكن تحديث الرزم العليا المطلوبة" msgid "A essential package would have to be removed" msgstr "سيكون من الضروري إزالة رزم مهمة" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 #, fuzzy msgid "Could not calculate the upgrade" @@ -177,6 +179,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "Error authenticating some packages" @@ -202,6 +205,7 @@ msgid "" msgstr "" "لم يكن بالإمكان تثبيت إحدى الرزم المطلوبة. الرجاء التبليغ عن هذا كخطأ برمجي. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -215,11 +219,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -229,15 +233,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "جاري القراءة من الكاش" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -245,12 +249,12 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, fuzzy msgid "No valid mirror found" msgstr "لم يتم العثور على مرآه صالحة" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -262,11 +266,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -275,11 +280,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "معلومات المستودع غير صالحة" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 #, fuzzy msgid "" "Upgrading the repository information resulted in a invalid file. Please " @@ -288,32 +293,32 @@ msgstr "" "تحديث معلومات المستودعادت أدت إلى إنتاج ملف غير صالح, الرجاء التبليغ عن هذا " "كخطأ برمجي." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "مصادر الطرف الثالث غير مفعلة" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "خطأ خلال التحديث" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "لا يوجد مساحة كافية على القرص الصلب" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -321,15 +326,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "هل تريد البدء في عملية التحديث الان؟" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "لم يكن ممكنا تثبيت التحديثات" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -338,12 +344,12 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 #, fuzzy msgid "Could not download the upgrades" msgstr "لم يكن ممكنا تنزيل التحديثات" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 #, fuzzy msgid "" "The upgrade aborts now. Please check your internet connection or " @@ -352,11 +358,11 @@ msgstr "" "سيتم إلغاء التحديث الآن, الرجاء التأكد من إتصالك للإنترنت أو وسيط التثبيت " "والمحاولة ثانيا. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -365,66 +371,68 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 #, fuzzy msgid "Remove obsolete packages?" msgstr "هل تود إزالة الرزم الملغية?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 #, fuzzy msgid "_Skip This Step" msgstr "_تجاهل هذه الخطوة" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_إزالة" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 #, fuzzy msgid "Error during commit" msgstr "خطأ أثناء التفعيل" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "جاري التأكد من مدير الحزم" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "حاليا في عملية تحديث معلومات المستودع" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "معلومات الرزمة غير صالحة" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -434,25 +442,26 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 #, fuzzy msgid "Asking for confirmation" msgstr "حاليا في عملية طلب التأكيد" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "جاري عملية التحديث" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "جاري عملية البحث عن البرامج الملغية" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "إنتهت عملية تحديث النظام." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 -#, fuzzy +#, fuzzy, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "الرجاء ادراج '%s' في السوّاقة '%s'" @@ -478,6 +487,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "جاري تطبيق التغييرات" @@ -493,6 +503,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -517,13 +528,14 @@ msgstr "وقع خطأ شديد" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -566,6 +578,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "لمنع فقدان المعلومات الرجاء إغلاق جميع البرامج و الوثائق المفتوحة." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy @@ -579,7 +592,7 @@ msgid "" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:549 -#, fuzzy +#, fuzzy, python-format msgid "Remove %s" msgstr "إزالة %s " @@ -614,6 +627,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -635,6 +649,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -744,6 +759,7 @@ msgstr "لم يمكن تنزيل ملاحظات الإصدار" msgid "Please check your internet connection." msgstr "الرجاء التأكد من إتصالك بالإنترنت" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "لم يكن ممكنا تشغيل أداة التحديث" @@ -835,14 +851,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -855,6 +874,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -876,8 +896,9 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 -#, fuzzy +#, fuzzy, python-format msgid "Download size: %s" msgstr "حجم التنزيل: %s" @@ -911,6 +932,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -932,6 +954,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "فهرس البرامج تالف" @@ -943,19 +966,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1290,187 +1317,232 @@ msgstr "مساحة النافذة" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "مدعوم بشكل رسمي" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "حقوق نقل محدودة" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " \ No newline at end of file +#~ msgstr " " diff --git a/po/be.po b/po/be.po index 4047be30..9e4aa807 100644 --- a/po/be.po +++ b/po/be.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:05+0000\n" "Last-Translator: Alexander Nyakhaychyk \n" "Language-Team: Belarusian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "Пасьля аднаго месяца" msgid "After %s days" msgstr "Пасьля %s дзён" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Памылка выдаленьня ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Выбраны ключ ня можа быць выдалены. Калі ласка, дашліце баг-рэпорт аб гэтым." @@ -163,6 +165,7 @@ msgstr "Немагчыма абнавіць неабходныя мэтапак msgid "A essential package would have to be removed" msgstr "Трэба было-б выдаліць абавязковы пакет" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Немагчыма падлічыць абнаўленьне" @@ -175,6 +178,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Памылка аўтэнтыфікацыі некаторых пакетаў" @@ -202,6 +206,7 @@ msgstr "" "Немагчыма ўсталяваць патрэбны пакет. Калі ласка, паведаміце аб гэтай " "памылцы. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Немагчыма вызначыць мэта-пакет" @@ -215,11 +220,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -229,15 +234,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Чытаньне кэша" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -245,11 +250,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Ня знойдзены правільны люстраны сэрвэр" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -261,11 +266,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Стварыць прадвызначаны сьпіс крыніц?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -273,17 +279,17 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Пасьля агляду вашага файла \"sources.list\" не былі знойдзены запісы для " -"\"%s\".\n" +"Пасьля агляду вашага файла \"sources.list\" не былі знойдзены запісы для \"%s" +"\".\n" "\n" "Ці мусяць быць дададзены прадвызначаныя запісы для \"%s\"? Калі вы вылучыце " "\"Не\", абнаўленьне будзе скасавана." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Нерэчаісныя зьвесткі аб сховішчы" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -291,22 +297,22 @@ msgstr "" "Вынік абнаўленьня зьвестак аб сховішчаў меў вынікам нерэчаісны файл. Калі " "ласка, паведаміце аб гэтым, як аб памылцы." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Зыходнікі ад трэціх бакоў - адключаныя" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Памылка ў час абналеньня" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -314,11 +320,11 @@ msgstr "" "Узьнікла памылка ў час абнаўленьня. Звычайна гэта праблемы зь сеткай, калі " "ласка, праверце вашае сеткавае далуэньне й паўтарыце спробу." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Бракуе дыскавае прасторы" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -329,15 +335,16 @@ msgstr "" "на %s. Спусташыце Сьметніцу й выдаліце часовыя пакеты былых усталёвак з " "дапамогай загаду \"sudo apt-get clean\"." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Ці жадаеце пачаць абнаўленьне?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Немагчыма ўсталяваць абнаўленьні" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -346,11 +353,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Немагчыма зпампаваць абнаўленьні" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -358,11 +365,11 @@ msgstr "" "Абнаўленьне спынена. Калі ласка, праверце вашае сеткавае далучэньне альбо " "носьбіты ўсталёўкі й паўтарыце спробу. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -371,23 +378,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Выдаліць састарэлыя пакеты?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "Аб_мінуць гэты крок" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "В_ыдаліць" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Памылка ў час зацьвярджэньня" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -395,41 +402,43 @@ msgstr "" "Узьніклі нейкія памылкі ў час ачысткі. Калі ласка, паглядзіце зьмешчанае " "ніжэй паведамленьне. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Праверка кіраўніка пакетаў" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Абнаўленьне зьвестак сховішча" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Недзеяздольныя зьвесткі пра пакет" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -439,22 +448,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Запыт пацьвярджэньня" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Абнаўленьне" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -482,6 +492,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Зьдзяйсьненьне зьменаў" @@ -497,6 +508,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -520,13 +532,14 @@ msgstr "Узьнікла невыправімая памылка" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -569,6 +582,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -616,6 +630,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -637,6 +652,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -747,6 +763,7 @@ msgstr "Немагчыма зпампаваць нататкі рэдакцыі" msgid "Please check your internet connection." msgstr "Калі ласка, праверце вашае далучэньне да інтэрнэту." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Немагчыма запусьціць сродак абнаўленьня" @@ -838,14 +855,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -858,6 +878,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -879,6 +900,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -914,6 +936,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -935,6 +958,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Маецца ў наяўнасьці новая рэдакцыя \"%s\" дыстрыбутыву" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Пашкоджаны індэкс праграм" @@ -946,19 +970,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1285,184 +1313,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/bg.po b/po/bg.po index af905a75..dc8dc1d8 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:01+0000\n" "Last-Translator: Nikola Kasabov \n" "Language-Team: Bulgarian \n" @@ -55,6 +55,7 @@ msgstr "След един месец" msgid "After %s days" msgstr "След %s дни" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,14 +126,13 @@ msgid "Error removing the key" msgstr "Грешка при премахване на ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Ключът, който избрахте не може да бъде премахнат. Докладвайте това като " "грешка." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -169,6 +171,7 @@ msgstr "Не може да бъдат надградени изисквани м msgid "A essential package would have to be removed" msgstr "Ще трябва да бъде премахнат важен пакет" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не може да бъде планирано надграждането" @@ -184,6 +187,7 @@ msgstr "" "Възникна непреодолим проблем при планиране на надграждането. Докладвайте " "това като грешка." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Грешка при удостоверяването автентичността на някои пакети" @@ -211,6 +215,7 @@ msgstr "" "Не можеше да бъде инсталиран нужен пакет. Моля, докладвайте това като " "грешка! " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не могат да бъдат предположени мета-пакети" @@ -229,12 +234,12 @@ msgstr "" " Моля, преди да продължите, инсталирайте един от тези пакети, като " "използвате synaptic или apt-get!" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, fuzzy msgid "Failed to add the CD" msgstr "Грешка при доставянето" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -244,15 +249,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Четене на кеша" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -260,11 +265,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Не е открит валиден огледален сървър" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -283,11 +288,12 @@ msgstr "" "изберете \"Да\", всички записи \"%s \" ще бъдат актуализирани на \"%s\".\n" "Ако изберете \"Не\", актуализирането ще бъде отменено." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Генериране на източници по подразбиране?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -295,17 +301,17 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"След преглеждане на Вашия \"sources.list\" не бе открит валиден запис за " -"\"%s\".\n" +"След преглеждане на Вашия \"sources.list\" не бе открит валиден запис за \"%s" +"\".\n" "\n" "Да бъдат ли добавени записи по подразбиране за \"%s\"? Ако изберете \"Не\", " "актуализацията ще бъде отменена." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Информацията от хранилището е невалидна" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -313,11 +319,11 @@ msgstr "" "Надграждане на информацията от хранилището доведе до невалиден файл. Моля, " "съобщете това като грешка!" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Забранени са източници от трети страни" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -328,11 +334,11 @@ msgstr "" "Можете да ги разрешите отново след надграждането чрез инструмента software-" "properties или чрез synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Грешка по време на надграждане" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -340,11 +346,11 @@ msgstr "" "Възникна проблем при актуализацията. Това обикновено е накакъв проблем с " "мрежата. Моля, проверете мрежовата връзка и опитайте пак!" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Недостатъчно свободно място на диска" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -352,15 +358,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Желаете ли да започне надграждането?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Не можеше да бъдат инсталирани надгражданията" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -372,11 +379,11 @@ msgstr "" "Надграждането сега ще бъде прекратено. Системата Ви може да е в " "неизползваемо състояние. Бе изпълнено възстановяване (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Не можеше да бъдат свалени надгражданията" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -384,11 +391,11 @@ msgstr "" "Надграждането се прекратява. Моля, проверете Интернет връзката или " "инсталационния носител и опитайте отново! " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -397,23 +404,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Премахване на остарелите пакети?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "П_рескачане на стъпката" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Премахване" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Грешка при прехвърляне" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -421,27 +428,29 @@ msgstr "" "Имаше проблем при почистването. Моля, вижте съобщението по-долу за повече " "информация! " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Рестартиране на системата" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Проверка на диспечера на пакети" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Подготвяне на надграждането" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -451,17 +460,17 @@ msgstr "" "Възникна непреодолим проблем при планиране на надграждането. Докладвайте " "това като грешка." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Актуализиране информацията от хранилището" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 #, fuzzy msgid "Invalid package information" msgstr "Невалидна информация за пакет" -#: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:726 +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -473,22 +482,23 @@ msgstr "" "бъде открит.\n" "Това показва сериозна грешка. Моля, съобщете за това!" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Запитване за потвърждение" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Надграждане" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Търсене на остарял софтуер" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Надграждането на системата завърши." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -500,7 +510,7 @@ msgid "Fetching is complete" msgstr "Актуализацията е завършена" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Сваляне на файл %li от %li при %s/сек" @@ -511,12 +521,13 @@ msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Изтегляне на файл %li от общо %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Прилагане на промените" @@ -532,8 +543,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -558,41 +570,42 @@ msgstr "Възникна фатална грешка" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Моля, съобщете това като грешка и включете файловете \"/var/log/dist-" -"upgrade.log\" и \"/var/log/dist-upgrade-apt.log\" във Вашия доклад. " -"Надграждането сега ще бъде прекратено.\n" -"Оригиналният \"sources.list\" was saved inбе съхранен в " -"\"/etc/apt/sources.list.distUpgrade\"." +"Моля, съобщете това като грешка и включете файловете \"/var/log/dist-upgrade." +"log\" и \"/var/log/dist-upgrade-apt.log\" във Вашия доклад. Надграждането " +"сега ще бъде прекратено.\n" +"Оригиналният \"sources.list\" was saved inбе съхранен в \"/etc/apt/sources." +"list.distUpgrade\"." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Пакетът %s ще бъде премахнат." msgstr[1] "Пакетите %s ще бъдат премахнати." #: ../DistUpgrade/DistUpgradeViewGtk.py:506 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s нов пакет ще бъде инсталиран." msgstr[1] "%s нови пакети ще бъдат инталирани." #: ../DistUpgrade/DistUpgradeViewGtk.py:512 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s пакет ще бъде надграден." msgstr[1] "%s нови пакети ще бъдат надградени." #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -617,6 +630,7 @@ msgstr "" "За да предодвратите загуба на данни, затворете всички отворени приложения и " "документи." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -664,6 +678,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -683,6 +698,7 @@ msgstr "Надграждането е завършено и има нужда о #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -797,6 +813,7 @@ msgstr "Не можеше да бъдат свалени бележките къ msgid "Please check your internet connection." msgstr "Моля, проверете Интернет връзката си!" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Не може да бъде стартирана помощната програма за надграждане." @@ -873,12 +890,12 @@ msgstr "" "мрежата или сървъра. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Сваляне на файл %li от %li при %s/сек" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Сваляне на файл %li от %li при %s/сек" @@ -903,15 +920,18 @@ msgstr "" "Неуспех при изтегляне на списъка с промени. Моля, проверете Интернет " "връзката си." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 актуализации на сигурността" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -927,6 +947,7 @@ msgstr "Ubuntu 5.10 Състарени версии" msgid "Distribution updates" msgstr "_Поднови надграждането" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -951,6 +972,7 @@ msgstr "" msgid "_Check All" msgstr "_Проверка" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -977,15 +999,16 @@ msgid "Checking for updates" msgstr "_Инсталиране на актуализациите" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Нова версия: %s (Размер: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Версия %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1010,6 +1033,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Индексът на софтуера е повреден" @@ -1024,19 +1048,23 @@ msgstr "" "ползвайте диспечера на пакети \"Synaptic\" или първо задействайте \"sudo apt-" "get install -f\" в терминален прозорец, за да поправите този проблем!" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1317,8 +1345,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Добавете пълния APT ред за канала, който искате да " -"добавите\n" +"Добавете пълния APT ред за канала, който искате да добавите\n" "\n" "APT редът съдържа вида, местонахождението и компонентите за даден канал. " "Например „deb http://ftp.debian.org sarge main“." @@ -1414,206 +1442,250 @@ msgstr "Размерът на прозореца" msgid "Configure the sources for installable software and updates" msgstr "Настройка на софтуерните канали и актуализациите по Интернет" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 актуализации" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Поддържани от обществото (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Допринесен софтуер" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Поддържани от обществото (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Поддържани от обществото (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Поддържани от обществото (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Несвободни (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Несвободни (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 актуализации на сигурността" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 актуализации" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Състарени версии" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 „Hoary Hedgehog“" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 „Hoary Hedgehog“" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официално поддържани" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 актуализации на сигурността" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 актуализации" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Състарени версии" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Поддържани от обществото (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Несвободни (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 „Warty Warthog“" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Официално поддържан" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Ограничени авторски права" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 обновления по сигурността" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 обновления" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Състарени версии" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 „Sarge“" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" актуализации на сигурността" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (тестване)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (нестабилен)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-съвместим софтуер с несвободни зависимости" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Софтуер несъвместим с DFSG" @@ -1622,7 +1694,6 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Ограничен за изнасяне от САЩ софтуер" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Сваляне на файл %li от %li при неизвестна скорост" @@ -1643,7 +1714,8 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Надграждане до Ubuntu 6.06 LTS" +#~ "Надграждане до Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1673,13 +1745,13 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Някои актуализации изискват премахването на допълнителен софтуер. " #~ "Използвайте функцията „Маркиране на всички актуализации” на Диспечера на " -#~ "пакети „Synaptic” или задействайте „sudo apt-get dist-upgrade” в терминален " -#~ "прозорец, за да актуализирате напълно системата си." +#~ "пакети „Synaptic” или задействайте „sudo apt-get dist-upgrade” в " +#~ "терминален прозорец, за да актуализирате напълно системата си." #~ msgid "The following updates will be skipped:" #~ msgstr "Следните актуализации ще бъдат пропуснати:" @@ -1700,7 +1772,8 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "Покажи детайлите" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "Позволено е да оперира само един диспечер на софтуера в даден момент" +#~ msgstr "" +#~ "Позволено е да оперира само един диспечер на софтуера в даден момент" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." @@ -1808,16 +1881,16 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "" #~ "Ключове за идентификация\n" #~ "\n" -#~ "Може да добавяте и премахвате ключове за идентификация през този прозорец. " -#~ "Ключът прави възможна проверката на цялостта на софтуера, който сваляте от " -#~ "интернет." +#~ "Може да добавяте и премахвате ключове за идентификация през този " +#~ "прозорец. Ключът прави възможна проверката на цялостта на софтуера, който " +#~ "сваляте от интернет." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Добавяне на нов ключов файл за доверените вериги от ключове. Уверете се, че " -#~ "сте получили ключа по сигурен канал и че можете да се доверите на " +#~ "Добавяне на нов ключов файл за доверените вериги от ключове. Уверете се, " +#~ "че сте получили ключа по сигурен канал и че можете да се доверите на " #~ "собственика. " #~ msgid "Add repository..." @@ -1845,8 +1918,8 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "Максимален размер в Мб:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Възвръщане на стандартните ключове идващи с дистрибуцията. Това няма да " #~ "промени потребителските инсталирани ключове." @@ -1878,13 +1951,13 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Налични обновления\n" #~ "\n" -#~ "Следните пакети могат да бъдат обновени. Може да ги обновите като натиснете " -#~ "бутона „Инсталиране“." +#~ "Следните пакети могат да бъдат обновени. Може да ги обновите като " +#~ "натиснете бутона „Инсталиране“." #~ msgid "Cancel downloading the changelog" #~ msgstr "Отказ на свалянето на дневника на промените" @@ -1960,7 +2033,8 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr[1] "Избрахте всички %s пакета за обновяване, с общ размер %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Избрахте %s от %s пакет за обновяване, с размер %s" #~ msgstr[1] "Избрахте %s от %s пакета за обновяване, с общ размер %s" @@ -1968,11 +2042,11 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgstr "Обновленията се прилагат." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "Може да стартирате само една програма за управление на пакетите. Затворете " -#~ "другата програма първо." +#~ "Може да стартирате само една програма за управление на пакетите. " +#~ "Затворете другата програма първо." #~ msgid "Updating package list..." #~ msgstr "Обновяване на списъка с пакетите..." @@ -1985,25 +2059,25 @@ msgstr "Софтуер несъвместим с DFSG" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Обновете до новата версия на Ubuntu Linux. За версията, която имате ще бъдат " -#~ "спрени поправките по сигурността и други критични обновления. Вижте " +#~ "Обновете до новата версия на Ubuntu Linux. За версията, която имате ще " +#~ "бъдат спрени поправките по сигурността и други критични обновления. Вижте " #~ "http://www.ubuntulinux.org за повече информация." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Има нова версия на Ubuntu!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Излезнала е нова версия с кодовото име „%s“. Вижте " -#~ "http://www.ubuntulinux.org за информация по обновяването." +#~ "Излезнала е нова версия с кодовото име „%s“. Вижте http://www.ubuntulinux." +#~ "org за информация по обновяването." #~ msgid "Never show this message again" #~ msgstr "Без да се показва това съобщение отново" #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Няма открити промени. Сървърът може би не е обновен." \ No newline at end of file +#~ msgstr "Няма открити промени. Сървърът може би не е обновен." diff --git a/po/bn.po b/po/bn.po index c1187db5..afa2194c 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: Khandakar Mujahidul Islam \n" "Language-Team: Bengali \n" @@ -55,6 +55,7 @@ msgstr "এক মাস পর" msgid "After %s days" msgstr "%s দিন পর" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,12 +124,11 @@ msgid "Error removing the key" msgstr "কী সরাতে সমস্যা হয়েছে" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -162,6 +164,7 @@ msgstr "দরকারী meta-packages আপগ্রেড করতে প msgid "A essential package would have to be removed" msgstr "একটি প্রয়োজনীয় প্যকেজ অপসারণ করা হতে পারে" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "আপগ্রেড গণনা করতে পারছে না" @@ -174,6 +177,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -195,9 +199,10 @@ msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" -"একটি প্রয়োজনীয় প্যাকেজ ইন্সটল করা অসম্ভব ছিল। অনুগ্রহ করে একে একটি বাগ " -"হিসাবে রিপোর্ট করুন। " +"একটি প্রয়োজনীয় প্যাকেজ ইন্সটল করা অসম্ভব ছিল। অনুগ্রহ করে একে একটি বাগ হিসাবে " +"রিপোর্ট করুন। " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "meta-package অনুমান করা যাচ্ছ না" @@ -211,12 +216,12 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, fuzzy msgid "Failed to add the CD" msgstr "আনতে ব্যর্থ" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -226,15 +231,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "ক্যাশ পড়া হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -242,11 +247,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "কোন সঠিক মিরর পাওয়া যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -258,11 +263,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "ডিফল্ট sources তৈরি করে?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,52 +276,52 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"আপনার 'sources.list' স্ক্যান করার পর '%s' এর জন্য কোন সঠিক এন্ট্রি খুজে " -"পাওয়া যায় নি।\n" +"আপনার 'sources.list' স্ক্যান করার পর '%s' এর জন্য কোন সঠিক এন্ট্রি খুজে পাওয়া যায় " +"নি।\n" "\n" -"'%s' জন্য ডিফল্ট যুক্ত করার উচিত? আপনি যদি 'না' নির্বাচন করেন তাহলে আপডেট " -"বাতিল হবে।" +"'%s' জন্য ডিফল্ট যুক্ত করার উচিত? আপনি যদি 'না' নির্বাচন করেন তাহলে আপডেট বাতিল " +"হবে।" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "রিপোজিটরির তথ্য সঠিক নয়" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"রিপোজিটোরি তথ্য আপগ্রেড করার সময় একটি ভুল ফাইল তৈরী হয়েছে। অনুগ্রহ করে এটিকে " -"বাগ হিসাবে রিপোর্ট করুন।" +"রিপোজিটোরি তথ্য আপগ্রেড করার সময় একটি ভুল ফাইল তৈরী হয়েছে। অনুগ্রহ করে এটিকে বাগ " +"হিসাবে রিপোর্ট করুন।" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "তৃতীয় পার্টির উত্স নিষ্ক্রিয়" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "আপগ্রেড করার সময় সমস্যা" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -"আপগ্রেড করার সময় একটি সমস্যা হয়েছে। এটি সাধারনত নেটওয়ার্কের সমস্যা, অনুগ্রহ " -"করে আপনার নেটওয়ার্ক সংযোগ পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন।" +"আপগ্রেড করার সময় একটি সমস্যা হয়েছে। এটি সাধারনত নেটওয়ার্কের সমস্যা, অনুগ্রহ করে " +"আপনার নেটওয়ার্ক সংযোগ পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন।" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "ডিস্কে যথেস্ট ফাঁকা জায়গা নেই" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -323,15 +329,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "আপনি কি আপগ্রেড শুরু করতে চান?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "আপগ্রেড ইন্সটল করা যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -340,23 +347,23 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "আপগ্রেড ডাউনলোড করা যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -"আপগ্রেড এখন বন্ধ হবে। দয়া করে আপনার ইন্টারনেট সংযুক্তি বা ইনস্টলেশন মিডিয়া " -"পরীক্ষা করুন এবং আবার চেষ্টা করুন। " +"আপগ্রেড এখন বন্ধ হবে। দয়া করে আপনার ইন্টারনেট সংযুক্তি বা ইনস্টলেশন মিডিয়া পরীক্ষা " +"করুন এবং আবার চেষ্টা করুন। " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -365,64 +372,66 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "অপ্রচলিত প্যাকেজগুলো মুছে ফেলা হবে?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "এই ধাপটি এড়িয়ে যাও (_এ)" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "সরাও (_স)" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "প্রেরণ করার সময় সমস্যা" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "সিস্টেমটি রিস্টার্ট করছি" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "প্যাকেজ ম্যানেজার পরীক্ষা করা হচ্ছ" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "আপগ্রেড প্রস্তুত করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "রিপজিটরির তথ্য আপডেট করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "ভুল প্যাকেজ তথ্য" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -432,22 +441,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "তথ্যের জন্য জিজ্ঞাসা" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "আপগ্রেড করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "অপ্রচলিত সফ্টওয়্যার অনুসন্ধান করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "সিস্টেম আপগ্রেড সম্পন্ন।" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -459,23 +469,24 @@ msgid "Fetching is complete" msgstr "আপডেট সম্পন্ন" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "%li of %li ফাইল ডাউনলোড করছে" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:253 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "%li মিিনিট বাকি আছে" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "%li of %li ফাইল ডাউনলোড করছে" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "পরিবর্তনগুলো প্রয়োগ করছি" @@ -491,8 +502,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -516,36 +528,37 @@ msgstr "একটি মারাত্মক সমস্যা সংঘটি #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s টি প্যাকেজ মোছা হবে।" msgstr[1] "%s টি প্যাকেজ মোছা হবে।" #: ../DistUpgrade/DistUpgradeViewGtk.py:506 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" #: ../DistUpgrade/DistUpgradeViewGtk.py:512 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -560,13 +573,13 @@ msgstr "" msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "" -"আপগ্রেড করতে কয়েক ঘন্টা লেগে যেতে পারে এবং পরে এটি বাতিল করা যাবে না।" +msgstr "আপগ্রেড করতে কয়েক ঘন্টা লেগে যেতে পারে এবং পরে এটি বাতিল করা যাবে না।" #: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "তথ্য হারাতে না চাইলে সকল অ্যাপলিকেশন এবং ডকুমেন্ট বন্ধ রাখুন।" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -594,12 +607,12 @@ msgid "Upgrade %s" msgstr "%s আপগ্রেড" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy +#, fuzzy, python-format msgid "%li days %li hours %li minutes" msgstr "%li দিন %li ঘন্টা %li মিিনিট বাকি আছে" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy +#, fuzzy, python-format msgid "%li hours %li minutes" msgstr "%li ঘন্টা %li মিিনিট বাকি আছে" @@ -614,6 +627,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -628,12 +642,12 @@ msgstr "রিবুট করা প্রয়োজন" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "" -"আপগ্রেডটি সম্পন্ন এবং রিবুট করা প্রয়োজন। আপনি কি এক্ষুনি তা করতে চান?" +msgstr "আপগ্রেডটি সম্পন্ন এবং রিবুট করা প্রয়োজন। আপনি কি এক্ষুনি তা করতে চান?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -743,6 +757,7 @@ msgstr "রিলিজ নোট ডাউনলোড করা যায় ন msgid "Please check your internet connection." msgstr "অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ পরীক্ষা করুন।" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "আপগ্রেড টুলটি চালানো যায় নি" @@ -784,9 +799,7 @@ msgstr "এক্সট্রাক্ট করতে ব্যর্থ" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"আপগ্রেডটি এক্সট্রাক্ট করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা থাকতে " -"পারে। " +msgstr "আপগ্রেডটি এক্সট্রাক্ট করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা থাকতে পারে। " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -798,8 +811,8 @@ msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"আপগ্রেড যথার্থ্য হয়েছে কিনা তা পরীক্ষা করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে " -"সমস্যা থাকতে পারে। " +"আপগ্রেড যথার্থ্য হয়েছে কিনা তা পরীক্ষা করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা " +"থাকতে পারে। " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -839,18 +852,20 @@ msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"পরিবর্তন তালিকা ডাউনলোড করতে ব্যর্থ। অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ " -"পরীক্ষা করুন।" +"পরিবর্তন তালিকা ডাউনলোড করতে ব্যর্থ। অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ পরীক্ষা করুন।" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -866,6 +881,7 @@ msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" msgid "Distribution updates" msgstr "পুনরায় আপগ্রেড শুরু (_R)" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -890,6 +906,7 @@ msgstr "" msgid "_Check All" msgstr "পরীক্ষা করো (_C)" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -916,15 +933,16 @@ msgid "Checking for updates" msgstr "আপডেট ইন্সটল করো (_I)" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "নতুন ভার্সন: %s (আকার: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "ভার্সন %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -946,6 +964,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "সফ্টওয়্যার ইন্ডেক্সটি নস্ট" @@ -957,19 +976,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1312,201 +1335,245 @@ msgstr "উইনডোর আকার" msgid "Configure the sources for installable software and updates" msgstr "সফ্টওয়্যার চ্যানেল এবং ইন্টারনেট আপডেট কনফিগার" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "উবুন্টু ৫.১০ আপডেট" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "ফ্রি নয় (মাল্টিভার্স)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "উবুন্টু ৬.০৬ 'ড্যাপার ড্রেক'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "ফ্রি নয় (মাল্টিভার্স)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "ফ্রি নয় (মাল্টিভার্স)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "উবুন্টু ৬.০৬ 'ড্যাপার ড্রেক'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "অফিসিয়াল ভাবে সমর্থিত" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "উবুন্টু ৫.১০ 'ব্রিজী ব্যাজার'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "ফ্রি নয় (মাল্টিভার্স)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "কিছু সফটওয়্যার অফিসিয়ালি আর সমর্থিত নয়" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "উবুন্টু ৫.১০ নিরাপত্তামুলক আপডেট" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "উবুন্টু ৫.১০ আপডেট" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "ডেবিয়ান ৩.১ \"সার্জ\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "ডেবিয়ান ৩.১ \"Sarge\" নিরাপত্তামুলক আপডেট" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "ডেবিয়ান \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "ডেবিয়ান \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1552,7 +1619,6 @@ msgstr "" #~ msgid "The following updates will be skipped:" #~ msgstr "নিম্নের আপডেটগুলো বাদ দেয়া হবে:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "%li সেকেন্ড বাকি আছে" @@ -1560,8 +1626,7 @@ msgstr "" #~ msgstr "ডাউনলোড সম্পন্ন" #~ msgid "The upgrade aborts now. Please report this bug." -#~ msgstr "" -#~ "আপগ্রেডটি নিস্ফল ভাবে বের হয়ে যাচ্ছ। অনুগ্রহ করে এই বাগটি রিপোর্ট করুন।" +#~ msgstr "আপগ্রেডটি নিস্ফল ভাবে বের হয়ে যাচ্ছ। অনুগ্রহ করে এই বাগটি রিপোর্ট করুন।" #~ msgid "Upgrading Ubuntu" #~ msgstr "উবুন্টু আপগ্রেড করছি" @@ -1578,8 +1643,8 @@ msgstr "" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "অনুগ্রহ করে অন্যান্য অ্যাপলিকেশন যেমন, 'aptitude' অথবা 'Synaptic' প্রথমে " -#~ "বন্ধ করুন।" +#~ "অনুগ্রহ করে অন্যান্য অ্যাপলিকেশন যেমন, 'aptitude' অথবা 'Synaptic' প্রথমে বন্ধ " +#~ "করুন।" #~ msgid "Channels" #~ msgstr "চ্যানেল" @@ -1626,4 +1691,4 @@ msgstr "" #~ msgstr "উবুন্টু ৬.০৬ আপডেট" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "উবুন্টু ৬.০৬ ব্যাকপোর্ট" \ No newline at end of file +#~ msgstr "উবুন্টু ৬.০৬ ব্যাকপোর্ট" diff --git a/po/br.po b/po/br.po index 0295bb13..f6a9d395 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-05-19 02:42+0000\n" "Last-Translator: Oublieuse \n" "Language-Team: Breton \n" @@ -55,6 +55,7 @@ msgstr "" msgid "After %s days" msgstr "War-lerc'h %s devezh" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "Fazi en ur zilemel an alc'hwezh" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "N'eus ket tu da zilemel an alc'whezh ho peus dibabet. Kelaouit eo ur bug " "marplij." @@ -162,6 +164,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -174,6 +177,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,6 +200,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -209,11 +214,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -223,15 +228,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -239,11 +244,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -255,11 +260,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -268,42 +274,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -311,15 +317,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -328,21 +335,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -351,63 +358,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -417,22 +426,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -460,6 +470,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -475,6 +486,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -498,13 +510,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -544,6 +557,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -591,6 +605,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -610,6 +625,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -716,6 +732,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -805,14 +822,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -825,6 +845,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -846,6 +867,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -880,6 +902,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -901,6 +924,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -912,19 +936,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1251,187 +1279,232 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " \ No newline at end of file +#~ msgstr " " diff --git a/po/ca.po b/po/ca.po index 7ef3fe96..3991cf8c 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Jordi Irazuzta \n" "Language-Team: Catalan \n" @@ -54,6 +54,7 @@ msgstr "Després d'un mes" msgid "After %s days" msgstr "Després de %s dies" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "" msgid "Main server" msgstr "Servidor principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,14 +127,13 @@ msgid "Error removing the key" msgstr "S'ha produït un error en esborrar la clau" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "La clau que heu seleccionat no es pot esborrar. Notifiqueu-ho com a error de " "programació." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -170,6 +172,7 @@ msgstr "No s'han pogut actualitzar els metapaquets sol·licitats" msgid "A essential package would have to be removed" msgstr "S'haurà d'esborrar un paquet essencial" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "No s'ha pogut calcular l'actualització" @@ -185,6 +188,7 @@ msgstr "" "S'ha produït un problema greu alhora de calcular l'actualització. Informeu " "de l'error." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "S'ha produït un error en autenticar alguns paquets" @@ -212,6 +216,7 @@ msgstr "" "No s'ha pogut instal·lar un dels paquets sol·licitats. Envieu un informe amb " "els error. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -231,12 +236,12 @@ msgstr "" " Instal·leu algun dels paquets anteriors des del Synaptic o amb l'apt-get " "per poder continuar." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, fuzzy msgid "Failed to add the CD" msgstr "Ha fallat l'extracció" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -246,15 +251,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "S'està llegint la memòria cau" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -262,11 +267,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "No s'ha trobat una rèplica vàlida" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -278,11 +283,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Voleu generar les fonts per defecte?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -291,11 +297,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "La informació del dipòsit no és vàlida" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -303,11 +309,11 @@ msgstr "" "En actualitzar la informació del dipòsit s'ha produït un error. Informeu de " "l'error." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "S'han desactivat les fonts de tercers" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -318,11 +324,11 @@ msgstr "" "reactivar-los, després de l'actualització de programari, des de 'propietats " "del programari' o des del Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "S'ha produït un error en l'actualització" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -330,31 +336,32 @@ msgstr "" "S'ha produït un error mentre s'actualizava el vostre sistema. Comproveu la " "vostra connexió de xarxa i torneu a intentar-ho." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "No disposeu de suficient espai al disc" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"L'actualització s'ha cancel·lat. Allibereu almenys %s d'espai de disc a " -"%s. \n" +"L'actualització s'ha cancel·lat. Allibereu almenys %s d'espai de disc a %s." +"\r\n" "Buideu la vostra paperera i esborreu els paquets temporals utilitzant 'sudo " "apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Voleu iniciar l'actualització?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "No s'han pogut instal·lar les actualitzacions" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -366,11 +373,11 @@ msgstr "" "L'actualització s'ha cancel·lat. El vostre sistema ha pogut quedar " "inservible. S'ha executat una recuperació del sistema (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "No s'han pogut descarregar les actualitzacions" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -378,11 +385,11 @@ msgstr "" "S'ha cancel·lat l'actualització. Comproveu la vostra connexió a Internet o " "el mitjà d'instal·lació i torneu-ho a provar. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -396,49 +403,51 @@ msgstr "" "\n" "Si no teniu activat 'universe' se us sugerirà que els desintal·leu." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Voleu esborrar els paquets obsolets?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Omet aquest pas" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "Esbo_rra" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "S'està restaurant l'estat original del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "S'està comprovant el gestor de paquets" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "S'està preparant l'actualització" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -448,15 +457,15 @@ msgstr "" "S'ha produït un problema greu alhora de calcular l'actualització. Informeu " "de l'error." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "S'està actualitzant la informació del dipòsit" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "La informació del paquet no és valida" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -466,22 +475,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Actualitzant" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "S'està cercant programari obsolet" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "S'ha completat l'actualització del sistema" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -493,23 +503,24 @@ msgid "Fetching is complete" msgstr "S'ha completat l'actualització" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "S'està descarregant el fitxer %li de %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:253 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "Queden uns %li minuts" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "S'està descarregant el fitxer %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "S'estan aplicant els canvis" @@ -525,8 +536,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -550,36 +562,37 @@ msgstr "S'ha produït un error greu" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "S'esborrarà %s paquet" msgstr[1] "S'esborraran %s paquets" #: ../DistUpgrade/DistUpgradeViewGtk.py:506 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "S'instal·larà %s paquet" msgstr[1] "S'instal·laran %s paquets" #: ../DistUpgrade/DistUpgradeViewGtk.py:512 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "S'actualitzarà %s paquet" msgstr[1] "S'actualitzaran %s paquets" #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -604,6 +617,7 @@ msgstr "" "Per a evitar una possible pèrdua de dades, tanqueu tos els documents i " "aplicacions." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -631,12 +645,12 @@ msgid "Upgrade %s" msgstr "Actualitza %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy +#, fuzzy, python-format msgid "%li days %li hours %li minutes" msgstr "Queden uns %li dies %li hores %li minuts" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy +#, fuzzy, python-format msgid "%li hours %li minutes" msgstr "Queden unes %li hores %li minuts" @@ -651,6 +665,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -672,6 +687,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -691,8 +707,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" -"Reinicieu el sistema per a completar l'actualització" +msgstr "Reinicieu el sistema per a completar l'actualització" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -786,6 +801,7 @@ msgstr "No s'han pogut descarregar les notes de la versió" msgid "Please check your internet connection." msgstr "Comproveu la vostra connexió a Internet" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "No es pot executar l'eina d'actualització" @@ -851,12 +867,12 @@ msgid "" msgstr "" #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "S'està descarregant el fitxer %li de %li amb %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "S'està descarregant el fitxer %li de %li amb %s/s" @@ -881,15 +897,18 @@ msgstr "" "S'ha produït un error en descarregar els canvis. Comproveu si teniu connexió " "a Internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Debian Stable Security Updates" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -905,6 +924,7 @@ msgstr "Actualitzacions d'Ubuntu 6.06 LTS" msgid "Distribution updates" msgstr "_Reprén l'actualització" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -929,6 +949,7 @@ msgstr "" msgid "_Check All" msgstr "_Comprova" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -955,15 +976,16 @@ msgid "Checking for updates" msgstr "S'estan comprovant les actualitzacions..." #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Versió nova: %s (Mida: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Versió %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -988,6 +1010,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Ja disposeu de la nova distribució '%s'" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "L'índex de programari s'ha trencat" @@ -1002,19 +1025,23 @@ msgstr "" "utilitzeu el gestor de paquets \"Synaptic\" o executeu \"sudo apt-get " "install -f\" en un terminal." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1383,207 +1410,251 @@ msgstr "La mida de la finestra" msgid "Configure the sources for installable software and updates" msgstr "Configura els canals de programari i les actualitzacions d'Internet" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Actualitzacions d'Ubuntu 5.10" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Paquets mantinguts per la comunitat (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Programari de la comunitat" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Paquets mantinguts per la comunitat (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Paquets mantinguts per la comunitat (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Paquets mantinguts per la comunitat (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Paquets sense llicència lliure (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Paquets sense llicència lliure (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD amb Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualitzacions d'Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD amb Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Paquets mantinguts oficialment (Main)" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualitzacions d'Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Paquets mantinguts per la comunitat (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Paquets sense llicència lliure (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD amb Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Algun programari ja no es mantindrà oficialment" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Paquets amb restriccions per copyright (Restricted)" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualitzacions de seguretat d'Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualitzacions d'Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Actualitzacions d'Ubuntu 6.06 LTS" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualitzacions de seguretat de Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Programari compatible DFSG amb dependències no lliures" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Programari no compatible DFSG" @@ -1592,9 +1663,9 @@ msgstr "Programari no compatible DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Programari amb restriccions d'exportació als EUA" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" -#~ msgstr "S'està descarregant el fitxer %li de %li a una velocitat desconeguda" +#~ msgstr "" +#~ "S'està descarregant el fitxer %li de %li a una velocitat desconeguda" #, fuzzy #~ msgid "Normal updates" @@ -1647,8 +1718,8 @@ msgstr "Programari no compatible DFSG" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algunes actualitzacions requereixen la desinstal·lació de programari " #~ "adicional. Per actualitzar completament el vostre sistema utilitzeu la " @@ -1658,7 +1729,6 @@ msgstr "Programari no compatible DFSG" #~ msgid "The following updates will be skipped:" #~ msgstr "Les següents actualitzacions s'ometran:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Queden uns %li segons" @@ -1769,8 +1839,9 @@ msgstr "Programari no compatible DFSG" #~ msgstr "" #~ "Claus d'autenticació\n" #~ "\n" -#~ "Des d'aquest quadre de diàleg podeu afegir i esborrar claus d'autenticació. " -#~ "Les claus permeten comprovar la integritat del programari que descarregueu." +#~ "Des d'aquest quadre de diàleg podeu afegir i esborrar claus " +#~ "d'autenticació. Les claus permeten comprovar la integritat del programari " +#~ "que descarregueu." #~ msgid "" #~ "Enter the complete APT line of the repository that you want to " @@ -1783,15 +1854,15 @@ msgstr "Programari no compatible DFSG" #~ "Introduïu la línia APT del dipòsit que voleu afegir\n" #~ "\n" #~ "La línia APT conté el tipus, la ubicació i el contingut del dipòsit; per " -#~ "exemple, \"deb http://ftp.debian.org sarge main\". Podeu trobar una " -#~ "descripció més detallada de la sintaxi en la documentació." +#~ "exemple, \"deb http://ftp.debian.org sarge main\". Podeu trobar " +#~ "una descripció més detallada de la sintaxi en la documentació." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner." +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner." #~ msgstr "" -#~ "Afegeix una clau nova a l'anell de confiança. Assegureu-vos que heu rebut la " -#~ "clau per un canal segur i que confieu en el propietari." +#~ "Afegeix una clau nova a l'anell de confiança. Assegureu-vos que heu rebut " +#~ "la clau per un canal segur i que confieu en el propietari." #~ msgid "Add repository..." #~ msgstr "Afegeix un dipòsit..." @@ -1824,11 +1895,11 @@ msgstr "Programari no compatible DFSG" #~ msgstr "Restaura les claus per defecte" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Restaura les claus per defecte de la distribució. Això no afecta les claus " -#~ "instal·lades per l'usuari." +#~ "Restaura les claus per defecte de la distribució. Això no afecta les " +#~ "claus instal·lades per l'usuari." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Fixa la mida _màxima de memòria cau per als paquets descarregats" @@ -1860,8 +1931,8 @@ msgstr "Programari no compatible DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Actualitzacions disponibles\n" #~ "\n" @@ -1873,8 +1944,8 @@ msgstr "Programari no compatible DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "S'estan descarregant els " -#~ "canvis\n" +#~ "S'estan descarregant els canvis\n" #~ "\n" #~ "Es necessita obtenir els canvis des del servidor central" @@ -1963,7 +2034,8 @@ msgstr "Programari no compatible DFSG" #~ "Heu seleccionat els %s paquets actualitzats, la mida total és de %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Heu seleccionat %s paquet actualitzat de %s, la mida és de $s" #~ msgstr[1] "" #~ "Heu seleccionat %s paquets actualitzats de %s, la mida total és de %s" @@ -1978,8 +2050,8 @@ msgstr "Programari no compatible DFSG" #~ msgstr "S'està executant un altre gestor de paquets" #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Només podeu executar un gestor de paquets a la vegada. Tanqueu l'altra " #~ "aplicació." @@ -2001,24 +2073,24 @@ msgstr "Programari no compatible DFSG" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Actualitzeu el sistema amb una versió més nova d'Ubuntu Linux. La vostra " #~ "versió ja no disposarà de més actualitzacions de seguretat ni d'altres " -#~ "actualitzacions crítiques. Si voleu més informació, visiteu " -#~ "http://www.ubuntulinux.org/." +#~ "actualitzacions crítiques. Si voleu més informació, visiteu http://www." +#~ "ubuntulinux.org/." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ja disposeu del nou llançament d'Ubuntu" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Ja disposeu del nou llançament d'Ubuntu amb el nom en clau '%s'. Si " -#~ "necessiteu instruccions per a actualitzar el sistema, visiteu " -#~ "http://www.ubuntulinux.org/." +#~ "necessiteu instruccions per a actualitzar el sistema, visiteu http://www." +#~ "ubuntulinux.org/." #~ msgid "Never show this message again" #~ msgstr "No tornis a mostrar aquest missatge" @@ -2026,4 +2098,4 @@ msgstr "Programari no compatible DFSG" #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" #~ "No s'han trobat els canvis. Pot ser que el servidor encara no s'hagi " -#~ "actualitzat." \ No newline at end of file +#~ "actualitzat." diff --git a/po/cs.po b/po/cs.po index 6ec03ae8..47d205cb 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Tomáš Hála \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "Po měsíci" msgid "After %s days" msgstr "Po %s dnech" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "Aktualizace %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Hlavní server" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,12 +125,11 @@ msgid "Error removing the key" msgstr "Chyba při odstraňování klíče" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný klíč nemohl být odstraněn. Prosím oznamte to jako chybu." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -166,6 +168,7 @@ msgstr "Nemohu aktualizovat požadované meta-balíky" msgid "A essential package would have to be removed" msgstr "Toto by vedlo k odstranění základního balíku" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nemohu vypočítat aktualizaci" @@ -182,6 +185,7 @@ msgstr "" "Prosím nahlaste tuto chybu jako chybu balíčku 'update-manager' a přiložte " "soubory z adresáře /var/log/dist-upgrade/ k hlášení o chybě." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Chyba při ověřování některých balíků" @@ -208,6 +212,7 @@ msgid "" msgstr "" "Nebylo možné nainstalovat požadovaný balík. Prosím oznamte to jako chybu. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nemohu odhadnout meta-balík" @@ -226,12 +231,12 @@ msgstr "" " Před pokračováním si prosím nainstalujte jeden z výše uvedených balíků " "pomocí synaptic nebo apt-get." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, fuzzy msgid "Failed to add the CD" msgstr "Chyba při přidávání CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -247,15 +252,15 @@ msgstr "" "Chybová zpráva byla:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Probíhá čtení cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Stáhnout ze sítě nějaká data pro přechod na vyšší verzi?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -267,11 +272,11 @@ msgstr "" "Pokud máte levné připojení k síti, můžete zde odpovědět 'Ano'. Pokud je vaše " "síťové připojené nákladné, zvolte 'Ne'." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Nenalezeno správné zrcadlo" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -290,11 +295,12 @@ msgstr "" "všechny položky '%s' aktualizovány na '%s'.\n" "Zvolíte-li 'Ne', aktualizace bude zrušena." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Vygenerovat výchozí zdroje?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -308,11 +314,11 @@ msgstr "" "Chcete přidat výchozí položky pro '%s'? Zvolíte-li 'Ne', aktualizace bude " "zrušena." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Neplatná informace o zdroji" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -320,11 +326,11 @@ msgstr "" "Aktualizace informací o repozitáři vyústila v neplatný soubor. Prosím " "oznamte to jako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Zdroje třetích stran vypnuté" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " @@ -334,11 +340,11 @@ msgstr "" "položky můžete opět povolit po přechodu na novou verzi za pomocí nástroje " "'software-properties' nebo nástroje synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Chyba během aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -346,11 +352,11 @@ msgstr "" "Nastala chyba během aktualizace. Toto je obvykle způsobeno chybou síťového " "připojení. Prosím zkontrolujte své připojení a zkuste to znovu." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Nedostatek volného místa na disku" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -361,15 +367,16 @@ msgstr "" "Vyprázdněte váš koš a odstraňte dočasné balíčky z dřívějších instalací " "pomocí 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Chcete spustit aktualizaci?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Nelze nainstalovat aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -384,11 +391,11 @@ msgstr "" "Prosím nahlaste tuto chybu jako chybu balíčku 'update-manager' a přiložte " "soubory z adresáře /var/log/dist-upgrade/ k hlášení o chybě." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Nelze stáhnout aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -396,11 +403,11 @@ msgstr "" "Aktualizace byla předčasně ukončena. Prosím zkontrolujte si připojení k " "internetu nebo instalační médium a zkuste to znovu. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Podpora pro některé aplikace byla ukončena" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -414,23 +421,23 @@ msgstr "" "Pokud nemáte povolen software spravovaný komunitou (universe), tyto balíčky " "budou v dalším kroku navrhnuty k odstranění." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Odebrat zastaralé balíky?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Přeskočit tento krok" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Odebrat" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Chyba při potvrzování" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -438,44 +445,46 @@ msgstr "" "Během čištění nastal problém. Podrobnější informace jsou obsaženy v " "následující zprávě: " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Obnovuje se původní stav systému" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Stahuji verzi '%s' přenesenou z vyšší verze distribuce" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Kontroluji správce balíků" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Příprava přechodu na vyšší verzi selhala" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" "Příprava systému na přechod na vyšší verzi selhala. Prosím nahlaste tuto " -"chybu jako chybu balíčku 'update-manager' a přiložte soubory z adresáře " -"/var/log/dist-upgrade/ k hlášení o chybě." +"chybu jako chybu balíčku 'update-manager' a přiložte soubory z adresáře /var/" +"log/dist-upgrade/ k hlášení o chybě." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Aktualizují se informace o repozitáři" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Neplatná informace o balících" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -487,25 +496,26 @@ msgstr "" "Poté co byly aktualizovány informace o balících, nebyl nalezen nezbytný " "balík '%s'.\n" "Toto ukazuje na závažný problém, prosím nahlašte toto jako chybu balíku " -"'update-manager' a přiložte k hlášení o chybě soubory v adresáři " -"/var/log/dist-upgrade/." +"'update-manager' a přiložte k hlášení o chybě soubory v adresáři /var/log/" +"dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Vyžaduji potvrzení" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Probíhá přechod na vyšší verzi" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Vyhledávám zastaralý software" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Přechod na vyšší verzi systému je dokončen." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -516,7 +526,7 @@ msgid "Fetching is complete" msgstr "Stahování je dokončeno" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Stahuji soubor %li z %li rychlostí %s/s" @@ -527,12 +537,13 @@ msgid "About %s remaining" msgstr "Zhruba %s zbývá" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Stahuji soubor %li z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Provádím změny" @@ -548,9 +559,10 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "Aktualizace byla předčasně ukončena. Nahlašte prosím tuto chybu jako chybu " -"balíku 'update-manager' a přiložte k chybovému hlášení soubory z adresáře " -"/var/log/dist-upgrade/." +"balíku 'update-manager' a přiložte k chybovému hlášení soubory z adresáře /" +"var/log/dist-upgrade/." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -578,17 +590,18 @@ msgstr "Nastala kritická chyba" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Prosím oznamte toto jako chybu a do zprávy připojte soubory /var/log/dist-" "upgrade/main.log a /var/log/dist-upgrade/apt.log. Přechod na novou verzi " -"bude nyní předčasně ukončen. Váš původní soubor sources.list byl uložen do " -"/etc/apt/sources.list.distUpgrade." +"bude nyní předčasně ukončen. Váš původní soubor sources.list byl uložen do /" +"etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -614,7 +627,7 @@ msgstr[1] "%d balíky budou nahrazeny vyšší verzí." msgstr[2] "%d balíky bude nahrazeno vyšší verzí." #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -636,6 +649,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "Uzavřete všechny aplikace a dokumenty pro zamezení ztrátě dat." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -685,6 +699,7 @@ msgid "%li seconds" msgstr "%li sekund" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -708,6 +723,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -818,6 +834,7 @@ msgstr "Nemohu stáhnout poznámky k vydání." msgid "Please check your internet connection." msgstr "Prosím zkontrolujte své internetové připojení." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nemohu spustit aktualizační nástroj" @@ -917,14 +934,17 @@ msgstr "" "Stažení seznamu změn selhalo. \n" "Prosím zkontrolujte své internetové připojení." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Důležité bezpečnostní aktualizace" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Doporučené aktualizace" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Navržené aktualizace" @@ -937,6 +957,7 @@ msgstr "Aplikace přenesené z novějších verzí distribuce" msgid "Distribution updates" msgstr "Aktualizace distribuce" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Ostatní aktualizace" @@ -959,6 +980,7 @@ msgstr "_Odznačit vše" msgid "_Check All" msgstr "_Zkontrolovat vše" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -994,6 +1016,7 @@ msgstr "Z verze %(old_version)s na verzi %(new_version)s" msgid "Version %s" msgstr "Verze %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1011,14 +1034,15 @@ msgid "" msgstr "" "Pro vaší verzi Ubuntu Linux již nejsou dostupné žádné další bezpečnostní " "opravy ani velmi důležité aktualizace. Přejděte na vyšší verzi Ubuntu Linux. " -"Pro více informací o přechodu na vyšší verzi se podívejte na " -"http://www.ubuntu.com." +"Pro více informací o přechodu na vyšší verzi se podívejte na http://www." +"ubuntu.com." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Nové vydání distribuce (%s) je k dispozici" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Seznam softwaru je poškozen" @@ -1033,19 +1057,23 @@ msgstr "" "\"Synaptic\" nebo nejdříve spusťe v terminálu \"sudo apt-get install -f\" " "pro nápravu tohoto problému." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Prázdný" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1320,8 +1348,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Zadejte úplnou specifikaci APT kanálu, který chcete " -"přidat\n" +"Zadejte úplnou specifikaci APT kanálu, který chcete přidat\n" "\n" "Řádek pro APT kanál obsahuje typ, umístění a součásti kanálu, např. \"deb " "http://ftp.debian.org sarge main\"." @@ -1410,192 +1438,234 @@ msgstr "Velikost okna" msgid "Configure the sources for installable software and updates" msgstr "Konfigurovat zdroje pro instalovatelný software a aktualizace" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Udržováno komunitou" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Patentované (proprietární) ovladače zařízení" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Nesvobodný software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom s Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Udržováno komunitou (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Udržováno komunitou (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software s otevřeným zdrojovým kódem, který je udržován komunitou" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Nesvobodné ovladače" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Patentované (proprietární) ovladače pro zařízení " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software s omezující licencí (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software omezený ochrannou známkou nebo jinými právními prostředky" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom s Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Aktualizace přenesené z vyšších verzí distribuce" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom s Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Bezpečnostní aktualizace Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Aktualizace Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Software přenesený z vyšší verze distribuce na Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom s Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiálně podporováno" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Bezpečnostní aktualizace Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Aktualizace Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Aplikace přenesené z vyšších verzí distribuce na Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Udržováno komunitou (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nesvobodný (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom s Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Již není oficiálně podporováno" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Omezený copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Bezpečnostní aktualizace Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Aktualizace Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Aplikace přenesené z vyšších verzí distribuce na Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Bezpečnostní Aktualizace Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "" -"Software kompatibilní s DFSG, ale závisející na nesvobodných balících" +msgstr "Software kompatibilní s DFSG, ale závisející na nesvobodných balících" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software nekompatibilní s DFSG" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Stahuji %li. soubor z %li neznámou rychlostí" @@ -1634,8 +1704,8 @@ msgstr "Software nekompatibilní s DFSG" #~ msgstr "" #~ "Prozkoumává se systém\n" #~ "\n" -#~ "Aktualizace softwaru opravují chyby, eliminují bezpečnostní zranitelnosti a " -#~ "poskytují nové funkce." +#~ "Aktualizace softwaru opravují chyby, eliminují bezpečnostní zranitelnosti " +#~ "a poskytují nové funkce." #~ msgid "Oficially supported" #~ msgstr "Oficiálně podporované" @@ -1643,7 +1713,6 @@ msgstr "Software nekompatibilní s DFSG" #~ msgid "The following updates will be skipped:" #~ msgstr "Následující aktualizace budou přeskočeny:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Zhruba %li sekund zbývá" @@ -1720,14 +1789,14 @@ msgstr "Software nekompatibilní s DFSG" #~ msgstr "Ubuntu 6.06 LTS backporty" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" -#~ "Během prozkoumávání vašich zdrojů nebyla nalezený žádná platná položka pro " -#~ "upgrade.\n" +#~ "Během prozkoumávání vašich zdrojů nebyla nalezený žádná platná položka " +#~ "pro upgrade.\n" #~ msgid "Sections" #~ msgstr "Sekce" #~ msgid "Sections:" -#~ msgstr "Sekce:" \ No newline at end of file +#~ msgstr "Sekce:" diff --git a/po/csb.po b/po/csb.po index cb3d3943..47143244 100644 --- a/po/csb.po +++ b/po/csb.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-08 04:10+0000\n" "Last-Translator: Michôł Òstrowsczi \n" "Language-Team: Kashubian \n" @@ -56,6 +56,7 @@ msgstr "Pò miesącu" msgid "After %s days" msgstr "P %s dniach" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s aktualizacëji" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Przédny serwera" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Fela òbczas rëmaniô klucza" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Nie mòżna bëło rëmnąc klucza. Proszã zgłoszëc to jakno felã." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -162,6 +164,7 @@ msgstr "Nie je mòżno zaktualizowac wëmôgónëch meta-paczétów" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -174,6 +177,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fela òbczas ùdowierzaniô niechtërnëch paczétów" @@ -198,6 +202,7 @@ msgstr "" "Nie bëło mòżna zainstalowac wëmôgónegò paczétu. Proszã zgłoszëc to jakno " "felã. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -211,11 +216,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Nie je mòżno dodac platë CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -225,15 +230,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -241,11 +246,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +262,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +276,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Fela òbczas aktualizacëji" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -313,15 +319,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "CZë chcesz zrëszëc aktualizacëjã?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Instalacëja aktualizacëji nie darzëła sã." -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -330,21 +337,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -353,63 +360,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Rëmôj" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Fela òbczas zacwierdzaniô" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Sprôwdzanié menadżera paczétów" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -419,22 +428,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -462,6 +472,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Zacwierdzanié zmianów" @@ -477,6 +488,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -502,13 +514,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -551,6 +564,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -560,8 +574,7 @@ msgstr "Twojô systema je fùl zaktualizowónô" msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." -msgstr "" -"Felëjë przistãpnëch aktualizacëjów. Aktualizacëjô òstanié òprzestónô." +msgstr "Felëjë przistãpnëch aktualizacëjów. Aktualizacëjô òstanié òprzestónô." #: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format @@ -599,6 +612,7 @@ msgid "%li seconds" msgstr "%li sekùnd" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -619,6 +633,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -725,6 +740,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -814,14 +830,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -834,6 +853,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -855,6 +875,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -890,6 +911,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -911,6 +933,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -922,19 +945,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1260,184 +1287,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/da.po b/po/da.po index 9d21e317..dee2a8eb 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 15:55+0000\n" "Last-Translator: Lasse Bang Mikkelsen \n" "Language-Team: Danish \n" @@ -55,6 +55,7 @@ msgstr "Efter en måned" msgid "After %s days" msgstr "Efter %s dage" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s opdateringer" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Hovedserver" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "Fejl ved fjernelse af nøgle" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Den valgte nøgle kunne ikke fjernes. Rapportér venligst dette som en fejl." @@ -164,6 +166,7 @@ msgstr "Kan ikke opgradere de krævede metapakker" msgid "A essential package would have to be removed" msgstr "Det ville være nødvendigt at fjerne en vital pakke" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunne ikke beregne opgraderingen" @@ -180,6 +183,7 @@ msgstr "" "Rapportér venligst denne fejl mod \"update-manager\"-pakken og inkludér " "filerne i /var/log/dist-upgrade/ i fejlrapporten." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fejl ved godkendelse af nogle pakker" @@ -207,6 +211,7 @@ msgstr "" "Det var umuligt at installere en påkrævet pakke. Rapportér venligst dette " "som en fejl. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan ikke gætte metapakke" @@ -226,11 +231,11 @@ msgstr "" "Installér venligst en af pakkerne nævnt herover ved hjælp af synaptic eller " "apt-get, før du fortsætter." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Kunne ikke tilføje cd" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -245,15 +250,15 @@ msgstr "" "Fejlmeddelelsen var:\n" "\"%s\"" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Læser mellemlager" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Hent data fra netværket til opgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -266,11 +271,11 @@ msgstr "" "Hvis du har en hurtig eller billig netværksforbindelse, bør du svare \"Ja\" " "her. Hvis forbindelsen er dyr i anvendelse, bør du svare \"Nej\"." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Intet gyldigt spejl fundet" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -289,11 +294,12 @@ msgstr "" "her, vil alle linjer \"%s\" blive erstattet af \"%s\".\n" "Hvis du vælger \"Nej\", vil opdateringen blive annulleret." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Generér standardkilder?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -307,11 +313,11 @@ msgstr "" "Skal standardlinjer for \"%s\" tilføjes? Hvis du vælger \"Nej\", vil " "opdateringen blive annulleret." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Arkivinformation ugyldig" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -319,11 +325,11 @@ msgstr "" "Opgradering af arkivet resulterede i en ødelagt fil. Rapportér venligst " "dette som en fejl." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Tredjepartskilder er deaktiveret" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " @@ -333,11 +339,11 @@ msgstr "" "genaktivere dem efter opgraderingen med \"software-properties\"-værktøjet " "eller med synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Fejl under opdatering" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -345,11 +351,11 @@ msgstr "" "En fejl opstod under opdateringen. Dette skyldes som regel et " "netværksproblem, tjek venligst din netværksforbindelse og prøv igen." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Ikke tilstrækkeligt ledig diskplads" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -360,15 +366,16 @@ msgstr "" "papirkurv og fjern midlertidige pakker fra tidligere installationer ved at " "køre 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Vil du starte opgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Kunne ikke installere opgraderingerne" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -382,11 +389,11 @@ msgstr "" "Rapportér venligst denne fejl mod \"update-manager\"-pakken og inkludér " "filerne i /var/log/dist-upgrade/ i fejlrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Kunne ikke hente opgraderingerne" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -394,11 +401,11 @@ msgstr "" "Opgraderingen afbrydes nu. Tjek venligst din internetforbindelse eller dit " "installationsmedie og prøv igen. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Support stoppede for nogle programmer" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -412,23 +419,23 @@ msgstr "" "Hvis du ikke har slået software vedligeholdt af fællesskabet (universe) til, " "vil disse pakker blive foreslået fjernet i det næste trin." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Fjern forældede pakker?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Spring dette trin over" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Fjern" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Fejl under gennemførelse" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -436,26 +443,28 @@ msgstr "" "Et problem opstod under oprydningen. Se venligst længere nede for mere " "information. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Genskaber oprindelig systemtilstand" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Henter tilbageportering af \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Undersøger pakkehåndtering" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Klargøring af opgraderingen fejlede" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -465,15 +474,15 @@ msgstr "" "fejl mod \"update-manager\"-pakken og inkludér filerne i /var/log/dist-" "upgrade/ i fejlrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Opdaterer arkivinformation" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Ugyldig pakkeinformation" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -488,22 +497,23 @@ msgstr "" "manager\"-pakken og inkludér filerne i /var/log/dist-upgrade/ i " "fejlrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Anmoder om bekræftelse" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Opgraderer" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Søger efter forældet software" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Systemopgradering er fuldført" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -531,6 +541,7 @@ msgstr "Henter fil %li af %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Anvender ændringer" @@ -545,10 +556,10 @@ msgid "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Opgraderingen afbrydes nu. Rapportér venligst denne fejl mod \"update-" -"manager\"-pakken og inkludér filerne i /var/log/dist-upgrade/ i " -"fejlrapporten." +"Opgraderingen afbrydes nu. Rapportér venligst denne fejl mod \"update-manager" +"\"-pakken og inkludér filerne i /var/log/dist-upgrade/ i fejlrapporten." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -576,9 +587,9 @@ msgstr "Der opstod en alvorlig fejl" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Rapportér venligst dette som en fejl og inkludér filerne /var/log/dist-" @@ -587,6 +598,7 @@ msgstr "" "Din oprindelige sources.list blev gemt i /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -631,6 +643,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "Luk alle åbne programmer og dokumenter for at undgå tab af data." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -680,14 +693,15 @@ msgid "%li seconds" msgstr "%li sekunder" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" -"Denne hentning vil tage omkring %s med en 1 Mbit DSL-forbindelse og omkring " -"%s med et 56k modem" +"Denne hentning vil tage omkring %s med en 1 Mbit DSL-forbindelse og omkring %" +"s med et 56k modem" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -703,6 +717,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -813,6 +828,7 @@ msgstr "Kunne ikke hente udgivelsesnoterne" msgid "Please check your internet connection." msgstr "Undersøg venligst din internetforbindelse" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Kunne ikke køre opgraderingsværktøjet" @@ -916,14 +932,17 @@ msgstr "" "Fejl ved hentning af ændringslisten.\n" "Undersøg venligst din internetforbindelse." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Vigtige sikkerhedsopdateringer" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Anbefalede opdateringer" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Foreslåede opdateringer" @@ -936,6 +955,7 @@ msgstr "Tilbageporteringer" msgid "Distribution updates" msgstr "Distributionsopdateringer" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Andre opdateringer" @@ -957,6 +977,7 @@ msgstr "_Fjern alle afkrydsninger" msgid "_Check All" msgstr "_Afkryds alle" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -991,6 +1012,7 @@ msgstr "Fra version %(old_version)s til %(new_version)s" msgid "Version %s" msgstr "Version %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1007,14 +1029,15 @@ msgid "" "information on upgrading." msgstr "" "Du vil ikke modtage yderligere sikkerhedrettelser eller kritiske " -"opdateringer. Opgradér til en senere version af Ubuntu Linux. Se " -"http://www.ubuntu.com (engelsk) for mere information om opgradering." +"opdateringer. Opgradér til en senere version af Ubuntu Linux. Se http://www." +"ubuntu.com (engelsk) for mere information om opgradering." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Ny distributionsudgivelse \"%s\" er tilgængelig" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Softwareindekset er ødelagt" @@ -1026,22 +1049,26 @@ msgid "" "this issue at first." msgstr "" "Det er ikke muligt at installere eller fjerne software. Brug venligst " -"pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo apt-get install -" -"f\" i en terminal for at fikse dette problem først." +"pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo apt-get install -f" +"\" i en terminal for at fikse dette problem først." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Intet" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1067,8 +1094,8 @@ msgstr "Hold dit system opdateret" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Ikke alle opdateringer kan installeres \n" -" \n" +"Ikke alle opdateringer kan installeres\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1411,190 +1438,233 @@ msgstr "Vinduesstørrelsen" msgid "Configure the sources for installable software and updates" msgstr "Konfigurér kilderne for installérbar software og opdateringer" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Vedligeholdt af fællesskabet" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietære drivere til enheder" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Ikke-frit software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cd-rom med Ubuntu 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Fri software understøttet af Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Vedligeholdt af fællesskabet (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Fri software vedligeholdt af fællesskabet" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Proprietære drivere" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietære drivere til enheder " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Ikke-frit software (multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software begrænset af ophavsret eller legale problemer" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cd-rom med Ubuntu 6.06 LTS \"Dapper Drake\"" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Tilbageporterede opdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cd-rom med Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 sikkerhedsopdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 opdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 tilbageporteringer" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cd-rom med Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Understøttet officielt" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 sikkerhedsopdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 opdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 tilbageporteringer" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Vedligeholdt af fællesskabet (universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ikke-frit (multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cd-rom med Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Ikke længere officielt supporteret" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begrænset ophavsret" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 sikkerhedsopdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 opdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 tilbageporteringer" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" sikkerhedsopdateringer" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibel software med ikke-frie afhængigheder" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Ikke-DFSG-kompatibel software" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Henter fil %li af %li med ukendt hastighed" @@ -1617,7 +1687,8 @@ msgstr "Ikke-DFSG-kompatibel software" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Opgraderer til Ubuntu 6.06 LTS" +#~ "Opgraderer til Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1636,17 +1707,17 @@ msgstr "Ikke-DFSG-kompatibel software" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Nogle opdateringer kræver yderligere software. Brug funktionen \"Vælg alle " -#~ "opgraderinger\" i pakkehåndteringsprogrammet \"Synaptic\" eller kør \"sudo " -#~ "apt-get dist-upgrade\" i en terminal for at opdatere dit system fuldstændigt." +#~ "Nogle opdateringer kræver yderligere software. Brug funktionen \"Vælg " +#~ "alle opgraderinger\" i pakkehåndteringsprogrammet \"Synaptic\" eller kør " +#~ "\"sudo apt-get dist-upgrade\" i en terminal for at opdatere dit system " +#~ "fuldstændigt." #~ msgid "The following updates will be skipped:" #~ msgstr "Følgende opdateringer vil blive sprunget over:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Tid tilbage(ca.): %li sekunder" @@ -1723,4 +1794,4 @@ msgstr "Ikke-DFSG-kompatibel software" #~ msgstr "Ubuntu 6.06 LTS Opdateringer" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Backports" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS Backports" diff --git a/po/de.po b/po/de.po index f528a482..c12b6359 100644 --- a/po/de.po +++ b/po/de.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: Sebastian Heinlein \n" "Language-Team: German GNOME Translations \n" @@ -56,6 +56,7 @@ msgstr "Nach einem Monat" msgid "After %s days" msgstr "Nach %s Tagen" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s Aktualisierungen" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Haupt-Server" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,14 +127,13 @@ msgid "Error removing the key" msgstr "Fehler beim Entfernen des Schlüssels" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Der gewählte Schlüssel konnte nicht entfernt werden. Bitte erstellen Sie " "hierfür einen Fehlerbericht." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -170,6 +172,7 @@ msgstr "Die erforderlichen Metapakete können nicht aktualisiert werden" msgid "A essential package would have to be removed" msgstr "Ein grundlegendes Paket müsste entfernt werden" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Die Aktualisierung konnte nicht berechnet werden" @@ -185,6 +188,7 @@ msgstr "" "Ein unlösbares Problem trat beim Berechnen der Aktualisierung auf. Bitte " "erstellen Sie hierfür einen Fehlerbericht." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fehler bei der Echtheitsbestätigung einiger Pakete" @@ -213,6 +217,7 @@ msgstr "" "Ein erforderliches Paket konnte nicht installiert werden. Bitte erstellen " "Sie hierfür einen Fehlerbericht. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Metapaket konnte nicht bestimmt werden" @@ -232,11 +237,11 @@ msgstr "" " Bitte installieren Sie eines der obigen Pakete über Synaptic oder apt-get, " "bevor Sie fortfahren." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "CD hinzufügen ist fehlgeschlagen" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -252,16 +257,15 @@ msgstr "" "Die Fehlermeldung war:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Zwischenspeicher wird ausgelesen" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" -msgstr "" -"Sollen die Daten für die Systemerweiterung aus dem Netz geholt werden?" +msgstr "Sollen die Daten für die Systemerweiterung aus dem Netz geholt werden?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -274,11 +278,11 @@ msgstr "" "hier 'Ja' antworten. Falls die Netzwerkbenutzung teuer ist sollten sie " "'Nein' wählen." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Kein gültiger Mirror gefunden" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -297,11 +301,12 @@ msgstr "" "wählen, werden alle Einträge von '%s' bis '%s' aktualisiert.\n" "Wenn Sie 'Nein' wählen, wird das Update abgebrochen." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Standardquellen generieren?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -309,17 +314,17 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Nach dem Überprüfen Ihrer 'sources.list' wurde kein gültiger Eintrag für " -"'%s' gefunden.\n" +"Nach dem Überprüfen Ihrer 'sources.list' wurde kein gültiger Eintrag für '%" +"s' gefunden.\n" "\n" "Sollen Standardeinträge für '%s' hinzugefügt werden? Wenn Sie 'Nein' " "auswählen, wird das Update abgebrochen." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Ungültige Kanalinformationen" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -327,11 +332,11 @@ msgstr "" "Die Aktualisierung der Quellen-Information ergab eine ungültige Datei. Bitte " "erstellen Sie einen Fehlerbericht." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Quellen von Drittanbietern deaktiviert" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -342,11 +347,11 @@ msgstr "" "Sie können diese nach dem Upgrade mit dem 'software-properties'-Werkzeug " "oder mit Synaptic reaktivieren." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Fehler während der Aktualisierung" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -355,11 +360,11 @@ msgstr "" "Netzwerkprobleme zurückzuführen. Bitte überprüfen Sie Ihre " "Netzwerkverbindung und versuchen Sie es noch einmal." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Unzureichender freier Festplattenspeicher" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -370,15 +375,16 @@ msgstr "" "Plattenplatz auf %s frei. Leeren Sie Ihren Mülleimer und entfernen die " "temporäre Pakete von frühreren Installation mit 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Möchten Sie die Aktualisierung starten?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Die Aktualisierungen konnten nicht installiert werden" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -394,11 +400,11 @@ msgstr "" "manager\" und fügen sie alle Dateien in /var/log/dist-upgrade dem " "Fehlerbericht hinzu." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Die Aktualisierungen konnten nicht heruntergeladen werden" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -407,11 +413,11 @@ msgstr "" "Internet-Verbindung oder Ihr Installationsmedium und versuchen Sie es noch " "einmal. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -426,23 +432,23 @@ msgstr "" "Wenn sie 'universe' nicht aktiviert haben, werden diese Pakete im nächsten " "Schritt zum Entfernen vorgeschlagen." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Veraltete Pakete entfernen?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "Ü_berspringen" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Entfernen" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Fehler beim Anwenden" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -450,27 +456,29 @@ msgstr "" "Ein Problem trat beim Aufräumen auf. Bitte lesen Sie die unten stehende " "Nachricht für nähere Informationen. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Wiederherstellen des alten Systemzustandes" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Lade Rückportierung von '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Paketverwaltung wird überprüft" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Aktualisierung vorbereiten" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -480,15 +488,15 @@ msgstr "" "Ein unlösbares Problem trat beim Berechnen der Aktualisierung auf. Bitte " "erstellen Sie hierfür einen Fehlerbericht." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Aktualisiere Quellen-Information" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Ungültige Paketinformationen" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -503,22 +511,23 @@ msgstr "" "einen Fehlerbericht für das Paket \"update-manager\" und fügen sie alle " "Dateien in /var/log/dist-upgrade dem Fehlerbericht hinzu." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Nach Bestätigung fragen" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Aktualisiere" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Nach veralteter Software wird gesucht" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Aktualisierung ist abgeschlossen." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -546,6 +555,7 @@ msgstr "Datei %li von %li wird heruntergeladen" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Änderungen werden angewendet" @@ -564,8 +574,9 @@ msgstr "" "als einen Fehler des Pakets 'update-manager' und fügen Sie die Dateien in " "dem Verzeichnis '/var/log/dist-upgrade/' Ihrer Fehlermeldung hinzu." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -593,9 +604,9 @@ msgstr "Ein fataler Fehler ist aufgetreten" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Bitte melden Sie dies als Bug und fügen Sie die Dateien /var/log/dist-" @@ -605,29 +616,30 @@ msgstr "" "gespeichert." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s Paket wird entfernt." msgstr[1] "%s Pakete werden entfernt." #: ../DistUpgrade/DistUpgradeViewGtk.py:506 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s neues Paket wird installiert." msgstr[1] "%s neue Pakete werden installiert." #: ../DistUpgrade/DistUpgradeViewGtk.py:512 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s Paket wird aktualisiert." msgstr[1] "%s Pakete werden aktualisiert." #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -651,6 +663,7 @@ msgstr "" "Um Datenverlust zu vermeiden, schließen Sie alle offenen Anwendungen und " "Dokumente." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -698,6 +711,7 @@ msgid "%li seconds" msgstr "%li Sekunden" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -721,6 +735,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -835,6 +850,7 @@ msgstr "Freigabemitteilungen konnten nicht heruntergeladen werden" msgid "Please check your internet connection." msgstr "Bitte überprüfen Sie Ihre Internet-Verbindung." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Konnte die Anwendung zur Aktualisierung nicht starten" @@ -912,12 +928,12 @@ msgstr "" "Möglicherweise gibt es Probleme im Netzwerk oder am Server. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Datei %li von %li wird mit %s/s heruntergeladen" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Datei %li von %li wird mit %s/s heruntergeladen" @@ -943,14 +959,17 @@ msgstr "" "Die Liste mit Änderungen konnte nicht heruntergeladen werden. Bitte " "überprüfen Sie Ihre Internet-Verbindung." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Wichtige Sicherheitsaktualisierungen" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Empfohlene Updates" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Vorgeschlagene Aktualisierungen" @@ -965,6 +984,7 @@ msgstr "Ubuntu 5.10 Backports" msgid "Distribution updates" msgstr "_Aktualisierung fortsetzen" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Andere Aktualisierungen" @@ -988,6 +1008,7 @@ msgstr "" msgid "_Check All" msgstr "_Prüfen" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1014,7 +1035,7 @@ msgid "Checking for updates" msgstr "Nach verfügbaren Aktualisierungen suchen" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Neue Version: %s (Größe: %s)" @@ -1023,6 +1044,7 @@ msgstr "Neue Version: %s (Größe: %s)" msgid "Version %s" msgstr "Version %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1040,15 +1062,15 @@ msgid "" msgstr "" "Sie werden keine weiteren Aktualisierungen zur Behebung von " "Sicherheitslücken oder kritischen Fehlern erhalten. Aktualisieren Sie Ihr " -"System auf eine neuere Version von Ubuntu Linux. Auf " -"http://www.ubuntuusers.de oder http://www.ubuntu.com finden Sie weitere " -"Informationen hierzu." +"System auf eine neuere Version von Ubuntu Linux. Auf http://www.ubuntuusers." +"de oder http://www.ubuntu.com finden Sie weitere Informationen hierzu." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Neue Version '%s' der Distribution ist freigegeben" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Der Software-Index ist beschädigt" @@ -1063,19 +1085,23 @@ msgstr "" "verwenden Sie zuerst die Synaptic Paketverwaltung oder führen Sie »sudo apt-" "get install -f« im Terminal aus, um dieses Problem zu beheben." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Keine" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1092,8 +1118,8 @@ msgstr "" "Sie müssen manuell auf Aktualisierungen prüfen\n" "\n" "Ihr System prüft nicht automatisch auf verfügbare Aktualisierungen. Sie " -"können dieses Verhalten über die Menüpunkte \"System\" -> " -"\"Systemverwaltung\" -> \"Software Eigenschaften\" ändern." +"können dieses Verhalten über die Menüpunkte \"System\" -> \"Systemverwaltung" +"\" -> \"Software Eigenschaften\" ändern." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1458,187 +1484,231 @@ msgstr "" "Software-Kanäle und Einstellungen für die automatische Aktualisierung " "festlegen" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Von der Ubuntu-Gemeinde betreut" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietäre Gerätetreiber" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Eingeschränkte Software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM mit Ubuntu 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Von der Gemeinschaft betreut (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Von der Gemeinschaft betreut (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Von der Ubuntu-Gemeinde betreute Open Source-Software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Proprietäre Treiber" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietäre Gerätetreiber " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Eingeschränkte Software (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM mit Ubuntu 6.06 LTS »Dapper Drake«" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Zurückportierte Aktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM mit Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Aktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM mit Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Offiziell unterstützt" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Sicherheitsaktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Aktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Von der Gemeinschaft verwaltet (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Unfrei (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM mit Ubuntu 4.10 »Warty Warthog«" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Einige Programme werden nicht mehr länger offiziell unterstützt" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Eingeschränktes Copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Sicherheitsaktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Aktualisierungen" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Sicherheitsaktualisierungen" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatible Software mit unfreien Abhängigkeiten" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Nicht DFSG-kompatible Software" @@ -1646,7 +1716,6 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Urheberrechtlich oder gesetzlich eingeschränkte Software" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "" #~ "Datei %li von %li wird mit unbekannter Geschwindigkeit heruntergeladen" @@ -1670,7 +1739,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Auf Ubuntu 6.10 aktualisieren" +#~ "Auf Ubuntu 6.10 aktualisieren" #~ msgid "Important security updates of Ubuntu" #~ msgstr "Wichtige Sicherheitsaktualisierungen von Ubuntu" @@ -1697,8 +1767,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Einige Aktualisierungen erfordern das Entfernen von anderen Anwendungen. " #~ "Verwenden Sie die Funktion »Aktualisierungen vormerken« in der Synaptic " @@ -1708,7 +1778,6 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "The following updates will be skipped:" #~ msgstr "Die folgenden Aktualisierungen werden ausgelassen:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Ungefähr %li Sekunden verbleibend" @@ -1717,8 +1786,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte erstellen Sie hierfür einen " -#~ "Fehlerbericht." +#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte erstellen Sie hierfür " +#~ "einen Fehlerbericht." #~ msgid "Upgrading Ubuntu" #~ msgstr "Ubuntu aktualisieren" @@ -1737,7 +1806,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Bitte schließen Sie zuerst andere Anwendungen wie 'aptitude' oder 'Synaptic'." +#~ "Bitte schließen Sie zuerst andere Anwendungen wie 'aptitude' oder " +#~ "'Synaptic'." #~ msgid "Channels" #~ msgstr "Kanäle" @@ -1788,12 +1858,12 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "The upgrade aborts now. Please free at least %s of disk space. Empty your " -#~ "trash and remove temporary packages of former installations using 'sudo apt-" -#~ "get clean'." +#~ "trash and remove temporary packages of former installations using 'sudo " +#~ "apt-get clean'." #~ msgstr "" -#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte schaffen Sie mindestens %s " -#~ "an freien Festplattenspeicher. Leeren Sie ihren Mülleimer und entfernen Sie " -#~ "temporäre Pakete von früheren Installationen mit »sudo apt-get clean«." +#~ "Die Aktualisierung wird jetzt abgebrochen. Bitte schaffen Sie mindestens %" +#~ "s an freien Festplattenspeicher. Leeren Sie ihren Mülleimer und entfernen " +#~ "Sie temporäre Pakete von früheren Installationen mit »sudo apt-get clean«." #~ msgid "%s remaining" #~ msgstr "%s verbleiben" @@ -1802,27 +1872,27 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgstr "Keinen gültigen Eintrag gefunden" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Beim Lesen Ihrer Kanalliste konnte kein gültiger Eintrag für die " #~ "Aktualisierung gefunden werden.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery is now run (dpkg --configure -a)." #~ msgstr "" #~ "Die Aktualisierung wird jetzt abgebrochen. Ihr System könnte in einem " #~ "unbenutzbaren Zustand sein. Ein Wiederherstellungsversuch wird nun " #~ "unternommen (dpkg --configure -a)." #~ msgid "" -#~ "Please report this as a bug and include the files '/var/log/dist-" -#~ "upgrade.log' and '/var/log/dist-upgrade-apt.log' in your report. The upgrade " +#~ "Please report this as a bug and include the files '/var/log/dist-upgrade." +#~ "log' and '/var/log/dist-upgrade-apt.log' in your report. The upgrade " #~ "aborts now. " #~ msgstr "" -#~ "Bitte füllen Sie einen Fehlerbericht hierzu aus und legen Sie die Dateien » " -#~ "»/var/log/dist-upgrade.log« und »/var/log/dist-upgrade-apt.log« Ihren " +#~ "Bitte füllen Sie einen Fehlerbericht hierzu aus und legen Sie die Dateien " +#~ "» »/var/log/dist-upgrade.log« und »/var/log/dist-upgrade-apt.log« Ihren " #~ "Bericht bei. Die Aktualisierung wird jetzt abgebrochen. " #~ msgid "" @@ -1867,13 +1937,14 @@ msgstr "Nicht DFSG-kompatible Software" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Änderungen werden " -#~ "heruntergeladen\n" +#~ "Änderungen werden heruntergeladen\n" #~ "\n" #~ "Die Änderungen müssen vom zentralen Server abgerufen werden" #~ msgid "Show available updates and choose which to install" -#~ msgstr "Verfügbare Aktualisierungen anzeigen und zu installierende auswählen" +#~ msgstr "" +#~ "Verfügbare Aktualisierungen anzeigen und zu installierende auswählen" #, fuzzy #~ msgid "Error fetching the packages" @@ -1900,13 +1971,14 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Verfügbare Aktualisierungen\n" #~ "\n" -#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung kann " -#~ "durch einen Klick auf die Schaltfläche »Installieren« vorgenommen werden." +#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung " +#~ "kann durch einen Klick auf die Schaltfläche »Installieren« vorgenommen " +#~ "werden." #~ msgid "Repository" #~ msgstr "Repository" @@ -1935,12 +2007,12 @@ msgstr "Nicht DFSG-kompatible Software" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Hinzufügen einer neuen Schlüsseldatei zum vertrauenswürdigen Schlüsselbund. " -#~ "Stellen Sie sicher, dass der Schlüssel über eine sichere Verbindung bezogen " -#~ "wurde und dass der Besitzer vertrauenswürdig ist. " +#~ "Hinzufügen einer neuen Schlüsseldatei zum vertrauenswürdigen " +#~ "Schlüsselbund. Stellen Sie sicher, dass der Schlüssel über eine sichere " +#~ "Verbindung bezogen wurde und dass der Besitzer vertrauenswürdig ist. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "_Temporäre Paketdateien automatisch löschen" @@ -1962,11 +2034,12 @@ msgstr "Nicht DFSG-kompatible Software" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Zurücksetzen der Vorgabeschlüssel, welche mit der Distribution ausgeliefert " -#~ "wurden. Vom Benutzer installierte Schlüssel werden dadurch nicht geändert." +#~ "Zurücksetzen der Vorgabeschlüssel, welche mit der Distribution " +#~ "ausgeliefert wurden. Vom Benutzer installierte Schlüssel werden dadurch " +#~ "nicht geändert." #~ msgid "Set _maximum size for the package cache" #~ msgstr "_Begrenzen der Größe des Paketzwischenspeichers" @@ -1991,8 +2064,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" #~ "Dies bedeutet, dass einige Abhängigkeiten der installierten Pakete nicht " -#~ "aufgelöst sind. Verwenden Sie bitte »Synaptic« oder »apt-get« zur Behebung " -#~ "des Problems." +#~ "aufgelöst sind. Verwenden Sie bitte »Synaptic« oder »apt-get« zur " +#~ "Behebung des Problems." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "Es ist nicht möglich, alle Pakete zu aktualisieren." @@ -2000,12 +2073,13 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" -#~ "Dies bedeutet, dass neben der momentanen Aktualisierung der Pakete weitere " -#~ "Aktionen, wie das Installieren oder Entfernen von Paketen, notwendig sind. " -#~ "Verwenden Sie bitte die »Intelligente Aktualisierung« von Synaptic oder »apt-" -#~ "get dist-upgrade« zur Behebung des Problems." +#~ "Dies bedeutet, dass neben der momentanen Aktualisierung der Pakete " +#~ "weitere Aktionen, wie das Installieren oder Entfernen von Paketen, " +#~ "notwendig sind. Verwenden Sie bitte die »Intelligente Aktualisierung« von " +#~ "Synaptic oder »apt-get dist-upgrade« zur Behebung des Problems." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" @@ -2016,8 +2090,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgstr "Die Aktualisierungen werden ausgeführt." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Es kann immer nur eine Anwendung zur Paketverwaltung zur gleichen Zeit " #~ "ausgeführt werden. Bitte beenden Sie zuerst die andere Anwendung." @@ -2030,20 +2104,20 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Verwenden Sie bitte eine aktuellere Version von Ubuntu-Linux. Für die " #~ "momentan laufende Version werden keine Sicherheits- und andere kritische " -#~ "Aktualisierungen mehr bereitgestellt. Informationen zur Systemaktualisierung " -#~ "finden Sie unter http://www.ubuntulinux.org." +#~ "Aktualisierungen mehr bereitgestellt. Informationen zur " +#~ "Systemaktualisierung finden Sie unter http://www.ubuntulinux.org." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Eine neue Version von Ubuntu ist verfügbar!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Eine neue Version mit dem Codenamen »%s« ist verfügbar. Informationen zur " #~ "Aktualisierung des Systems erhalten Sie unter http://www.ubuntulinux.org." @@ -2053,8 +2127,8 @@ msgstr "Nicht DFSG-kompatible Software" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Es kann immer nur eine Anwendung zur Paketverwaltung zur gleichen Zeit " #~ "ausgeführt werden. Bitte beenden Sie zuerst die andere Anwendung." @@ -2063,7 +2137,8 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgstr "Initialisierung und Abrufen der Aktualisierungsliste..." #~ msgid "You need to be root to run this program" -#~ msgstr "Sie benötigen Administrationsrechte, um diese Anwendung auszuführen." +#~ msgstr "" +#~ "Sie benötigen Administrationsrechte, um diese Anwendung auszuführen." #~ msgid "Edit software sources and settings" #~ msgstr "Bearbeiten der Software-Quellen und Einstellungen" @@ -2086,15 +2161,17 @@ msgstr "Nicht DFSG-kompatible Software" #~ msgid "Ubuntu CD Image Automatic Signing Key " #~ msgstr "" -#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image " +#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image " #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Verfügbare Aktualisierungen\n" #~ "\n" -#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung kann " -#~ "durch einen Klick auf die Schaltfläche »Installieren« vorgenommen werden." \ No newline at end of file +#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung " +#~ "kann durch einen Klick auf die Schaltfläche »Installieren« vorgenommen " +#~ "werden." diff --git a/po/el.po b/po/el.po index 0ac6d8ab..bd9da55e 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" @@ -54,6 +54,7 @@ msgstr "Μετά από ένα μήνα" msgid "After %s days" msgstr "Μετά από %s ημέρες" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s ενημερώσεις" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Κύριος εξυπηρετητής" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Σφάλμα απομάκρυνσης κλειδιού" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Το κλειδί που επιλέξατε δεν μπορεί να απομακρυνθεί. Παρακαλώ αναφέρετε αυτό " "ως σφάλμα." @@ -167,6 +169,7 @@ msgstr "Αδυναμία αναβάθμισης απαιτούμενων μετ msgid "A essential package would have to be removed" msgstr "Ένα απαραίτητο πακέτα θα πρέπει να απομακρυνθεί" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Αδυναμία υπολογισμού της αναβάθμισης" @@ -183,6 +186,7 @@ msgstr "" "Παρακαλώ αναφέρετε το ως σφάλμα στο πακέτο 'update-manager' και επισυνάψτε " "στην αναφορά σφάλματος τα αρχεία στο /var/log/dist-upgrade/." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Σφάλμα πιστοποίησης κάποιων πακέτων" @@ -210,6 +214,7 @@ msgstr "" "Δεν ήταν δυνατή η αναβάθμιση του απαιτούμενου πακέτου. Παρακαλώ αναφέρετε το " "ως σφάλμα. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Αδυναμία εύρεσης μετα-πακέτου" @@ -229,11 +234,11 @@ msgstr "" " Εγκαταστήστε ένα από αυτά τα πακέτα πρώτα μέσω synaptic ή apt-get πριν να " "συνεχίσετε." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Αποτυχία προσθήκης του CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -248,15 +253,15 @@ msgstr "" "Το μήνυμα σφάλματος ήταν:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Ανάγνωση λανθάνουσας μνήμης" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Να γίνει λήψη δεδομένων από το δίκτυο για την αναβάθμιση;" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -268,11 +273,11 @@ msgstr "" "Αν διαθέτετε μια γρήγορη ή φθηνή πρόσβαση στο δίκτυο απαντήστε 'Ναι' εδώ. " "Αν η πρόσβαση είναι ακριβή πατήστε 'Όχι'" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Δεν βρέθηκε έγκυρη εναλλακτική τοποθεσία αρχείων" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -292,11 +297,12 @@ msgstr "" "εδώ 'Ναι' θα ενημερωθούν όλες οι '%s' καταχωρίσεις σε '%s'.\n" " Αν επιλέξετε 'Όχι' η ενημέρωση θα ακυρωθεί." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Δημιουργία προεπιλεγμένων πηγών;" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -304,17 +310,17 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Μετά τον έλεγχο του 'sources.list' δεν βρέθηκε έγκυρη καταχώριση για το " -"'%s'.\n" +"Μετά τον έλεγχο του 'sources.list' δεν βρέθηκε έγκυρη καταχώριση για το '%" +"s'.\n" "\n" "Να προστεθούν οι προεπιλεγμένες καταχωρίσεις για το '%s'; Αν απαντήσετε " "'Όχι' η ενημέρωση θα ακυρωθεί." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Μη έγκυρες πληροφορίες repository" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -322,11 +328,11 @@ msgstr "" "Η αναβάθμιση των πληροφοριών repository είχε σαν αποτέλεσμα ένα άκυρο " "αρχείο. Παρακαλώ αναφέρετε το ως σφάλμα." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Απενεργοποιήθηκαν πηγές τρίτων" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -337,11 +343,11 @@ msgstr "" "Μπορείτε να τις ενεργοποιήσετε μετά την αναβάθμιση με το εργαλείο 'software-" "properties' ή με το synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Σφάλμα κατά την ενημέρωση" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -349,11 +355,11 @@ msgstr "" "Δημιουργήθηκε ένα πρόβλημα κατά την αναβάθμιση. Αυτό συνήθως σημαίνει " "πρόβλημα δικτύου. Ελέγξτε τη σύνδεση δικτύου σας και προσπαθήστε ξανά." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Δεν υπάρχει αρκετός χώρος στο δίσκο" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -364,15 +370,16 @@ msgstr "" "στο %s. Αδειάστε τα απορρίμματα σας και απομακρύνετε τα προσωρινά πακέτα " "προηγούμενων εγκαταστάσεων με την εντολή 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Θέλετε να ξεκινήσετε την αναβάθμιση;" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Αδυναμία εγκατάστασης των αναβαθμίσεων" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -387,11 +394,11 @@ msgstr "" "συμπεριλάβετε και τα αρχεία του /var/log/dist-upgrade/ στην αναφορά " "σφάλματος." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Αδυναμία λήψης των αναβαθμίσεων" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -399,11 +406,11 @@ msgstr "" "Η αναβάθμιση τώρα θα τερματιστεί. Παρακαλώ ελέγξτε τη σύνδεση σας στο " "διαδίκτυο ή το μέσο εγκατάστασης και προσπαθήστε ξανά. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Η υποστήριξη για ορισμένες εφαρμογές τερματίστηκε" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -417,23 +424,23 @@ msgstr "" "Αν δεν έχετε ενεργοποιημένο το 'universe' , θα γίνει πρόταση για απομάκρυνση " "αυτών των πακέτων στο επόμενο βήμα." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Αφαίρεση παρωχημένων πακέτων;" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "Παράκα_μψη αυτου του βήματος" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Απομάκρυνση" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Σφάλμα κατά την υποβολή" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -441,26 +448,28 @@ msgstr "" "Δημιουργήθηκαν ορισμένα προβλήματα κατά την εκκαθάριση. Παρακαλώ δείτε το " "παρακάτω μήνυμα για περισσότερες πληροφορίες. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Γίνεται επαναφορά αρχικής κατάστασης συστήματος" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Λήψη backport του '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Έλεγχος διαχειριστή πακέτων" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Απέτυχε η προετοιμασία της αναβάθμισης" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -470,15 +479,15 @@ msgstr "" "Παρακαλώ αναφέρετε το ως σφάλμα στο πακέτο 'update-manager' και επισυνάψτε " "στην αναφορά τα αρχεία του /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Ενημέρωση πληροφοριών repository" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Μη έγκυρες πληροφορίες πακέτου" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -493,22 +502,23 @@ msgstr "" "συμπεριλάβετε και τα αρχεία του /var/log/dist-upgrade/ στην αναφορά " "σφάλματος." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Ερώτηση για επιβεβαίωση" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Γίνεται αναβάθμιση" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Γίνεται αναζήτηση για παρωχημένο λογισμικό" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Η αναβάθμιση συστήματος ολοκληρώθηκε." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -519,7 +529,7 @@ msgid "Fetching is complete" msgstr "Η λήψη ολοκληρώθηκε" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Λήψη αρχείου %li από %li με %s/s" @@ -530,12 +540,13 @@ msgid "About %s remaining" msgstr "Απομένουν περίπου %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Λήψη αρχείου %li από %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Γίνεται εφαρμογή αλλαγών" @@ -554,6 +565,7 @@ msgstr "" "'update-manager' και συμπεριλάβετε και τα αρχεία του /var/log/dist-upgrade/ " "στην αναφορά σφάλματος." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -581,18 +593,19 @@ msgstr "Προέκυψε μοιραίο σφάλμα" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Παρακαλώ αναφέρετε το ως σφάλμα και επισυνάψτε τα αρχεία /var/log/dist-" "upgrade/main.log και /var/log/dist-upgrade/apt.log στην αναφορά σας. Η " "αναβάθμιση τώρα θα τερματιστεί. \n" -"Το αρχικό αρχείο sources.list αποθηκεύτηκε στο " -"/etc/apt/sources.list.distUpgrade." +"Το αρχικό αρχείο sources.list αποθηκεύτηκε στο /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -640,6 +653,7 @@ msgstr "" "Για να αποφύγετε απώλεια δεδομένων, κλείστε όλες τις ανοικτές εφαρμογές και " "έγγραφα." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -689,6 +703,7 @@ msgid "%li seconds" msgstr "%li δευτερόλεπτα" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -712,6 +727,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -824,6 +840,7 @@ msgstr "Αδυναμία λήψης των σημειώσεων έκδοσης" msgid "Please check your internet connection." msgstr "Παρακαλώ ελέγξτε τη σύνδεση σας με το διαδίκτυο." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Αδυναμία εκτέλεσης του εργαλείου αναβαθμίσεων" @@ -841,8 +858,7 @@ msgstr "Λήψη του εργαλείου αναβάθμισης" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" -"Το εργαλείο αναβάθμισης θα σας καθοδηγήσει στην διαδικασία ενημέρωσης" +msgstr "Το εργαλείο αναβάθμισης θα σας καθοδηγήσει στην διαδικασία ενημέρωσης" #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -858,8 +874,7 @@ msgstr "Αποτυχία λήψης" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" -"Η λήψη της αναβάθμισης απέτυχε. Πιθανόν να υπάρχει πρόβλημα δικτύου. " +msgstr "Η λήψη της αναβάθμισης απέτυχε. Πιθανόν να υπάρχει πρόβλημα δικτύου. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -928,14 +943,17 @@ msgstr "" "Αποτυχία λήψης της λίστας των αλλαγών.\n" "Παρακαλώ ελέγξτε τη σύνδεση σας στο διαδίκτυο." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Σημαντικές ενημερώσεις ασφαλείας" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Συνιστώμενες ενημερώσεις" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Προτεινόμενες ενημερώσεις" @@ -948,6 +966,7 @@ msgstr "Backports" msgid "Distribution updates" msgstr "Αναβαθμίσεις διανομής" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Άλλες ενημερώσεις" @@ -970,6 +989,7 @@ msgstr "Α_ποεπιλογή όλων" msgid "_Check All" msgstr "Έλε_γχος όλων" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1004,6 +1024,7 @@ msgstr "Από έκδοση: %(old_version)s σε %(new_version)s" msgid "Version %s" msgstr "Έκδοση %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1029,6 +1050,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Είναι διαθέσιμη νέα έκδοση διανομής '%s'" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Ο κατάλογος λογισμικού είναι κατεστραμμένος" @@ -1043,19 +1065,23 @@ msgstr "" "το διαχειριστή πακέτων \"Synaptic\" η εκτελέστε την εντολή \"sudo apt-get " "install -f\" σε ένα τερματικό για να διορθώσετε το πρόβλημα πρώτα." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Καμία" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1080,8 +1106,7 @@ msgstr "Διατηρήστε το σύστημα σας ενημερωμ #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "" -"Δεν είναι δυνατή η εγκατάσταση όλων των ενημερώσεων" +msgstr "Δεν είναι δυνατή η εγκατάσταση όλων των ενημερώσεων" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" @@ -1298,8 +1323,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Οι πληροφορίες για το διαθέσιμο λογισμικό δεν είναι " -"ενημερωμένες\n" +"Οι πληροφορίες για το διαθέσιμο λογισμικό δεν είναι ενημερωμένες\n" "\n" "Θα πρέπει να ανανεώσετε τις πληροφορίες καναλιού για να εγκαταστήσετε " "λογισμικό και ενημερώσεις από τα τα νέα κανάλια που προσθέσατε ή " @@ -1428,191 +1453,234 @@ msgstr "Το μέγεθος του παραθύρου" msgid "Configure the sources for installable software and updates" msgstr "Ρύθμιση των πηγών για λογισμικό και ενημερώσεις" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Community maintained" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Οδηγοί με κλειστό κώδικα για συσκευές" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Λογισμικό με περιορισμούς" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom με το Ubuntu 6.10 'Edgy Eft" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 TLS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Λογισμικό ανοικτού κώδικα υποστηριζόμενο από την Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Υποστηριζόμενα από την κοινότητα (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Community maintained Open Source software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Όχι-ελεύθεροι οδηγοί" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Οδηγοί με κλειστό κώδικα για συσκευές " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Όχι-ελεύθερο (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Λογισμικό με περιορισμούς από πνευματικά δικαιώματα και νόμους" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom με Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported ενημερώσεις" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom με Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Αναβαθμίσεις Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom με Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ενημερώσεις Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Όχι-ελεύθερα (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom με το Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Δεν υποστηρίζονται πια επίσημα" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Περιορισμένα πνευματικά δικαιώματα" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ενημερώσεις ασφαλείας Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ενημερώσεις Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Αναβαθμίσεις ασφαλείας Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Λογισμικό συμβατό με DFSG με μη Ελεύθερες Εξαρτήσεις" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Λογισμικό μη συμβατό με DFSG" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Λήψη αρχείου %li από %li με άγνωστη ταχύτητα" @@ -1653,16 +1721,16 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "" #~ "Γίνεται ανάλυση του συστήματος σας\n" #~ "\n" -#~ "Οι ενημερώσεις λογισμικού μπορούν να διορθώνουν σφάλματα, κενά ασφαλείας και " -#~ "να παρέχουν νέες λειτουργίες." +#~ "Οι ενημερώσεις λογισμικού μπορούν να διορθώνουν σφάλματα, κενά ασφαλείας " +#~ "και να παρέχουν νέες λειτουργίες." #~ msgid "Oficially supported" #~ msgstr "Oficially supported" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Μερικές ενημερώσεις απαιτούν την απομάκρυνση επιπρόσθετου λογισμικού. " #~ "Χρησιμοποιήστε την λειτουργία \"Σημείωση όλων των αναβαθμίσεων\" από το " @@ -1672,7 +1740,6 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgid "The following updates will be skipped:" #~ msgstr "Οι παρακάτω ενημερώσεις θα παρακαμφθούν:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Απομένουν περίπου %li δευτερόλεπτα" @@ -1697,7 +1764,8 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Παρακαλώ κλείστε την άλλη εφαρμογή πρώτα π.χ. το 'aptitude' ή το 'Synaptic'." +#~ "Παρακαλώ κλείστε την άλλη εφαρμογή πρώτα π.χ. το 'aptitude' ή το " +#~ "'Synaptic'." #~ msgid "Channels" #~ msgstr "Κανάλια" @@ -1750,13 +1818,14 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Μη έγκυρες πληροφορίες πακέτου" #~ msgid "" -#~ "Failed to download the listof changes. Please check your internet connection." +#~ "Failed to download the listof changes. Please check your internet " +#~ "connection." #~ msgstr "" #~ "Αποτυχία λήψης της λίστας των αλλαγών. Παρακαλώ ελέγξτε τη σύνδεση σας." #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Κατά τον έλεγχο των πληροφοριών του repository δεν βρέθηκαν έγκυρες " #~ "καταχωρίσεις αναβάθμισης.\n" @@ -1787,24 +1856,25 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Το αρχείο '%s' δεν περιέχει έγκυρα κανάλια λογισμικού." #~ msgid "" -#~ "The upgrade is finished now. A reboot is required to now, do you want to do " -#~ "this now?" +#~ "The upgrade is finished now. A reboot is required to now, do you want to " +#~ "do this now?" #~ msgstr "" #~ "Η αναβάθμιση ολοκληρώθηκε. Απαιτείται επανεκκίνηση, θέλετε να γίνει τώρα;" #~ msgid "" -#~ "You need to manually reload the latest information about " -#~ "updates\n" +#~ "You need to manually reload the latest information about updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" -#~ "Πρέπει να ανανεώσετε χειροκίνητα τις τελευταίες πληροφορίες για τις " -#~ "ενημερώσεις\n" +#~ "Πρέπει να ανανεώσετε χειροκίνητα τις τελευταίες πληροφορίες για " +#~ "τις ενημερώσεις\n" #~ "\n" -#~ "Το σύστημα σας δεν έχει ρυθμιστεί να κάνει αυτόματο έλεγχο για ενημερώσεις. " -#~ "Μπορείτε να ρυθμίσετε αυτή τη συμπεριφορά μέσω του μενού \"Σύστημα\" -> " -#~ "\"Διαχείριση συστήματος\" -> \"Ιδιότητες λογισμικού\"." +#~ "Το σύστημα σας δεν έχει ρυθμιστεί να κάνει αυτόματο έλεγχο για " +#~ "ενημερώσεις. Μπορείτε να ρυθμίσετε αυτή τη συμπεριφορά μέσω του μενού " +#~ "\"Σύστημα\" -> \"Διαχείριση συστήματος\" -> \"Ιδιότητες λογισμικού\"." #~ msgid "" #~ "Downloading changes\n" @@ -1826,4 +1896,4 @@ msgstr "Λογισμικό μη συμβατό με DFSG" #~ msgstr "Ubuntu 6.04 \"Dapper Drake\"" #~ msgid "Ubuntu 5.10 \"Breezy Badger\"" -#~ msgstr "Ubuntu 5.10 \"Breezy Badger\"" \ No newline at end of file +#~ msgstr "Ubuntu 5.10 \"Breezy Badger\"" diff --git a/po/en_AU.po b/po/en_AU.po index 163b19fe..527ff9ba 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:01+0000\n" "Last-Translator: David Satchell \n" "Language-Team: English (Australia) \n" @@ -55,6 +55,7 @@ msgstr "After one month" msgid "After %s days" msgstr "After %s days" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s updates" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Main server" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "Error removing the key" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." @@ -161,6 +163,7 @@ msgstr "Can't upgrade required meta-packages" msgid "A essential package would have to be removed" msgstr "An essential package would have to be removed" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" @@ -173,6 +176,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" @@ -200,6 +204,7 @@ msgstr "" "It was impossible to install a required package. Please report this as a " "bug. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Can't guess meta-packag" @@ -213,11 +218,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Failed to add the CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -232,15 +237,15 @@ msgstr "" "The error message was:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Reading cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Fetch data from the network for the upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -252,11 +257,11 @@ msgstr "" "If you have fast and inexpensive network access you should answer 'Yes' " "here. If networking is expensive for you choose 'No'." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "No valid mirror found" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -275,11 +280,12 @@ msgstr "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Generate default sources?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -292,11 +298,11 @@ msgstr "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Repository information invalid" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -304,22 +310,22 @@ msgstr "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Third party sources disabled" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Error during update" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -327,11 +333,11 @@ msgstr "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Not enough free disk space" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -342,15 +348,16 @@ msgstr "" "your Garbage Bin and remove temporary packages of former installations using " "'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Could not install the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -364,11 +371,11 @@ msgstr "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bug report." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Could not download the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -376,11 +383,11 @@ msgstr "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -389,23 +396,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Remove obsolete packages?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Skip This Step" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Remove" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Error during commit" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -413,41 +420,43 @@ msgstr "" "A problem occured during the clean-up. Please see the below message for more " "information. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Restoring original system state" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Checking package manager" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Updating repository information" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Invalid package information" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -462,22 +471,23 @@ msgstr "" "manager' package and include the files in /var/log/dist-upgrade/ in the bug " "report." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Asking for confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Upgrading" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Searching for obsolete software" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "System upgrade is complete." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -505,6 +515,7 @@ msgstr "Fetching file %li of %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Applying changes" @@ -522,6 +533,7 @@ msgstr "" "The upgrade has aborted. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -545,17 +557,18 @@ msgstr "A fatal error occured" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade has aborted.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade has " +"aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -600,6 +613,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -647,6 +661,7 @@ msgid "%li seconds" msgstr "%li seconds" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -668,6 +683,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -778,6 +794,7 @@ msgstr "Could not download the release notes" msgid "Please check your internet connection." msgstr "Please check your internet connection." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Could not run the upgrade tool" @@ -872,14 +889,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Important security updates" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Recommended updates" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Proposed updates" @@ -892,6 +912,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Other updates" @@ -913,6 +934,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -947,6 +969,7 @@ msgstr "" msgid "Version %s" msgstr "Version %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -971,6 +994,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Software index is broken" @@ -985,19 +1009,23 @@ msgstr "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "None" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1339,190 +1367,233 @@ msgstr "The window size" msgid "Configure the sources for installable software and updates" msgstr "Configure the sources for installable software and updates" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Community maintained" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietary drivers for devices" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Restricted software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM with Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Community maintained (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Community maintained Open Source software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Non-free drivers" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietary drivers for devices " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Restricted software (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM with Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported updates" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM with Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM with Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM with Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Security Updates" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-compatible Software with Non-Free Dependencies" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Non-DFSG-compatible Software" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1533,22 +1604,22 @@ msgstr "Non-DFSG-compatible Software" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "" -#~ "An unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "An unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." @@ -1562,11 +1633,11 @@ msgstr "Non-DFSG-compatible Software" #~ "synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." #~ msgstr "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." #~ msgid "Some software no longer officially supported" #~ msgstr "Some software no longer officially supported" @@ -1587,7 +1658,6 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "Restoring originale system state" #~ msgstr "Restoring original system state" -#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1597,37 +1667,30 @@ msgstr "Non-DFSG-compatible Software" #~ "not be found anymore.\n" #~ "This indicates a serious error, please report this as a bug." -#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "About %li days %li hours %li minutes remaining" -#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "About %li hours %li minutes remaining" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "About %li minutes remaining" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "About %li seconds remaining" #~ msgid "Download is complete" #~ msgstr "Download is complete" -#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Downloading file %li of %li at %s/s" -#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Downloading file %li of %li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "The upgrade aborts now. Please report this bug." -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1637,41 +1700,41 @@ msgstr "Non-DFSG-compatible Software" #~ "'%s'?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s package is going to be removed." #~ msgstr[1] "%s packages are going to be removed." -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s new package is going to be installed." #~ msgstr[1] "%s new packages are going to be installed." -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s package is going to be upgraded." #~ msgstr[1] "%s packages are going to be upgraded." -#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "You have to download a total of %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgstr "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgid "Could not find any upgrades" #~ msgstr "Could not find any upgrades" @@ -1691,17 +1754,15 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "Upgrading Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "" #~ "Verifying the upgrade failed. There may be a problem with the network or " #~ "with the server. " -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Downloading file %li of %li with %s/s" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Downloading file %li of %li with unknown speed" @@ -1720,12 +1781,12 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgid "The following updates will be skipped:" #~ msgstr "The following updates will be skipped:" @@ -1739,12 +1800,12 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "Show details" #~ msgstr "Show details" -#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "New version: %s (Size: %s)" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "Only one software management tool is allowed to run at the same time" +#~ msgstr "" +#~ "Only one software management tool is allowed to run at the same time" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." @@ -1754,14 +1815,16 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "You must check for updates manually\n" #~ "\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behaviour in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behaviour in \"System\" -> \"Administration\" -> \"Software " +#~ "Properties\"." #~ msgid "" #~ "Examining your system\n" @@ -1802,16 +1865,16 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" #~ "The channel information is out-of-date\n" #~ "\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "\n" #~ "You need a working internet connection to continue." @@ -1823,14 +1886,14 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "Components" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1851,19 +1914,19 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." #~ msgstr "" #~ "If automatic checking for updates is disabled, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " #~ "description" #~ msgstr "" -#~ "Stores the state of the expander that contains the list of changes and the " -#~ "description" +#~ "Stores the state of the expander that contains the list of changes and " +#~ "the description" #~ msgid "Configure software channels and internet updates" #~ msgstr "Configure software channels and internet updates" @@ -1881,4 +1944,4 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "Ubuntu 6.06 LTS Updates" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Backports" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS Backports" diff --git a/po/en_CA.po b/po/en_CA.po index 69c1edf6..bd5dd1c3 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" @@ -56,13 +56,15 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "_Install" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +127,7 @@ msgid "Error removing the key" msgstr "Error removing the key" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." @@ -163,6 +165,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -177,6 +180,7 @@ msgid "" msgstr "" "The key you selected could not be removed. Please report this as a bug." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -201,6 +205,7 @@ msgid "" msgstr "" "The key you selected could not be removed. Please report this as a bug. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -214,11 +219,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -228,15 +233,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -244,11 +249,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -260,11 +265,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -273,43 +279,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 #, fuzzy msgid "Error during update" msgstr "Error removing the key" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -317,15 +323,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -334,21 +341,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -357,49 +364,51 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Checking package manager" msgstr "Another package manager is running" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -408,15 +417,15 @@ msgid "" msgstr "" "The key you selected could not be removed. Please report this as a bug." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -426,23 +435,24 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 #, fuzzy msgid "Upgrading" msgstr "Upgrade finished" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -470,6 +480,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -486,6 +497,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -509,13 +521,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -555,6 +568,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy @@ -603,6 +617,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -622,6 +637,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -733,6 +749,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -831,15 +848,18 @@ msgstr "" "Failed to download changes. Please check if there is an active internet " "connection." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -855,6 +875,7 @@ msgstr "Ubuntu 5.04 Updates" msgid "Distribution updates" msgstr "Upgrade finished" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -878,13 +899,14 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Installing updates..." @@ -909,10 +931,11 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Version %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -935,6 +958,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -946,19 +970,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1223,8 +1251,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Enter the complete APT line of the repository that you want to " -"add\n" +"Enter the complete APT line of the repository that you want to add\n" "\n" "The APT line contains the type, location and content of a repository, for " "example \"deb http://ftp.debian.org sarge main\". You can find a " @@ -1312,210 +1340,255 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.04 Updates" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Community maintained (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Contributed software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Security Updates" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Community maintained (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 Security Updates" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Officially supported" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.04 Security Updates" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Officially supported" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.04 Updates" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian Stable Security Updates" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1606,8 +1679,8 @@ msgstr "" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "The repository information has changes. A backup copy of your sources.list " -#~ "is stored in %s.save. \n" +#~ "The repository information has changes. A backup copy of your sources." +#~ "list is stored in %s.save. \n" #~ "\n" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" @@ -1656,13 +1729,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgid "Repository" #~ msgstr "Repository" @@ -1682,16 +1755,16 @@ msgstr "" #~ msgstr "" #~ "Authentication keys\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes it " -#~ "possible to check verify the integrity of the software you download." +#~ "You can add and remove authentication keys in this dialogue. A key makes " +#~ "it possible to check verify the integrity of the software you download." #~ msgid "A_uthentication" #~ msgstr "A_uthentication" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " @@ -1716,11 +1789,11 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not change " -#~ "user-installed keys." +#~ "Restore the default keys shiped with the distribution. This will not " +#~ "change user-installed keys." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Set _maximum size for the package cache" @@ -1753,11 +1826,13 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Changes not found, the server may not be updated yet." @@ -1766,11 +1841,11 @@ msgstr "" #~ msgstr "The updates are being applied." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgid "Updating package list..." #~ msgstr "Updating package list..." @@ -1780,30 +1855,30 @@ msgstr "" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgid "Never show this message again" #~ msgstr "Never show this message again" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Initializing and getting list of updates..." @@ -1835,10 +1910,10 @@ msgstr "" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." \ No newline at end of file +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." diff --git a/po/en_GB.po b/po/en_GB.po index 5faf17e3..76123691 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Jeff Bailes \n" "Language-Team: \n" @@ -54,6 +54,7 @@ msgstr "After one month" msgid "After %s days" msgstr "After %s days" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s updates" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Main server" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -119,8 +122,7 @@ msgid "Error removing the key" msgstr "Error removing the key" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "The key you selected could not be removed. Please report this as a bug." @@ -163,6 +165,7 @@ msgstr "Can't upgrade required meta-packages" msgid "A essential package would have to be removed" msgstr "An essential package would have to be removed" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" @@ -179,6 +182,7 @@ msgstr "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" @@ -206,6 +210,7 @@ msgstr "" "It was impossible to install a required package. Please report this as a " "bug. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Can't guess meta-package" @@ -224,11 +229,11 @@ msgstr "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Failed to add the CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -243,15 +248,15 @@ msgstr "" "The error message was:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Reading cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Fetch data from the network for the upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -263,11 +268,11 @@ msgstr "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "No valid mirror found" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -286,11 +291,12 @@ msgstr "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Generate default sources?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -303,11 +309,11 @@ msgstr "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Repository information invalid" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -315,11 +321,11 @@ msgstr "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Third party sources disabled" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " @@ -329,11 +335,11 @@ msgstr "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Error during update" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -341,11 +347,11 @@ msgstr "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Not enough free disk space" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -356,15 +362,16 @@ msgstr "" "your Deleted Items folder and remove temporary packages of former " "installations using 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Could not install the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -378,11 +385,11 @@ msgstr "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Could not download the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -390,11 +397,11 @@ msgstr "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Support for some applications ended" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -408,23 +415,23 @@ msgstr "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Remove obsolete packages?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Skip This Step" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Remove" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Error during commit" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -432,26 +439,28 @@ msgstr "" "Some problem occurred during the clean-up. Please see the below message for " "more information. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Restoring original system state" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Fetching backport of '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Checking package manager" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Preparing the upgrade failed" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -461,15 +470,15 @@ msgstr "" "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Updating repository information" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Invalid package information" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -484,22 +493,23 @@ msgstr "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Asking for confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Upgrading" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Searching for obsolete software" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "System upgrade is complete." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -527,6 +537,7 @@ msgstr "Fetching file %li of %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Applying changes" @@ -544,6 +555,7 @@ msgstr "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -571,17 +583,18 @@ msgstr "A fatal error occured" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -626,6 +639,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -675,6 +689,7 @@ msgid "%li seconds" msgstr "%li seconds" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -697,6 +712,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -807,6 +823,7 @@ msgstr "Could not download the release notes" msgid "Please check your internet connection." msgstr "Please check your Internet connection." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Could not run the upgrade tool" @@ -907,14 +924,17 @@ msgstr "" "Failed to download the list of changes. \n" "Please check your Internet connection." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Important security updates" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Recommended updates" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Proposed updates" @@ -927,6 +947,7 @@ msgstr "Backports" msgid "Distribution updates" msgstr "Distribution updates" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Other updates" @@ -948,6 +969,7 @@ msgstr "_Untick All" msgid "_Check All" msgstr "_Tick All" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -982,6 +1004,7 @@ msgstr "From version %(old_version)s to %(new_version)s" msgid "Version %s" msgstr "Version %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1006,6 +1029,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "New distribution release '%s' is available" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Software index is broken" @@ -1020,19 +1044,23 @@ msgstr "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "None" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1398,185 +1426,229 @@ msgstr "The window size" msgid "Configure the sources for installable software and updates" msgstr "Configure the sources for installable software and updates" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Community maintained" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Proprietary drivers for devices" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Restricted software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom with Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Canonical supported Open Source software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Community maintained (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Community maintained Open Source software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Non-free drivers" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Proprietary drivers for devices " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Restricted software (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restricted by copyright or legal issues" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported updates" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom with Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom with Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "No longer officially supported" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Security Updates" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-compatible Software with Non-Free Dependencies" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Non-DFSG-compatible Software" @@ -1651,8 +1723,8 @@ msgstr "Non-DFSG-compatible Software" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "The repository information has changes. A backup copy of your sources.list " -#~ "is stored in %s.save. \n" +#~ "The repository information has changes. A backup copy of your sources." +#~ "list is stored in %s.save. \n" #~ "\n" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" @@ -1709,13 +1781,13 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "" #~ "Authentication keys\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes it " -#~ "possible to check verify the integrity of the software you download." +#~ "You can add and remove authentication keys in this dialogue. A key makes " +#~ "it possible to check verify the integrity of the software you download." #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " @@ -1747,11 +1819,11 @@ msgstr "Non-DFSG-compatible Software" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shiped with the distribution. This will not " +#~ "change user installed keys." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Set _maximum size for the package cache" @@ -1781,13 +1853,13 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgid "Cancel downloading the changelog" #~ msgstr "Cancel downloading the changelog" @@ -1863,7 +1935,8 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr[1] "You have selected all %s updated packages, total size %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "You have selected %s out of %s updated package, size %s" #~ msgstr[1] "You have selected %s out of %s updated packages, total size %s" @@ -1871,11 +1944,11 @@ msgstr "Non-DFSG-compatible Software" #~ msgstr "The updates are being applied." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgid "Updating package list..." #~ msgstr "Updating package list..." @@ -1888,19 +1961,19 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgid "Never show this message again" #~ msgstr "Never show this message again" @@ -1930,8 +2003,10 @@ msgstr "Non-DFSG-compatible Software" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." \ No newline at end of file +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." diff --git a/po/eo.po b/po/eo.po index 07d4b608..005b2ed4 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:05+0000\n" "Last-Translator: Ed Glez \n" "Language-Team: Esperanto \n" @@ -55,6 +55,7 @@ msgstr "Post unu monato" msgid "After %s days" msgstr "Post %s tagoj" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "Eraro dum forigo de sxlosilo" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "La sxlosilo elektita ne povis esti forigata. Bonvolu raporti cxi tion kiel " "cimon." @@ -160,6 +162,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -172,6 +175,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -196,6 +200,7 @@ msgstr "" "Estis neebla instalo de bezonata pakajxo. Bonvolu raporti cxi tion kiel " "cimo. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -209,11 +214,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -223,15 +228,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Legado de kasxmemoro" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -239,11 +244,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -255,11 +260,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -268,11 +274,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Deponeja informo ne valida" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 #, fuzzy msgid "" "Upgrading the repository information resulted in a invalid file. Please " @@ -281,22 +287,22 @@ msgstr "" "Promociado de deponeja informo igis nevalidan dosieron. Bonvolu raporti cxi " "tion kiel cimo." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Aliulaj fontoj malsxaltitaj" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Eraro dum gxisdatigo" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -304,11 +310,11 @@ msgstr "" "Problemo okazis dum la gxisdatigo. Kutime tio okazas pro retaj problemoj, " "bonvolu kontroli vian retan konekton kaj reprovi." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Ne estas suficxa libera loko en disko" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -316,15 +322,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Cxu vi volas komenci la promociadon?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Ne eblis instali la promociojn" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -333,21 +340,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -356,23 +363,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -380,41 +387,43 @@ msgstr "" "Kelkaj problemoj okazis dum la purigado. Bonvolu vidi suban mesagxon por " "pliaj informoj. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Kontrolado de pakajxa direktisto" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Gxisdatigo de deponeja informo" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Nevalida pakajxa informo" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -424,22 +433,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Petado de konfirmo" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Promociado" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Sercxado de ne plu uzata programaro" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Sistema promocio estas kompleta." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -467,6 +477,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplikado de sxangxoj" @@ -482,6 +493,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -505,13 +517,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -551,6 +564,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -598,6 +612,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -617,6 +632,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -727,6 +743,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "Bonvolu kontroli vian interretan konekton." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Ne eblis ruli la promocian ilon" @@ -818,14 +835,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -838,6 +858,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -859,6 +880,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -893,6 +915,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -914,6 +937,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Nova distribua eldono '%s' estas disponebla" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -925,19 +949,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1268,184 +1296,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiale subtenata" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/es.po b/po/es.po index 4505048c..ab764d9f 100644 --- a/po/es.po +++ b/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Ricardo Pérez López \n" "Language-Team: Spanish \n" @@ -57,6 +57,7 @@ msgstr "Después de un mes" msgid "After %s days" msgstr "Después de %s días" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,6 +65,7 @@ msgstr "Actualizaciones de %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,6 +75,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +127,7 @@ msgid "Error removing the key" msgstr "Hubo un error al quitar la clave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "No se puede quitar la clave que ha seleccionado. Por favor, avise de esto " "como un fallo." @@ -170,6 +172,7 @@ msgstr "No se han podido actualizar los meta-paquetes requeridos" msgid "A essential package would have to be removed" msgstr "Se ha tenido que desinstalar un paquete esencial" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "No se ha podido calcular la actualización" @@ -184,6 +187,7 @@ msgstr "" "Ha ocurrido un problema imposible de corregir cuando se calculaba la " "actualización. Por favor, informe de ésto como un fallo." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Error autenticando algunos paquetes" @@ -211,6 +215,7 @@ msgstr "" "No ha sido posible instalar un paquete requerido. Por favor, informe de ésto " "como un fallo. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "No se ha podido determinar el meta-paquete" @@ -229,11 +234,11 @@ msgstr "" " Por favor, instale uno de los paquetes anteriores usando Synaptic o apt-get " "antes de proceder." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Error al añadir el CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -248,15 +253,15 @@ msgstr "" "El mensaje de error fue:\n" "«%s»" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Leyendo caché" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "¿Obtener datos desde la red para la actualización?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -269,11 +274,11 @@ msgstr "" "Si dispone de una conexión rápida o barata, debería responder «Sí». Si la " "conexión es cara para usted, seleccione «No»." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "No se ha encontrado un servidor espejo válido" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -293,11 +298,12 @@ msgstr "" "«Sí», se actualizarán todas las entradas «%s» a «%s».\n" "Si selecciona «No» se cancelará la actualización." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "¿Generar orígenes predeterminados?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -311,11 +317,11 @@ msgstr "" "¿Deben añadirse entradas predeterminadas para «%s»? Si selecciona «No» se " "cancelará la actualización." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Información de repositorio no válida" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -323,25 +329,25 @@ msgstr "" "La actualización de la información del repositorio generó un archivo " "incorrecto. Por favor, informe de ésto como un error." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Orígenes de terceros desactivados" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"Se han desactivado algunas entradas de terceros proveedores en su " -"«sources.list». Puede volver a activarlas tras la actualización con la " -"herramienta «Propiedades del software», o con Synaptic." +"Se han desactivado algunas entradas de terceros proveedores en su «sources." +"list». Puede volver a activarlas tras la actualización con la herramienta " +"«Propiedades del software», o con Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Error durante la actualización" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -350,11 +356,11 @@ msgstr "" "tipo de problema en la red, por lo que le recomendamos que compruebe su " "conexión de red y vuelva a intentarlo." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "No hay espacio suficiente en el disco" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -365,15 +371,16 @@ msgstr "" "espacio en disco en %s. Vacíe su papelera, y elimine los paquetes temporales " "de instalaciones anteriores tecleando «sudo apt-get clean» en una terminal." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "¿Desea comenzar la actualización?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "No se han podido instalar las actualizaciones" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -389,11 +396,11 @@ msgstr "" "incluya en el informe de error los archivos contenidos en /var/log/dist-" "upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "No se han podido descargar las actualizaciones" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -401,11 +408,11 @@ msgstr "" "La actualización se interrumpirá ahora. Por favor, compruebe su conexión a " "Internet (o su soporte de instalación) y vuelva a intentarlo. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Algunas aplicaciones han dejado de tener soporte" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -419,23 +426,23 @@ msgstr "" "Si no tiene habilitado el software mantenido por la comunidad («universe»), " "se le sugerirá que desinstale estos paquetes en el siguiente paso." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "¿Desinstalar los paquetes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Saltar este paso" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Quitar" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Error durante la confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -443,26 +450,28 @@ msgstr "" "Ha ocurrido algún problema durante el limpiado. por favor, vea el mensaje " "inferior para más información. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Restaurando el estado original del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Descargando «backport» de '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Comprobando gestor de paquetes" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Falló la preparación de la actualización" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -473,15 +482,15 @@ msgstr "" "«update-manager», e incluya en el informe los archivos contenidos en el " "directorio /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Actualizando la información del repositorio" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Información de paquete no válida" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -496,22 +505,23 @@ msgstr "" "el paquete «update-manager» e incluya en el informe de error los archivos " "contenidos en /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Solicitando confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Actualizando" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Buscando paquetes obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "La actualización del sistema se ha completado." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -539,6 +549,7 @@ msgstr "Descargando archivo %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando los cambios" @@ -557,6 +568,7 @@ msgstr "" "fallo en el paquete «update-manager» e incluya en el informe de error los " "archivos contenidos en /var/log/dist-upgrade/." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -584,18 +596,19 @@ msgstr "Ha ocurrido un error fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Por favor, informe de esto como un fallo e incluya los archivos " -"/var/log/dist-upgrade.log y /var/log/dist-upgrade-apt.log en su informe. La " +"Por favor, informe de esto como un fallo e incluya los archivos /var/log/" +"dist-upgrade.log y /var/log/dist-upgrade-apt.log en su informe. La " "actualización se cancelará ahora.\n" -"Su archivo «sources.list» original se ha guardado en " -"/etc/apt/sources.list.distUpgrade." +"Su archivo «sources.list» original se ha guardado en /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -642,6 +655,7 @@ msgstr "" "Para prevenir la pérdida de datos, cierre todas las aplicaciones y " "documentos." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -691,6 +705,7 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -714,6 +729,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -733,8 +749,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" -"Reinicie el sistema para completar la actualización" +msgstr "Reinicie el sistema para completar la actualización" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -825,6 +840,7 @@ msgstr "No se han podido descargar las notas de publicación" msgid "Please check your internet connection." msgstr "Por favor, compruebe su conexión a Internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "No se ha podido ejecutar la herramienta de actualización" @@ -930,14 +946,17 @@ msgstr "" "Hubo un fallo al descargar la lista de cambios. \n" "Por favor, compruebe su conexión a Internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizaciones importantes de seguridad" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizaciones recomendadas" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Actualizaciones propuestas" @@ -950,6 +969,7 @@ msgstr "«Backports»" msgid "Distribution updates" msgstr "Actualizaciones de la distribución" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Otras actualizaciones" @@ -971,6 +991,7 @@ msgstr "_Desmarcar todo" msgid "_Check All" msgstr "_Marcar todo" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1005,6 +1026,7 @@ msgstr "De la versión %(old_version)s a la %(new_version)s" msgid "Version %s" msgstr "Versión %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1021,14 +1043,15 @@ msgid "" "information on upgrading." msgstr "" "No podrá obtener nuevas correcciones de seguridad ni actualizaciones " -"críticas. Actualícese a una versión posterior de Ubuntu Linux. Visite " -"http://www.ubuntu.com para más información sobre la actualización." +"críticas. Actualícese a una versión posterior de Ubuntu Linux. Visite http://" +"www.ubuntu.com para más información sobre la actualización." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Está disponible la nueva versión «%s» de la distribución" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "El índice de software está dañado" @@ -1043,19 +1066,23 @@ msgstr "" "gestor de paquetes «Synaptic», o ejecute «sudo apt-get install -f» en una " "terminal, para corregir este problema primero." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ninguno" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1080,8 +1107,7 @@ msgstr "Mantenga su sistema actualizado" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "" -"No se han podido instalar todas las actualizaciones" +msgstr "No se han podido instalar todas las actualizaciones" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" @@ -1209,8 +1235,8 @@ msgstr "" "enviará de forma anónima al proyecto Ubuntu todas las semanas.\n" "\n" "Los resultados se usarán para mejorar el soporte de las aplicaciones " -"populares y para ordenar las aplicaciones en los resultados de las " -"búsquedas." +"populares y para ordenar las aplicaciones en los resultados de las búsquedas." +"" #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" @@ -1298,8 +1324,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"La información acerca del software disponible está " -"obsoleta\n" +"La información acerca del software disponible está obsoleta\n" "\n" "Para poder instalar software y actualizaciones a partir de los orígenes que " "se hayan añadido o cambiado recientemente, es necesario recargar la " @@ -1428,185 +1454,229 @@ msgid "Configure the sources for installable software and updates" msgstr "" "Configura los orígenes para el software instalable y las actualizaciones" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 «Edgy Eft»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantenido por la comunidad" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Controladores privativos para dispositivos" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software restringido" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM con Ubuntu 6.10 «Edgy Eft»" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS «Dapper Drake»" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Software libre soportado por Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantenido por la comunidad (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software libre mantenido por la comunidad" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Controladores no libres" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Controladores privativos para dispositivos " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software restringido (multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restringido por copyright o cuestiones legales" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM con Ubuntu 6.06 LTS «Dapper Drake»" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Actualizaciones «backport»" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 «Breezy Badger»" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizaciones de seguridad de Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualizaciones de Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "«Backports» de Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 «Hoary Hedgehog»" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM con Ubuntu 5.04 «Hoary Hedgehog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Soportado oficialmente" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizaciones de seguridad de Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizaciones de Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "«Backports» de Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 «Warty Warthog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantenido por la comunidad (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Software no libre (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM con Ubuntu 4.10 «Warty Warthog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Sin más soporte oficial" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restringido" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Actualizaciones de seguridad" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizaciones de Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "«Backports» de Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 «Sarge»" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualizaciones de seguridad de Debian 3.1 «Sarge»" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian «Etch» (pruebas)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian «Sid» (inestable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatible con la DFSG con dependencias no libres" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software no compatible con la DFSG" @@ -1614,7 +1684,6 @@ msgstr "Software no compatible con la DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Software restringido por copyright o cuestiones legales" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Descargando archivo %li de %li a velocidad desconocida" @@ -1663,18 +1732,17 @@ msgstr "Software no compatible con la DFSG" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Algunas actualizaciones requieren la desinstalación de software. Utilice la " -#~ "función «Marcar todas las actualizaciones» del gestor de paquetes " +#~ "Algunas actualizaciones requieren la desinstalación de software. Utilice " +#~ "la función «Marcar todas las actualizaciones» del gestor de paquetes " #~ "«Synaptic», o ejecute «sudo apt-get dist-upgrade» en una terminal, para " #~ "actualizar completamente su sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "Se pasarán por alto las siguientes actualizaciones:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Faltan %li segundos" @@ -1697,13 +1765,14 @@ msgstr "Software no compatible con la DFSG" #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "" -#~ "Sólo se permite la ejecución simultánea de una única herramienta de gestión " -#~ "de software" +#~ "Sólo se permite la ejecución simultánea de una única herramienta de " +#~ "gestión de software" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Por favor, cierre primero la otra aplicación (ej: «aptitude» o «Synaptic»)." +#~ "Por favor, cierre primero la otra aplicación (ej: «aptitude» o " +#~ "«Synaptic»)." #~ msgid "Channels" #~ msgstr "Canales" @@ -1753,8 +1822,8 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "«Backports» de Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Cuando se exploraba la información de su repositorio, se encontró una " #~ "entrada no válida para la actualización.\n" @@ -1783,7 +1852,8 @@ msgstr "Software no compatible con la DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Descargando informe de cambios\n" +#~ "Descargando informe de cambios\n" #~ "\n" #~ "Se necesita descargar los cambios del servidor central" @@ -1815,13 +1885,13 @@ msgstr "Software no compatible con la DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Actualizaciones disponibles\n" #~ "\n" -#~ "El gestor de actualizaciones encontró los siguientes paquetes actualizables. " -#~ "Puede actualizarlos usando el botón Instalar." +#~ "El gestor de actualizaciones encontró los siguientes paquetes " +#~ "actualizables. Puede actualizarlos usando el botón Instalar." #~ msgid "Repository" #~ msgstr "Repositorio" @@ -1841,19 +1911,20 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "" #~ "Claves de autenticación\n" #~ "\n" -#~ "Puede añadir y quitar claves de autenticación desde este diálogo. Una clave " -#~ "hace posible verificar la integridad del software que descarga." +#~ "Puede añadir y quitar claves de autenticación desde este diálogo. Una " +#~ "clave hace posible verificar la integridad del software que descarga." #~ msgid "A_uthentication" #~ msgstr "A_utenticación" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Añadir un nuevo archivo de clave al anillo de confianza. Asegúrese de que " -#~ "obtuvo la clave a través de un canal seguro y que confía en el propietario. " +#~ "obtuvo la clave a través de un canal seguro y que confía en el " +#~ "propietario. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "Limpiar _temporalmente los archivos de paquetes" @@ -1875,8 +1946,8 @@ msgstr "Software no compatible con la DFSG" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Recupera las claves entregadas originalmente con la distribución. Esto no " #~ "cambia las claves instaladas por el usuario." @@ -1904,8 +1975,8 @@ msgstr "Software no compatible con la DFSG" #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" #~ "Ésto significa que no se satisfacen algunas dependencias de los paquetes " -#~ "instalados. Utilice la \"Actualización inteligente\" de synaptic o \"apt-get " -#~ "dist-upgrade\" para arreglar la situación." +#~ "instalados. Utilice la \"Actualización inteligente\" de synaptic o \"apt-" +#~ "get dist-upgrade\" para arreglar la situación." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "No es posible actualizar todos los paquetes." @@ -1913,12 +1984,13 @@ msgstr "Software no compatible con la DFSG" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" -#~ "Ésto significa que además de la actualización de los paquetes será necesaria " -#~ "alguna acción adicional (como instalar o quitar paquetes). Utilice la " -#~ "\"Actualización inteligente\" de synaptic o \"apt-get dist-upgrade\" para " -#~ "arreglar la situación." +#~ "Ésto significa que además de la actualización de los paquetes será " +#~ "necesaria alguna acción adicional (como instalar o quitar paquetes). " +#~ "Utilice la \"Actualización inteligente\" de synaptic o \"apt-get dist-" +#~ "upgrade\" para arreglar la situación." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" @@ -1929,11 +2001,11 @@ msgstr "Software no compatible con la DFSG" #~ msgstr "Se están aplicando las actualizaciones." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo tiempo. " -#~ "Cierre la otra aplicación primero." +#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo " +#~ "tiempo. Cierre la otra aplicación primero." #~ msgid "Updating package list..." #~ msgstr "Actualizando lista de paquetes..." @@ -1943,35 +2015,34 @@ msgstr "Software no compatible con la DFSG" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Actualícese a una nueva versión de Ubuntu Linux. La versión que está usando " -#~ "no obtendrá más actualizaciones de seguridad ni otras actualizaciones " -#~ "críticas. Visite http://www.ubuntulinux.org para información acerca de cómo " -#~ "actualizar." +#~ "Actualícese a una nueva versión de Ubuntu Linux. La versión que está " +#~ "usando no obtendrá más actualizaciones de seguridad ni otras " +#~ "actualizaciones críticas. Visite http://www.ubuntulinux.org para " +#~ "información acerca de cómo actualizar." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Hay una nueva versión de Ubuntu disponible" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Está disponible una nueva versión con el nombre '%s'. Visite " -#~ "http://www.ubuntulinux.org/ para recibir instrucciones acerca de cómo " -#~ "actualizar." +#~ "Está disponible una nueva versión con el nombre '%s'. Visite http://www." +#~ "ubuntulinux.org/ para recibir instrucciones acerca de cómo actualizar." #~ msgid "Never show this message again" #~ msgstr "No mostrar más este mensaje" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo tiempo. " -#~ "Cierre la otra aplicación primero." +#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo " +#~ "tiempo. Cierre la otra aplicación primero." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Inicializando y obteniendo lista de actualizaciones..." @@ -2006,10 +2077,10 @@ msgstr "Software no compatible con la DFSG" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Actualizaciones disponibles\n" #~ "\n" -#~ "El gestor de actualizaciones encontró los siguientes paquetes actualizables. " -#~ "Puede actualizarlos usando el botón Instalar." \ No newline at end of file +#~ "El gestor de actualizaciones encontró los siguientes paquetes " +#~ "actualizables. Puede actualizarlos usando el botón Instalar." diff --git a/po/et.po b/po/et.po index b7acdb10..a4425b1a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: margus723 \n" "Language-Team: Estonian \n" @@ -55,6 +55,7 @@ msgstr "Peale ühte kuud" msgid "After %s days" msgstr "Peale %s päeva" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "Võtme eemaldamisel tekkis viga" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Valitud võtit pole võimalik eemaldada" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -150,8 +152,8 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Sinu süsteem sisaldab katkiseid pakette mida pole võimalik antud tarkvaraga " -"parandada. Palun paranda need kasutades rakendust \"synaptic\" või \"apt-" -"get\" enne jätkamist." +"parandada. Palun paranda need kasutades rakendust \"synaptic\" või \"apt-get" +"\" enne jätkamist." #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -161,6 +163,7 @@ msgstr "Ei suuda uuendada nõutud metapakette" msgid "A essential package would have to be removed" msgstr "Hädavajalik pakett tuleks eemaldada" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Ei suuda uuendusi ette valmistada" @@ -173,6 +176,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Mõnede pakettide tuvastamisel tekkis viga." @@ -198,6 +202,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -211,11 +216,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -225,15 +230,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Vahemälu lugemine" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -241,11 +246,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Ühtegi sobivat peeglit ei leitud" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +262,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,32 +276,32 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Uuendamise ajal ilmnes viga." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -303,11 +309,11 @@ msgstr "" "Uuendamise ajal ilmnes viga. See on tavaliselt mingit sorti võrgu probleem, " "palun kontrolli oma võrguühendust ning proovi hiljem uuesti." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Kõvakettal pole piisavalt vaba ruumi." -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +321,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +339,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Ei suuda uuendusi alla laadida" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,63 +362,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Eemalda iganenud paketid?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Jäta see samm vahele" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Eemalda" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -421,22 +430,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Kinnitamise küsimine" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -464,6 +474,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -479,6 +490,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -502,13 +514,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -548,6 +561,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -595,6 +609,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -614,6 +629,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -720,6 +736,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -809,14 +826,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -829,6 +849,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -850,6 +871,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -884,6 +906,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -905,6 +928,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -916,19 +940,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1254,184 +1282,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/eu.po b/po/eu.po index 9d5bbe5f..112e33c1 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: Xabi Ezpeleta \n" "Language-Team: Basque \n" @@ -57,6 +57,7 @@ msgstr "HIlabete bat eta gero" msgid "After %s days" msgstr "%s egun eta gero" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,6 +65,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,6 +75,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -117,8 +120,7 @@ msgstr "Errore bat suertatu da aukeratutako fitxategiak inportatzerakoan" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "" -"Aukeratutako fitxategia ez da GPG giltza bat edo egoera txarrean dago." +msgstr "Aukeratutako fitxategia ez da GPG giltza bat edo egoera txarrean dago." #: ../SoftwareProperties/SoftwareProperties.py:992 #, fuzzy @@ -127,8 +129,7 @@ msgstr "Errorea giltza ezabatzerakoan" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Aukeratutako giltza ezin izan da ezabatu. Mesedez adierazi akatsa." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -173,6 +174,7 @@ msgstr "Ezin izan dira berritu beharrezko meta-paketeak" msgid "A essential package would have to be removed" msgstr "Ezinbesteko pakete bat ezabatu beharko da" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -185,6 +187,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -209,6 +212,7 @@ msgstr "" "Ezin izan da beharrezko pakete bat instalatzea. Mesedez akats honen berri " "eman. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -222,11 +226,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -236,15 +240,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -252,11 +256,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -268,11 +272,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -281,42 +286,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -324,15 +329,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,21 +347,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -364,63 +370,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -430,22 +438,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -473,6 +482,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -488,6 +498,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -511,13 +522,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -557,6 +569,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -604,6 +617,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -623,6 +637,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -729,6 +744,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -818,14 +834,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -838,6 +857,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -859,6 +879,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -893,6 +914,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -914,6 +936,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -925,19 +948,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1263,184 +1290,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/fa.po b/po/fa.po index 6d8f353d..a406408b 100644 --- a/po/fa.po +++ b/po/fa.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" -"Last-Translator: Pedram Ganjeh Hadidi \n" +"Last-Translator: Pedram Ganjeh Hadidi \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,6 +56,7 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -159,6 +161,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -171,6 +174,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -193,6 +197,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -206,11 +211,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -220,15 +225,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -236,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -252,11 +257,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -265,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -308,15 +314,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -325,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -348,63 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -414,22 +423,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -457,6 +467,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -472,6 +483,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -495,13 +507,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -538,6 +551,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -585,6 +599,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -604,6 +619,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -710,6 +726,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -799,14 +816,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -819,6 +839,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -840,6 +861,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -873,6 +895,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -894,6 +917,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -905,19 +929,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1243,184 +1271,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/fi.po b/po/fi.po index a79069bc..30341a20 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" @@ -54,6 +54,7 @@ msgstr "Kuukauden jälkeen" msgid "After %s days" msgstr "%s päivän jälkeen" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s-päivitykset" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Pääpalvelin" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Virhe poistettaessa avainta" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Valitsemaasi avainta ei voitu poistaa. Ole hyvä ja luo tästä virheilmoitus." @@ -166,6 +168,7 @@ msgstr "Tarvittavia metapaketteja ei voi päivittää" msgid "A essential package would have to be removed" msgstr "Välttämätön paketti jouduttaisiin poistamaan" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tarvittavia päivitykseen liittyviä tarkistuksia ei voitu tehdä" @@ -183,6 +186,7 @@ msgstr "" "Ilmoita tästä ohjelmavirheestä paketille \"update-manager\" ja sisällytä " "tiedostot hakemistosta /var/log/dist-upgrade raporttiin." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Joitain paketteja varmennettaessa tapahtui virhe" @@ -209,6 +213,7 @@ msgid "" msgstr "" "Vaadittua pakettia ei voitu asentaa. Ole hyvä ja luo tästä virheraportti. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Ei voitu arvata metapakettia" @@ -227,11 +232,11 @@ msgstr "" " Asenna jokin luetelluista paketeista synapticilla tai apt-get-ohjelmalla " "ennen jatkamista." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Ei voitu lisätä CD-levyä" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -246,15 +251,15 @@ msgstr "" "Virheilmoitus oli:\n" "\"%s\"" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Luetaan välimuistia" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Hae tiedot verkosta päivitystä varten?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -266,11 +271,11 @@ msgstr "" "Jos sinulla on nopea tai vähän kustannuksia aiheuttava verkkoyhteys, valitse " "\"Kyllä\". Jos verkon käyttö on kallista, valitse \"Ei\"." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Sopivaa peilipalvelinta ei löytynyt" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -289,11 +294,12 @@ msgstr "" "\"Kyllä'\", kaikki \"%s\"-merkinnät muutetaan \"%s\"-merkinnöiksi.\n" "Jos valitset \"Ei\", päivitys keskeytyy." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Lisätäänkö oletusohjelmalähteet?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -306,11 +312,11 @@ msgstr "" "Otetaanko käyttöön \"%s\":n oletuslähteet? Jos valitset \"Ei\", päivitys " "keskeytyy." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Virhe ohjelmavarastotiedoissa" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -318,11 +324,11 @@ msgstr "" "Ohjelmavarastotietojen päivittäminen johti epäkelpoon tiedostoon. Tee " "asiasta virheraportti." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Kolmannen osapuolen ohjelmalähteet poissa käytöstä" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " @@ -332,11 +338,11 @@ msgstr "" "käytöstä. Voit ottaa ne uudelleen käyttöön päivityksen jälkeen " "\"Ohjelmalähteet\"-työkalulla tai Synaptic-ohjelmalla." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Virhe päivitettäessä" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -344,11 +350,11 @@ msgstr "" "Päivitettäessä tapahtui virhe. Tämä on yleensä jonkinlainen verkko-ongelma. " "Tarkista verkkoyhteytesi toiminta ja yritä uudelleen." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Levytilaa ei ole riittävästi" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +365,16 @@ msgstr "" "roskakori ja poista väliaikaistiedostot aiemmista asennuksista käyttämällä " "komentoa 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Haluatko aloittaa päivityksen?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Päivityksiä ei voitu asentaa" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -381,11 +388,11 @@ msgstr "" "Tee tästä virheraportti paketille \"update-manager\" ja sisällytä tiedostot " "hakemistosta /var/log/dist-upgrade/ raporttiin." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Päivityksiä ei voitu noutaa" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -393,11 +400,11 @@ msgstr "" "Päivitys keskeytyy. Tarkista Internet-yhteytesi tai asennuslähteesi (esim. " "CD) toiminta ja yritä uudelleen. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Tuki joillekin sovelluksille on loppunut" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -412,49 +419,51 @@ msgstr "" "ohjelmalähdettä (\"universe\"), näitä paketteja suositellaan poistettaviksi " "seuraavassa kohdassa." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Poistetaanko vanhentuneet paketit?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Ohita tämä kohta" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Poista" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Virhe suoritettaessa" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" "Siistimisvaiheessa ilmeni ongelma. Lisätietoja allaolevassa viestissä. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Palautetaan alkuperäistä järjestelmän tilaa" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Noudetaan paketin \"%s\" takaisinsovitusta" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Tarkistetaan pakettienhallintaa" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Päivityksen valmistelu epäonnistui" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -464,15 +473,15 @@ msgstr "" "virheraportilla \"update-manager\"-paketille, sisällyttäen mukaan tiedostot " "hakemistossa /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Päivitetään ohjelmavarastotietoja" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Pakettitiedot viallisia" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -487,22 +496,23 @@ msgstr "" "\"update-manager\" ja sisällytä tiedostot hakemistosta /var/log/dist-" "upgrade/ raporttiin." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Pyydetään vahvistusta" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Päivitetään" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Etsitään vanhentuneita ohjelmistoja" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Järjestelmän päivitys on valmis." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -530,6 +540,7 @@ msgstr "Noudetaan tiedostoa %li/%li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Muutoksia toteutetaan" @@ -547,6 +558,7 @@ msgstr "" "Päivitys keskeytyy. Tee tästä virheraportti paketille \"update-manager\" ja " "sisällytä raporttiin tiedostot hakemistosta /var/log/dist-upgrade/." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -574,17 +586,18 @@ msgstr "Tapahtui vakava virhe" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Ilmoita tästä virheraportilla ja sisällytä siihen tiedostot /var/log/dist-" "upgrade/main.log ja /var/log/dist-upgrade/apt.log. Päivitys keskeytyy nyt.\n" -"Alkuperäinen sources.list tallennettiin nimellä " -"/etc/apt/sources.list.distUpgrade." +"Alkuperäinen sources.list tallennettiin nimellä /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -630,6 +643,7 @@ msgid "To prevent data loss close all open applications and documents." msgstr "" "Jottei tietoja häviäisi, sulje kaikki avoinna olevat ohjelmat ja dokumentit." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -677,13 +691,13 @@ msgid "%li seconds" msgstr "%li sekuntia" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" -msgstr "" -"Nouto kestää noin %s 1Mbit-DSL-yhteydellä ja noin %s 56kbit-modeemilla" +msgstr "Nouto kestää noin %s 1Mbit-DSL-yhteydellä ja noin %s 56kbit-modeemilla" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -698,6 +712,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -718,8 +733,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Käynnistä järjestelmä uudelleen saattaaksesi päivityksen " -"loppuun" +"Käynnistä järjestelmä uudelleen saattaaksesi päivityksen loppuun" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -810,6 +825,7 @@ msgstr "Ei voitu noutaa julkaisutietoja" msgid "Please check your internet connection." msgstr "Tarkista Internet-yhteytesi toimivuus." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Päivitystyökalua ei voitu suorittaa" @@ -912,14 +928,17 @@ msgstr "" "Muutosluettelon nouto epäonnistui. \n" "Tarkista Internet-yhteytesi toimivuus." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Tärkeät turvallisuuspäivitykset" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Suositellut päivitykset" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Ehdotetut päivitykset" @@ -932,6 +951,7 @@ msgstr "Takaisinsovitukset" msgid "Distribution updates" msgstr "Jakelupäivitykset" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Muut päivitykset" @@ -953,6 +973,7 @@ msgstr "Poista _valinnat" msgid "_Check All" msgstr "_Tarkista kaikki" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -987,6 +1008,7 @@ msgstr "Versiosta %(old_version)s versioon %(new_version)s" msgid "Version %s" msgstr "Versio %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1011,6 +1033,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Uusi jakelujulkaisu \"%s\" on saatavilla" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Ohjelmaluettelo on rikkinäinen" @@ -1025,19 +1048,23 @@ msgstr "" "Synaptic-pakettienhallintaa tai komentoa \"sudo apt-get install -f\" " "päätteessä." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ei mitään" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 kB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f kB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1062,8 +1089,8 @@ msgstr "Pidä järjestelmäsi ajan tasalla" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Kaikkia päivityksiä ei voi asentaa \n" -" \n" +"Kaikkia päivityksiä ei voi asentaa\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1315,8 +1342,8 @@ msgid "" msgstr "" "Kirjoita haluamasi ohjelmalähteen koko APT-rivi\n" "\n" -"APT-rivi sisältää kanavan tyypin, sijainnin ja sisällön, esimerkiksi " -"\"deb http://ftp.debian.org sarge main\"." +"APT-rivi sisältää kanavan tyypin, sijainnin ja sisällön, esimerkiksi " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1403,186 +1430,230 @@ msgstr "Ikkunan koko" msgid "Configure the sources for installable software and updates" msgstr "Muokkaa asennettavien ohjelmien ja päivitysten lähteitä" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Yhteisön ylläpitämät" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Suljetut laiteajurit" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Rajoitetut ohjelmistot" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\" -CD-levy" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Canonicalin tukemat avoimen lähdekoodin ohjelmat" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Yhteisön ylläpitämät (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Yhteisön ylläpitämät avoimen lähdekoodin ohjelmistot" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Ei-vapaat ajurit" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Suljetut laiteajurit " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Rajoitetut ohjelmat (multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Tekijänoikeus- tai lakiasioilla rajoitetut ohjelmistot" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\" -CD-levy" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Takaisinsovitetut päivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\" -CD-levy" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 turvallisuuspäivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 päivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 takaisinsovitukset" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\" -CD-levy" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Virallisesti tuettu" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 turvallisuuspäivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 päivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 takaisinsovitukset" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Yhteisön ylläpitämät (universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ei-vapaat ohjelmat (multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\" -CD-levy" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Ei enää virallisesti tuettu" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Rajoitettu tekijänoikeus" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 turvallisuuspäivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 päivitykset" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 takaisinsovitukset" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" turvallisuuspäivitykset" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testattava)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (epävakaa)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" "DFSG-yhteensopivat ohjelmat joilla riippuvuuksia epävapaisiin ohjelmiin" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG-epäyhteensopivat ohjelmat" @@ -1590,7 +1661,6 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Tekijänoikeus- tai lakiasioilla käyttörajoitetut ohjelmistot" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Noudetaan tiedostoa %li/%li tuntemattomalla nopeudella" @@ -1612,8 +1682,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Päivitetään jakeluun Ubuntu " -#~ "6.10" +#~ "Päivitetään jakeluun Ubuntu 6.10" #~ msgid "Important security updates of Ubuntu" #~ msgstr "Ubuntun tärkeät turvallisuuspäivitykset" @@ -1632,16 +1702,16 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "" #~ "Tarkistetaan järjestelmää\n" #~ "\n" -#~ "Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat uusia " -#~ "ominaisuuksia." +#~ "Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat " +#~ "uusia ominaisuuksia." #~ msgid "Oficially supported" #~ msgstr "Virallisesti tuettu" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Jotkut päivitykset vaativat muiden ohjelmien poistoa. Käytä \"Merkitse " #~ "kaikki päivitykset\"-toimintoa Synaptic-pakettienhallintaojhelmassa, tai " @@ -1650,7 +1720,6 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "The following updates will be skipped:" #~ msgstr "Seuraavat päivitykset ohitetaan:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Noin %li sekuntia jäljellä" @@ -1730,8 +1799,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Ubuntu 6.06 LTS takaisinsovitukset" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Luettaessa varastotietoja ei löydetty kelvollisia ohjelmavarastoja " #~ "päivittämistä varten.\n" @@ -1773,11 +1842,12 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Tiedosto '%s' ei sisällä sopivia ohjelmistokanavia." #~ msgid "" -#~ "You need to manually reload the latest information about " -#~ "updates\n" +#~ "You need to manually reload the latest information about updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "Sinun pitää ladata päivitystiedot uudelleen käsin\n" #~ "\n" @@ -1826,19 +1896,20 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "" #~ "Kirjoita haluamasi varaston koko APT-rivi\n" #~ "\n" -#~ "APT-rivi sisältää varaston tyypin, sijainnin ja sisällön, esimerkiksi " -#~ "\"deb http://ftp.debian.org sarge main\". Lisätietoja aiheesta löydät " +#~ "APT-rivi sisältää varaston tyypin, sijainnin ja sisällön, esimerkiksi " +#~ "\"deb http://ftp.debian.org sarge main\". Lisätietoja aiheesta löydät " #~ "dokumentaatiosta." #~ msgid "A_uthentication" #~ msgstr "Varmenn_us" #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että vastaanotit " -#~ "avaimen luotettavaa kanavaa pitkin, ja että luotat sen omistajaan. " +#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että " +#~ "vastaanotit avaimen luotettavaa kanavaa pitkin, ja että luotat sen " +#~ "omistajaan. " #~ msgid "Automatically check for software _updates." #~ msgstr "Tarkista ohjelma_päivitykset automaattisesti." @@ -1862,8 +1933,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Maksimikoko megatavuissa:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Palauta jakelun mukana toimitetut oletusavaimet. Tämä ei muuta tai poista " #~ "itse asennettuja avaimia." @@ -1892,8 +1963,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Saatavilla olevat päivitykset\n" #~ "\n" @@ -1906,17 +1977,17 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Reload the package information from the server. \n" #~ "\n" -#~ "If you have a permanent internet connection this is done automatically. If " -#~ "you are behind an internet connection that needs to be started by hand (e.g. " -#~ "a modem) you should use this button so that update-manager knows about new " -#~ "updates." +#~ "If you have a permanent internet connection this is done automatically. " +#~ "If you are behind an internet connection that needs to be started by hand " +#~ "(e.g. a modem) you should use this button so that update-manager knows " +#~ "about new updates." #~ msgstr "" #~ "Lataa pakettitiedot palvelimelta uudelleen. \n" #~ "\n" #~ "Jos sinulla on kiinteä Internet-yhteys, tämä tehdään automaattisesti. Jos " #~ "olet käsin muodostettavan Internet-yhteyden (esim. modeemi) takana, sinun " -#~ "täytyy käyttää tätä valintaa jotta päivitystenhallinta saisi tiedon uusista " -#~ "päivityksistä." +#~ "täytyy käyttää tätä valintaa jotta päivitystenhallinta saisi tiedon " +#~ "uusista päivityksistä." #~ msgid "Binary" #~ msgstr "Binääri" @@ -1942,8 +2013,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "Jotkut asennettujen pakettien riippuvuuksista ovat siis täyttämättä. Käytä " -#~ "\"Synaptic\"- tai \"apt-get\"-ohjelmia korjataksesi ongelman." +#~ "Jotkut asennettujen pakettien riippuvuuksista ovat siis täyttämättä. " +#~ "Käytä \"Synaptic\"- tai \"apt-get\"-ohjelmia korjataksesi ongelman." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "Kaikkia paketteja ei voida päivittää." @@ -1951,12 +2022,13 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" -#~ "Pakettien päivittämisen lisäksi tarvitaan siis joitain muita toimenpiteitä " -#~ "(kuten pakettien asentamista tai poistamista). Käytä Synaptic-ohjelman " -#~ "\"Smart Upgrade\"-toimintoa tai \"apt-get dist-upgrade\"-komentoa " -#~ "korjataksesi ongelman." +#~ "Pakettien päivittämisen lisäksi tarvitaan siis joitain muita " +#~ "toimenpiteitä (kuten pakettien asentamista tai poistamista). Käytä " +#~ "Synaptic-ohjelman \"Smart Upgrade\"-toimintoa tai \"apt-get dist-upgrade" +#~ "\"-komentoa korjataksesi ongelman." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Muutoksia ei löytynyt, palvelinta ei ole ehkä vielä päivitetty." @@ -1965,8 +2037,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Päivityksiä asennetaan." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Voit hallita paketteja vain yhdellä ohjelmalla kerrallaan. Sulje toinen " #~ "ohjelma ensin." @@ -1979,19 +2051,20 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Päivitä uudempaan versioon Ubuntu Linuxista. Käyttämällesi versiolle ei enää " -#~ "ole tulossa turvallisuuspäivityksiä tai muita kriittisiä päivityksiä. " -#~ "Tietoja päivittämisestä löydät sivulta http://www.ubuntulinux.org." +#~ "Päivitä uudempaan versioon Ubuntu Linuxista. Käyttämällesi versiolle ei " +#~ "enää ole tulossa turvallisuuspäivityksiä tai muita kriittisiä " +#~ "päivityksiä. Tietoja päivittämisestä löydät sivulta http://www." +#~ "ubuntulinux.org." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ubuntusta on uusi julkaisu saatavilla!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Uusi julkaisu nimeltään '%s' on saatavilla. Päivitysohjeet löydät " #~ "osoitteesta http://www.ubuntulinux.org/." @@ -2003,11 +2076,11 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Ei saatu haluttua lukitusta" #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Tämä tarkoittaa yleensä, että toinen pakettienhallintaohjelma (kuten apt-get " -#~ "tai aptitude) on jo käynnissä. Sulje tämä toinen ohjelma ensin." +#~ "Tämä tarkoittaa yleensä, että toinen pakettienhallintaohjelma (kuten apt-" +#~ "get tai aptitude) on jo käynnissä. Sulje tämä toinen ohjelma ensin." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Alustetaan ja ladataan luetteloa päivityksistä..." @@ -2033,15 +2106,16 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että vastaanotit " -#~ "avaimen luotettua kanavaa pitkin ja että luotat avaimen omistajaan. " +#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että " +#~ "vastaanotit avaimen luotettua kanavaa pitkin ja että luotat avaimen " +#~ "omistajaan. " #~ msgid "" -#~ "Restore the default keys shiped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shiped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Palauta jakelun mukana toimitetut avaimet. Tämä ei tee muutoksia käyttäjän " -#~ "asentamiin avaimiin." +#~ "Palauta jakelun mukana toimitetut avaimet. Tämä ei tee muutoksia " +#~ "käyttäjän asentamiin avaimiin." #~ msgid "Ubuntu Update Manager" #~ msgstr "Ubuntun päivitysten hallinta" @@ -2049,8 +2123,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Saatavilla olevat päivitykset\n" #~ "\n" @@ -2058,4 +2132,4 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "Asenna-painiketta." #~ msgid "0" -#~ msgstr "0" \ No newline at end of file +#~ msgstr "0" diff --git a/po/fr.po b/po/fr.po index 3edae48d..af75b0f1 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: E.Malandain \n" "Language-Team: French \n" @@ -55,6 +55,7 @@ msgstr "Après un mois" msgid "After %s days" msgstr "Après %s jours" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "Mises à jour %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Serveur principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "Erreur lors de la suppression de la clé" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "La clé que vous avez sélectionnée ne peut être supprimée. Veuillez rapporter " "ce bogue." @@ -168,6 +170,7 @@ msgstr "Les meta-paquets désirés n'ont pu être mis à jour" msgid "A essential package would have to be removed" msgstr "Un paquet essentiel devrait être enlevé" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossible de calculer la mise à jour" @@ -184,6 +187,7 @@ msgstr "" "Merci de rapporter ce bogue du paquet « update-manager » et d'inclure les " "fichiers de /var/log/dist-upgrade/ dans le rapport de bogue." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erreur lors de l'authentification de certains paquets" @@ -211,6 +215,7 @@ msgstr "" "Il a été impossible d'installer un paquet pourtant requis. Merci de " "rapporter ce bogue. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossible de déterminer le méta-paquet" @@ -229,11 +234,11 @@ msgstr "" " Veuillez d'abord installer l'un des paquets ci-dessus, en utilisant " "Synaptic ou apt-get, avant de continuer." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Impossible d'ajouter le CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -248,16 +253,16 @@ msgstr "" "Le message d'erreur est :\n" "« %s »" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Lecture du cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" "Télécharger les données depuis le réseau pour effectuer la mise à jour ?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -270,11 +275,11 @@ msgstr "" "répondre « oui ». Par contre, si votre connexion internet est lente ou trop " "chère, répondez « non »." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Aucun mirroir valide trouvé" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -294,11 +299,12 @@ msgstr "" "cela mettra à jour toutes les entrées « %s » vers « %s ».\n" "Sinon, la mise à jour sera annulée." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Générer les sources par défaut ?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -312,11 +318,11 @@ msgstr "" "Les entrées par défaut pour « %s » doivent-elles être ajoutées ? Si vous " "sélectionnez « Non », la mise à jour sera annulée." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Information sur le dépôt invalide" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -324,11 +330,11 @@ msgstr "" "La mise à jour des informations du dépôt a créé un fichier invalide. Merci " "de rapporter ce bogue." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Sources provenant de tiers désactivées" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " @@ -338,11 +344,11 @@ msgstr "" "désactivées. Vous pouvez les réactiver après la mise à jour avec l'outil « " "Gestionnaire de canaux logiciels » ou avec Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Erreur lors de la mise à jour" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -351,30 +357,31 @@ msgstr "" "un problème de réseau. Veuillez vérifier votre connexion au réseau et " "réessayer." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Pas assez d'espace libre sur le disque" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"Abandon de la mise à jour. Veuillez libérer au moins %s d'espace disque sur " -"%s. Videz la corbeille et supprimez les paquets temporaires des " -"installations effectuées en utilisant la commande « sudo apt-get clean »." +"Abandon de la mise à jour. Veuillez libérer au moins %s d'espace disque sur %" +"s. Videz la corbeille et supprimez les paquets temporaires des installations " +"effectuées en utilisant la commande « sudo apt-get clean »." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Voulez-vous commencer la mise à jour ?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Les mises à jour n'ont pu être installées" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -389,11 +396,11 @@ msgstr "" "joindre les fichiers du répertoire /var/log/dist-upgrade dans le rapport de " "bogue." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Les mises à jour n'ont pu être téléchargées" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -401,11 +408,11 @@ msgstr "" "Abandon de la mise à jour. Veuillez vérifier votre connexion Internet ou " "votre médium d'installation puis réessayez. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "La prise en charge de certaines applications a pris fin" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -420,23 +427,23 @@ msgstr "" "Si vous n'avez pas activé le dépôt « universe », la suppression de ces " "paquets vous sera suggérée lors de la prochaine étape." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Enlever les paquets obsolètes ?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Passer cette étape" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Supprimer" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Erreur pendant la soumission" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -444,26 +451,28 @@ msgstr "" "Un problème est survenu lors du nettoyage. Veuillez vous reporter au message " "ci-dessous pour plus d'informations. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Restaurer le système dans son état d'origine" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Recherche du backport (rétro-portage) de « %s »" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Vérification du gestionnaire de paquets" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Échec lors de la préparation de la mise à jour" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -473,15 +482,15 @@ msgstr "" "remonter ce bug concernant le paquet 'update manager' et d'inclure les " "fichiers contenus dans le dossier /var/log/dist-upgrade/ à votre rapport." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Mise à jour des informations sur les dépôts en cours" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Information sur le paquet invalide" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -496,22 +505,23 @@ msgstr "" "comme un bogue du paquet « update-manager » et joindre les fichiers du " "répertoire /var/log/dist-upgrade dans le rapport de bogue." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Demande de confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Mise à jour en cours" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Recherche de logiciels obsolètes" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "La mise à jour du système est terminée." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -539,6 +549,7 @@ msgstr "Téléchargement du fichier %li sur %li en cours" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Application des changements" @@ -554,9 +565,10 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "La mise à jour va être interrompue maintenant. Veuillez signaler ceci comme " -"un bogue du paquet « update-manager » et joindre les fichiers du répertoire " -"/var/log/dist-upgrade/ dans le rapport de bogue." +"un bogue du paquet « update-manager » et joindre les fichiers du répertoire /" +"var/log/dist-upgrade/ dans le rapport de bogue." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -584,18 +596,19 @@ msgstr "Une erreur fatale est survenue" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Veuillez signaler ce bogue et joindre les fichiers /var/log/dist-upgrade.log " "et /var/log/dist-upgrade/apt.log à votre rapport. La mise à jour est " "annulée.\n" -"Votre fichier sources.list d'origine a été enregistré dans " -"/etc/apt/sources.list.distUpgrade." +"Votre fichier sources.list d'origine a été enregistré dans /etc/apt/sources." +"list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -642,6 +655,7 @@ msgstr "" "Pour éviter toute perte de données accidentelle, veuillez fermer toutes les " "applications et documents ouverts." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -691,6 +705,7 @@ msgid "%li seconds" msgstr "%li secondes" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -714,6 +729,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -825,6 +841,7 @@ msgstr "Impossible de télécharger les informations de version" msgid "Please check your internet connection." msgstr "Veuillez vérifier votre connexion Internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossible de lancer l'outil de mise à jour" @@ -928,14 +945,17 @@ msgstr "" "Échec lors du téléchargement de la liste des modifications. \n" "Veuillez vérifier votre connexion Internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Mises à jour de sécurité" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Mises à jour recommandées" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Mises à jour suggérées" @@ -948,6 +968,7 @@ msgstr "« Backports »" msgid "Distribution updates" msgstr "Mises à jour de la distribution" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Autres mises à jour" @@ -969,6 +990,7 @@ msgstr "_Tout décocher" msgid "_Check All" msgstr "Tout _vérifier" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1003,6 +1025,7 @@ msgstr "De la version %(old_version)s vers la version %(new_version)s" msgid "Version %s" msgstr "Version %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1027,6 +1050,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Une nouvelle version « %s » est disponible" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "La liste des logiciels est corrompue" @@ -1041,19 +1065,23 @@ msgstr "" "utiliser d'abord le « Gestionnaire de paquets Synaptic » ou lancez « sudo " "apt-get install -f » dans un terminal pour réparer ce problème." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Aucun(e)" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 Ko" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f Ko" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1066,8 +1094,8 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Vous devez vérifier manuellement la disponibilité de mises à " -"jour\n" +"Vous devez vérifier manuellement la disponibilité de mises à jour\n" "\n" "Votre système ne vérifie pas les mises à jour automatiquement. Vous pouvez " "configurer ce comportement dans Sources logicielles qui se trouve " @@ -1299,8 +1327,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Les informations sur les logiciels disponibles sont " -"obsolètes\n" +"Les informations sur les logiciels disponibles sont obsolètes\n" "\n" "Pour installer de nouveaux logiciels ou des mises à jour à partir des canaux " "logiciels modifiés ou nouvellement ajoutés, vous devez recharger ces " @@ -1430,187 +1458,231 @@ msgstr "" "Configurer les canaux logiciels (sources de mise à jour) et les mises à jour " "via Internet" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Maintenu par la communauté" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Pilotes propriétaires de périphériques" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Logiciel non libre" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM contenant Ubuntu 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Logiciel libre supporté par Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Maintenu par la communauté (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Logiciel libre maintenu par la communauté" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Pilotes non libres" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Pilotes propriétaires de périphériques " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Logiciel non libre (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Logiciel soumis au droit d'auteur ou à des restrictions légales" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM contenant Ubuntu 6.06 LTS \"Dapper Drake\"" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Mises à jour backportées" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM contenant Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Mises à jour pour Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "« Backports » pour Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM contenant Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Supporté officiellement" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Mises à jour pour Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "« Backports » pour Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Maintenu par la communauté (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non libre (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM contenant Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Support officiel terminé" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restreint" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Mises à jour de sécurité pour Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Mises à jour pour Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "« Backports » pour Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Mises à jour de sécurité pour Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" "Logiciel libre (selon les lignes directrices du projet Debian) dont les " "dépendances ne sont pas libres" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" @@ -1618,7 +1690,6 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Logiciel restreint pour des raisons légales ou de copyright" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Téléchargement du fichier %li sur %li à une vitesse inconnue" @@ -1667,18 +1738,18 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Certaines mises à jour requièrent la suppression de logiciels " -#~ "supplémentaires. Utilisez la fonction « Sélectionner la totalité des mises à " -#~ "jour » du « Gestionnaire de paquets Synaptic » ou lancez « sudo apt-get dist-" -#~ "upgrade » dans un terminal pour mettre votre système complètement à jour." +#~ "supplémentaires. Utilisez la fonction « Sélectionner la totalité des " +#~ "mises à jour » du « Gestionnaire de paquets Synaptic » ou lancez « sudo " +#~ "apt-get dist-upgrade » dans un terminal pour mettre votre système " +#~ "complètement à jour." #~ msgid "The following updates will be skipped:" #~ msgstr "Les paquets suivants ne seront pas mis à jour :" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Environ %li secondes restantes" @@ -1754,11 +1825,11 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgstr "« Backports » pour Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" -#~ "Durant la vérification des informations du dépôt, aucune entrée valide pour " -#~ "la mise à jour n'a été trouvée.\n" +#~ "Durant la vérification des informations du dépôt, aucune entrée valide " +#~ "pour la mise à jour n'a été trouvée.\n" #~ msgid "Repositories changed" #~ msgstr "Les dépôts ont été modifiés" @@ -1767,8 +1838,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "Vous devez recharger la liste des paquets depuis les serveurs pour que vos " -#~ "changements soient effectifs. Voulez-vous le faire maintenant ?" +#~ "Vous devez recharger la liste des paquets depuis les serveurs pour que " +#~ "vos changements soient effectifs. Voulez-vous le faire maintenant ?" #~ msgid "Sections" #~ msgstr "Catégories :" @@ -1785,7 +1856,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Téléchargement des changements\n" +#~ "Téléchargement des changements\n" #~ "\n" #~ "Il est nécessaire de récupérer les changement du serveur central" @@ -1817,13 +1889,13 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Mises à jour disponibles\n" #~ "\n" -#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à jour " -#~ "en utilisant le bouton Installer." +#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à " +#~ "jour en utilisant le bouton Installer." #~ msgid "Repository" #~ msgstr "Dépôt" @@ -1844,20 +1916,20 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ "Clés d'authentification\n" #~ "\n" #~ "Vous pouvez ajouter ou enlever des clés d'authentification grâce à cette " -#~ "boîte de dialogue. Une clé rend possible la vérification de l'intégrité des " -#~ "logiciels que vous téléchargez." +#~ "boîte de dialogue. Une clé rend possible la vérification de l'intégrité " +#~ "des logiciels que vous téléchargez." #~ msgid "A_uthentication" #~ msgstr "A_uthentification" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Ajouter une nouvelle clé au trousseau digne de confiance. Veuillez vérifier " -#~ "que vous avez obtenu la clé à travers un canal sécurisé et que vous faites " -#~ "confiance à son possesseur. " +#~ "Ajouter une nouvelle clé au trousseau digne de confiance. Veuillez " +#~ "vérifier que vous avez obtenu la clé à travers un canal sécurisé et que " +#~ "vous faites confiance à son possesseur. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "Nettoyer automatiquement les fichiers _temporaires des paquets" @@ -1879,8 +1951,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Restaurer les clés par défaut fournies avec la distribution. Les clés " #~ "installées par l'utilisateur ne seront pas modifiées." @@ -1917,23 +1989,25 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." -#~ msgstr "" -#~ "Cela signifie que d'autres actions (comme l'installation ou la suppression " -#~ "de paquets) seront requises après la mise à jour. Veuillez utiliser Synaptic " -#~ "« Mise à jour intelligente » ou « apt-get dist-upgrade » pour régler la " +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " #~ "situation." +#~ msgstr "" +#~ "Cela signifie que d'autres actions (comme l'installation ou la " +#~ "suppression de paquets) seront requises après la mise à jour. Veuillez " +#~ "utiliser Synaptic « Mise à jour intelligente » ou « apt-get dist-" +#~ "upgrade » pour régler la situation." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" -#~ "Changements non trouvés, le serveur n'a peut-être pas encore été mis à jour." +#~ "Changements non trouvés, le serveur n'a peut-être pas encore été mis à " +#~ "jour." #~ msgid "The updates are being applied." #~ msgstr "Les mises à jour ont été appliquées." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Vous ne pouvez exécuter qu'un seul gestionnaire de paquets à la fois. " #~ "Veuillez tout d'abord fermer cette autre application." @@ -1946,20 +2020,20 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Veuillez mettre à jour vers une version plus récente d'Ubuntu Linux. La " -#~ "version que vous êtes entrain d'utiliser ne recevra pas d'autres correctifs " -#~ "de sécurité ou mises à jour critiques. Veuillez voir " -#~ "http://www.ubuntulinux.org pour les informations de mise à jour." +#~ "version que vous êtes entrain d'utiliser ne recevra pas d'autres " +#~ "correctifs de sécurité ou mises à jour critiques. Veuillez voir http://" +#~ "www.ubuntulinux.org pour les informations de mise à jour." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Il y a une nouvelle version d'Ubuntu disponible !" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Une nouvelle version avec le nom de code « %s » est disponible. Veuillez " #~ "voir http://www.ubuntulinux.org pour les informations de mise à jour." @@ -1969,8 +2043,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Vous ne pouvez exécuter qu'un seul gestionnaire de paquets à la fois. " #~ "Veuillez tout d'abord fermer cette autre application." @@ -2007,13 +2081,13 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Mises à jour disponibles\n" #~ "\n" -#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à jour " -#~ "en utilisant le bouton Installer." +#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à " +#~ "jour en utilisant le bouton Installer." #~ msgid "0" -#~ msgstr "0" \ No newline at end of file +#~ msgstr "0" diff --git a/po/fur.po b/po/fur.po index a4be5116..2cc4f1ea 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-08-25 05:55+0000\n" "Last-Translator: Marco \n" "Language-Team: Friulian \n" @@ -55,6 +55,7 @@ msgstr "Dopo un mèis" msgid "After %s days" msgstr "Dopo %s dîs" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -158,6 +160,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -170,6 +173,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -192,6 +196,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -205,11 +210,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -219,15 +224,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -235,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -251,11 +256,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -264,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -307,15 +313,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -324,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -347,63 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -413,22 +422,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -456,6 +466,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -471,6 +482,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -494,13 +506,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -540,6 +553,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -587,6 +601,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -606,6 +621,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -712,6 +728,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -801,14 +818,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -821,6 +841,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -842,6 +863,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -876,6 +898,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -897,6 +920,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -908,19 +932,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1246,184 +1274,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/gl.po b/po/gl.po index ecf91bf0..6955807d 100644 --- a/po/gl.po +++ b/po/gl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:01+0000\n" "Last-Translator: Xosé \n" "Language-Team: galician\n" @@ -57,6 +57,7 @@ msgstr "Logo dun mes" msgid "After %s days" msgstr "Logo de %s días" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,6 +65,7 @@ msgstr "actualizacións de %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,6 +75,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +127,7 @@ msgid "Error removing the key" msgstr "Houbo un erro ao borrar a clave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Non se pode borrar a clave que seleccionou. Por favor, avise disto como un " "fallo." @@ -170,6 +172,7 @@ msgstr "Non se puideron actualizar os meta-paquetes necesarios" msgid "A essential package would have to be removed" msgstr "Tívose que desinstalar un paquete esencial" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Non se puido calcular a actualización" @@ -186,6 +189,7 @@ msgstr "" "Informa deste erro do pacote \"update-manager\" e inclúe os ficheiros que " "hai en /var/log/dist-upgrade/ no informe." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro autenticando algúns paquetes" @@ -213,6 +217,7 @@ msgstr "" "Non foi posible instalar un paquete necesario. Por favor, informe disto como " "un fallo. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Non se puido determinar o meta-paquete" @@ -231,11 +236,11 @@ msgstr "" " Instala un dos pacotes mencionados usando synaptic ou apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Non se puido engadir o CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -250,15 +255,15 @@ msgstr "" "A mensaxe de erro foi:\n" "\"%s\"" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "A ler a caché" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Procurar datos desde a rede para a actualización?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -270,11 +275,11 @@ msgstr "" "Se dispós dde acceso rápido ou barato á rede deberías respostar \"Si\" aquí. " "Se che custa caro, escolle \"Non\"." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Non se atopou un servidor espello válido" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -294,11 +299,12 @@ msgstr "" "selecciona «Si», actualizaranse todas as entradas '%s' a '%s'.\n" "Se selecciona «Non» cancelarase a actualización." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Xerar orixes predeterminadas?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -306,17 +312,17 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Tras examinar o seu «sources.list», non se atoparon entradas válidas para " -"'%s'.\n" +"Tras examinar o seu «sources.list», non se atoparon entradas válidas para '%" +"s'.\n" "\n" "Deben engadirse entradas predeterminadas para '%s'? Se selecciona «Non» " "cancelarse a actualización." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Información de depósito non válida" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -324,11 +330,11 @@ msgstr "" "A actualización da información do depósito xerou un ficheiro incorrecto. Por " "favor, informe disto como un erro." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Orixes de terceiros desactivadas" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " @@ -338,11 +344,11 @@ msgstr "" "Pódelas volver a activar coa ferramenta \"software-properteis\" ou con " "synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Erro durante a actualización" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -351,11 +357,11 @@ msgstr "" "tipo de problema na rede, por favor, comprobe a súa conexión de rede e " "volvao a intentar." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Non hai espazo suficiente no disco" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -366,15 +372,16 @@ msgstr "" "espazo en disco en %s. Vacíe a súa papelera, e elimine os paquetes temporais " "de instalacións anteriores tecleando «sudo apt-get clean» nun terminal." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Desexa comezar a actualización?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Non se puideron instalar as actualizacións" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -385,14 +392,14 @@ msgstr "" "Vaise cancelar a actualización agora. O teu sistema podería ficar nun estado " "que non permita ser usado. Procedeuse a recuperalo (dpkg --configure -a).\n" "\n" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en " -"/var/log/dist-upgrade/ no informe." +"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" +"var/log/dist-upgrade/ no informe." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Non se puideron descargar as actualizacións" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -400,11 +407,11 @@ msgstr "" "A actualización interromperase agora. Por favor, comprobe a súa conexión a " "Internet (ou o seu soporte de instalación) e volvao a intentar. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Rematou o soporte para algunhas aplicacións" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -418,23 +425,23 @@ msgstr "" "Se non tes activado o software mantido pola comunidade (universe), " "suxerirase que elimines estes pacotes no paso seguinte." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Desinstalar os paquetes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Saltar este paso" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Borrar" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Erro durante a confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -442,26 +449,28 @@ msgstr "" "Ocorreu algún problema durante o limpado. Por favor, vexa a mensaxe inferior " "para máis información. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "A retornar ao estado orixinal do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "A procurar backports de \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Comprobando xestor de paquetes" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Fallou a preparación da actualización" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -471,15 +480,15 @@ msgstr "" "pacote \"update-manager\" e inclúe os ficheiros de /var/log/dist-upgrade/ no " "informe." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Actualizando a información do repositorio" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Información de paquete non válida" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -492,25 +501,26 @@ msgstr "" "esencial, xa non se dá atopado.\n" "Isto indica un erro serio.\n" "\n" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en " -"/var/log/dist-upgrade/ no informe." +"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" +"var/log/dist-upgrade/ no informe." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Solicitando confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Actualizando" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Buscando paquetes obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Comletouse a actualización do sistema." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -538,6 +548,7 @@ msgstr "A baixar o ficheiro %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando os cambios" @@ -555,6 +566,7 @@ msgstr "" "Vaise cancelar a actualización agora. Informa desde fallo do pacote \"update-" "manager\" e inclúe os ficheiros en /var/log/dist-upgrade/ no informe." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -582,18 +594,19 @@ msgstr "Ocorreu un erro fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en " -"/var/log/dist-upgrade/ main.log e /var/log/dist-upgrade/apt.log no informe. " +"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" +"var/log/dist-upgrade/ main.log e /var/log/dist-upgrade/apt.log no informe. " "Vaise cancelar a actualización agora.\n" -"O teu ficheiro sources.list orixinal gardouse en " -"/etc/apt/sources.list.distUpgrade." +"O teu ficheiro sources.list orixinal gardouse en /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -636,9 +649,9 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." -msgstr "" -"Para previr a perda de datos peche todas as aplicacións e documentos." +msgstr "Para previr a perda de datos peche todas as aplicacións e documentos." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -688,6 +701,7 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -710,6 +724,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -820,6 +835,7 @@ msgstr "Non se puideron descargar as notas da versión" msgid "Please check your internet connection." msgstr "Por favor, comprobe a súa conexión a Internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Non se puido executar a ferramenta de actualización" @@ -854,8 +870,7 @@ msgstr "Erro ao descargar" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" -"Fallou a descarga da actualización. Pode haber un problema coa rede. " +msgstr "Fallou a descarga da actualización. Pode haber un problema coa rede. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -923,14 +938,17 @@ msgstr "" "Non se puido descarregar a listaxe de modificacións. \n" "Comproba a túa conexión á Internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizacións de seguranza importantes" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizacións recomendadas" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Actualizacións suxeridas" @@ -943,6 +961,7 @@ msgstr "Backports" msgid "Distribution updates" msgstr "Actualizacións da distribución" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Outras actualizacións" @@ -964,6 +983,7 @@ msgstr "_Quitarlle a Selección a Todo" msgid "_Check All" msgstr "_Seleccionalo Todo" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -998,6 +1018,7 @@ msgstr "Desde a versión %(old_version)s á %(new_version)s" msgid "Version %s" msgstr "Versión %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1022,6 +1043,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Está dispoñible a nova versión '%s' da distribución" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "O índice de software está danado" @@ -1036,19 +1058,23 @@ msgstr "" "xestor de paquetes \"Synaptic\", ou execute \"sudo apt-get install -f\" nun " "terminal, para corrixir este problema primeiro." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nengún" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1416,190 +1442,233 @@ msgstr "O tamaño da ventá" msgid "Configure the sources for installable software and updates" msgstr "Configurar as fontes para programas e actualizacións instalábeis" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantido pola Comunidade" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Controladores propietarios de dispositivos" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Aplicacións restrinxidas" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom con Ubuntu 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Software de Código Aberto soportado por Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantido pola Comunidade (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software de Código Aberto mantido pola Comunidade" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Controladores non libres" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Controladores propietarios para dispositivos " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software restrinxido (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restrinxido por razóns de copyright ou legais" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom con Ubuntu 6.06 LTS \"Dapper Drake\"" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Actualizacións de backports" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom con Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizacións de Seguranza para Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualizacións para Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Backports de Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom con Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Soportado oficialmente" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizacións de Seguranza para Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizacións para Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backports para Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pola comunidade (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Software non libre (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom con Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Xa non se mantén oficialmente" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restrinxido" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizacións de Seguranza para Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizacións para Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backports para Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualizacións de seguridade de Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (probas)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (inestable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatible coa DFSG con dependencias non libres" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software non compatible coa DFSG" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1610,16 +1679,16 @@ msgstr "Software non compatible coa DFSG" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "" #~ "Ocorreu un problema imposible de resolver cando se calculaba a " #~ "actualización. Por favor, informe disto como un fallo. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" @@ -1639,11 +1708,12 @@ msgstr "Software non compatible coa DFSG" #~ "software», ou con Synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." #~ msgstr "" -#~ "A actualización interromperase agora. O seu sistema pode quedar nun estado " -#~ "inutilizable. Estase levando a cabo unha recuperación (dpkg --configure -a)." +#~ "A actualización interromperase agora. O seu sistema pode quedar nun " +#~ "estado inutilizable. Estase levando a cabo unha recuperación (dpkg --" +#~ "configure -a)." #~ msgid "Some software no longer officially supported" #~ msgstr "Algúns programas xa non están soportados oficialmente" @@ -1664,40 +1734,33 @@ msgstr "Software non compatible coa DFSG" #~ msgid "Restoring originale system state" #~ msgstr "Restaurando o estado orixinal do sistema" -#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" #~ "This indicates a serious error, please report this as a bug." #~ msgstr "" -#~ "Logo de actualizarse a información dos seus paquetes xa non é posible atopar " -#~ "o paquete esencial '%s».\n" +#~ "Logo de actualizarse a información dos seus paquetes xa non é posible " +#~ "atopar o paquete esencial '%s».\n" #~ "Isto indica un problema serio, por favor, informe disto como un fallo." -#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "Faltan %li dias %li horas %li minutos" -#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "Faltan %li horas %li minutos" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Faltan %li minutos" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Faltan %li segundos" #~ msgid "Download is complete" #~ msgstr "Completouse a descarga" -#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Descargando ficheiro %li de %li a %s/s" -#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Descargando ficheiro %li de %li" @@ -1705,7 +1768,6 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "" #~ "A actualización cancelarase agora. Por favor, informe disto como un fallo." -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1714,43 +1776,41 @@ msgstr "Software non compatible coa DFSG" #~ "'%s'?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" #~ "Por favor, informe disto como un fallo e inclúa os arquivos /var/log/dist-" -#~ "upgrade.log e /var/log/dist-upgrade-apt.log no seu informe. A actualización " -#~ "cancelarase agora.\n" -#~ "O seu arquivo «sources.list» orixinal gardouse en " -#~ "/etc/apt/sources.list.distUpgrade." +#~ "upgrade.log e /var/log/dist-upgrade-apt.log no seu informe. A " +#~ "actualización cancelarase agora.\n" +#~ "O seu arquivo «sources.list» orixinal gardouse en /etc/apt/sources.list." +#~ "distUpgrade." -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "Vaise desinstalar %s paquete." #~ msgstr[1] "Vanse desinstalar %s paquetes." -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "Vaise instalar %s paquete novo." #~ msgstr[1] "Vanse instalar %s paquetes novos." -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "Vaise actualizar %s paquete." #~ msgstr[1] "Vanse actualizar %s paquetes." -#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Debe descargar un total de %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgstr "" -#~ "A actualización pode levar varias horas e non poderá ser cancelada despois " -#~ "en ningún momento." +#~ "A actualización pode levar varias horas e non poderá ser cancelada " +#~ "despois en ningún momento." #~ msgid "Could not find any upgrades" #~ msgstr "Non se puido atopar ningunha actualización" @@ -1761,7 +1821,8 @@ msgstr "Software non compatible coa DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Actualizando a Ubuntu 6.06 LTS" +#~ "Actualizando a Ubuntu 6.06 LTS" #~ msgid "Downloading and installing the upgrades" #~ msgstr "Descargando e instalando as actualizacións" @@ -1770,44 +1831,42 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "Actualizando Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "" -#~ "Fallou a verificación da actualización. Pode haber un problema coa rede ou o " -#~ "servidor. " +#~ "Fallou a verificación da actualización. Pode haber un problema coa rede " +#~ "ou o servidor. " -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Descargando ficheiro %li de %li a %s/s" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Descargando ficheiro %li de %li a velocidade descoñecida" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" -#~ "A lista de cambios non está dispoñible aínda. Por favor, ténteo de novo máis " -#~ "tarde." +#~ "A lista de cambios non está dispoñible aínda. Por favor, ténteo de novo " +#~ "máis tarde." #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " #~ "connection." #~ msgstr "" -#~ "Fallou a descarga da lista de cambios. Por favor, comprobe a súa conexión a " -#~ "Internet." +#~ "Fallou a descarga da lista de cambios. Por favor, comprobe a súa conexión " +#~ "a Internet." #~ msgid "Cannot install all available updates" #~ msgstr "Non se puideron instalar todas as actualizacións dispoñibles" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algunhas actualizacións requiren a desinstalación de software. Utilice a " -#~ "función «Marcar todas as actualizacións» do xestor de paquetes «Synaptic», " -#~ "ou execute «sudo apt-get dist-upgrade» nun terminal, para actualizar " -#~ "completamente o seu sistema." +#~ "función «Marcar todas as actualizacións» do xestor de paquetes " +#~ "«Synaptic», ou execute «sudo apt-get dist-upgrade» nun terminal, para " +#~ "actualizar completamente o seu sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "Pasaranse por alto as seguintes actualizacións:" @@ -1821,7 +1880,6 @@ msgstr "Software non compatible coa DFSG" #~ msgid "Show details" #~ msgstr "Mostrar detalles" -#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "Nova versión: %s (Tamaño: %s)" @@ -1831,19 +1889,21 @@ msgstr "Software non compatible coa DFSG" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Por favor, peche primeiro a outra aplicación (ej: «aptitude» ou «Synaptic»)." +#~ "Por favor, peche primeiro a outra aplicación (ej: «aptitude» ou " +#~ "«Synaptic»)." #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "Debe comprobar as actualizacións manualmente\n" #~ "\n" -#~ "O seu sistema non comproba as actualizacións automatimente. Pode configurar " -#~ "este comportamento en \"Sistema\" -> \"Administración\" -> \"Propiedades do " -#~ "software\"." +#~ "O seu sistema non comproba as actualizacións automatimente. Pode " +#~ "configurar este comportamento en \"Sistema\" -> \"Administración\" -> " +#~ "\"Propiedades do software\"." #~ msgid "" #~ "Examining your system\n" @@ -1853,8 +1913,8 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "" #~ "Analizando o seu sistema\n" #~ "\n" -#~ "As actualizacións de software corrixen erros, eliminan fallos de seguridade " -#~ "e proporcionan novas funcionalidades." +#~ "As actualizacións de software corrixen erros, eliminan fallos de " +#~ "seguridade e proporcionan novas funcionalidades." #~ msgid "Cancel _Download" #~ msgstr "Cancelar _descarga" @@ -1883,15 +1943,16 @@ msgstr "Software non compatible coa DFSG" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" #~ "A información das canles está obsoleta\n" #~ "\n" #~ "Debe recargar a información das canles para poder instalar software e " -#~ "actualizacións a partir das canles recientemente engadidas ou cambiadas. \n" +#~ "actualizacións a partir das canles recientemente engadidas ou " +#~ "cambiadas. \n" #~ "\n" #~ "Necesita unha conexión a internet para continuar." @@ -1902,17 +1963,17 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "Compoñentes" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Introduza a liña de APT completa da canle que queira " -#~ "engadir\n" +#~ "Introduza a liña de APT completa da canle que queira engadir\n" #~ "\n" -#~ "A liña de APT contén o tipo, a ubicación e os compoñentes dunha canle, por " -#~ "exemplo \"deb http://ftp.debian.org sarge main\"." +#~ "A liña de APT contén o tipo, a ubicación e os compoñentes dunha canle, " +#~ "por exemplo \"deb http://ftp.debian.org sarge main\"." #~ msgid "Add Channel" #~ msgstr "Engadir unha canle" @@ -1930,12 +1991,12 @@ msgstr "Software non compatible coa DFSG" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." #~ msgstr "" -#~ "Se se desactiva a comprobación automática de actualizacións, debe recargar a " -#~ "lista de canles manualmente. Esta opción permítelle ocultar a notificación " -#~ "que se mostra neste caso." +#~ "Se se desactiva a comprobación automática de actualizacións, debe " +#~ "recargar a lista de canles manualmente. Esta opción permítelle ocultar a " +#~ "notificación que se mostra neste caso." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " @@ -1960,4 +2021,4 @@ msgstr "Software non compatible coa DFSG" #~ msgstr "Actualizacións de Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "«Backports» de Ubuntu 6.06 LTS" \ No newline at end of file +#~ msgstr "«Backports» de Ubuntu 6.06 LTS" diff --git a/po/he.po b/po/he.po index 42e311d3..cca523c2 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 08:48+0000\n" "Last-Translator: Yaniv Abir \n" "Language-Team: Hebrew \n" @@ -58,13 +58,15 @@ msgstr "אחרי חודש" msgid "After %s days" msgstr "אחרי %s ימים" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "מתקין עדכונים..." #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,6 +76,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "שרת ראשי" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +127,7 @@ msgid "Error removing the key" msgstr "שגיאה בהסרת המפתח" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "לא ניתן להסיר את המפתח שבחרת. אנא דווח על זה כבאג." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -167,6 +169,7 @@ msgstr "לא ניתן לשדרג את חבילות העל הנדרשות" msgid "A essential package would have to be removed" msgstr "חבילה חיונית תוסר בלית ברירה" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "לא ניתן לחשב את השדרוג" @@ -182,6 +185,7 @@ msgstr "" "לאחר שהמידע על החבילות עודכן החבילה ההכרחית \"%s\" לא נמצא.\n" "כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "שגיאה באימות חלק מן החבילות" @@ -204,6 +208,7 @@ msgid "" "bug. " msgstr "לא ניתן להתקין חבילה הכרחית. אנא דווחו על זה כבאג. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "לא ניתן לקבוע חבילת על" @@ -220,11 +225,11 @@ msgstr "" "מותקנת במערכת שלך, לכן לא ניתן לזהות באיזו גירסה של אובונטו נעשה שימוש.\n" " אנא התקן אחת מהחבילות הנ\"ל בעזרת Synaptic או apt-get לפני שתמשיך." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "הוספת התקליטור נכשלה" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -239,15 +244,15 @@ msgstr "" "הודעת השגיאה הייתה:\n" "\"%s\"" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "קורא מטמון" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "להוריד מידע מהאינטרנט לצורך השדרוג?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -255,11 +260,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "לא נמצא אתר מראה תקני" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -278,11 +283,12 @@ msgstr "" "\n" "בחירה ב\"לא\" תבטל את העדכון." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "לייצר מקורות ברירת מחדל?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -294,32 +300,32 @@ msgstr "" "\n" "האם לקבוע את ברירת המחדל כרישום ל\"%s\"? בחירה ב\"לא\" תבטל את העדכון." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "מידע מאגרים לא תקין" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "עדכון מידע המאגרים יצר קובץ לא תקין. אנא דווחו על כך כבאג." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "מקורות של ספקי צד שלישי בוטלו" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "שגיאה במהלך העדכון" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -327,11 +333,11 @@ msgstr "" "הייתה בעיה בתהליך העידכון. בדרך כלל זוהי בעיית רשת, אנא בדקו את חיבור הרשת " "שלכם ונסו שנית." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "אין מספיק שטח בדיסק הקשיח" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -341,15 +347,16 @@ msgstr "" "השדרגו יתבטל כעת. יש לפנות לפחות %s מהשטח ב-%s. רוקנו את הזבל והסירו חבילות " "זמניות מהתקנות קודמות על ידי שימוש בפקודה \"sudo apt-get clean\"." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "האם ברצונך להתחיל את השדרוג?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "לא ניתן להתקין את השדרוג" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -358,22 +365,22 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "לא ניתן להוריד את השדרוג" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" "השדרוג בוטל. אנא בדקו את החיבור לאינטרנט או את מדיית ההתקנה ונסו שנית. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "המיכה בכמה תוכנות הסתיימה" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -382,64 +389,66 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "להסיר חבילות שאינן בתוקף?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_דלג על השלב" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_הסר" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "שגיאה בעת ביצוע" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "מספר בעיות נתגלו במהלך הניקוי. אנא הסתכל בהודעות מטה למידע נוסף. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "מחזיר את המערכת למצבה המקורי" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "בודק את מנהל החבילות" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "מעדכן מידע מאגרים" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "מידע חבילה לא תקין" -#: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:726 +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -450,22 +459,23 @@ msgstr "" "לאחר שהמידע על החבילות עודכן החבילה ההכרחית \"%s\" לא נמצא.\n" "כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "משדרג" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "שדרוג המערכת הושלם." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -493,6 +503,7 @@ msgstr "מוריד קובץ %li מתוך %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "מחיל שינויים" @@ -508,6 +519,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -531,13 +543,14 @@ msgstr "ארעה שגיאה חמורה" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -582,6 +595,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "כדי למנוע אובדן מידע אנא סגרו על תוכנית או מסמך פתוחים." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -629,6 +643,7 @@ msgid "%li seconds" msgstr "%liשניות" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -648,6 +663,7 @@ msgstr "השדרוג הסתיים ונדרשת הפעלה מחדש. האם בר #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -758,6 +774,7 @@ msgstr "לא ניתן להוריד הערות שחרור גירסה." msgid "Please check your internet connection." msgstr "אנא בדקו את החיבור לאינטרנט." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "לא ניתן להריץ את כלי השדרוג" @@ -847,14 +864,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "עדכוני אבטחה חשובים" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "עדכונים מומלצים" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "עדכונים מוצעים" @@ -867,6 +887,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "עדכונים אחרים" @@ -888,6 +909,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -922,6 +944,7 @@ msgstr "" msgid "Version %s" msgstr "גרסה %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -945,6 +968,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "גירסה חדשה של ההפצה, \"%s\", זמינה" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "אינדקס התוכנות פגום" @@ -958,19 +982,23 @@ msgstr "" "אי אפשר להתקין או להסיר אף תוכנה. יש להשתמש במנהל החבילות \"Synaptic\" או " "להפעיל את הפקודה \"sudo apt-get install -f\" במסוף כדי לתקן בעיה זו." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1231,8 +1259,8 @@ msgid "" msgstr "" "הכנס את שורת APT השלמה של המאגר שברצונך להוסיף\n" "\n" -"שורת APT מכילה סוג, מיקום ותוכן של המאגר. לדוגמה: \"deb " -"http://ftp.debian.org sarge main\"\n" +"שורת APT מכילה סוג, מיקום ותוכן של המאגר. לדוגמה: \"deb http://ftp.debian." +"org sarge main\"\n" "אפשר למצוא הסבר מפורט על זה בתיעוד." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 @@ -1317,199 +1345,242 @@ msgstr "גודל החלון" msgid "Configure the sources for installable software and updates" msgstr "הגדרת מקורות התוכנות להתקנה והעדכונים" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "אובונטו 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "מתוחזק ע\"י הקהילה" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "דרייברים קניינים להתקנים" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "תוכנה בעלת הגבלות" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "תקליטור אובונטו 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "אובונטו 6.06 LTS \"DapperDrake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "מתוחזק ע\"י הקהילה (Universe(" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "תוכנות קוד פתוח המתוחזקות ע\"י הקהילה" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "דרייברים לא חופשיים" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "תוכנה בעלת הגבלות (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "תקליטור אובונטו 6.06 LTS \"Dapper Drake\"" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "אובונטו 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "תקליטור אובונטו 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "עדכונים - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "עדכונים - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "אובונטו 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "תקליטור אובונטו 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "נתמך רשמית" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "עדכונים - אובונטו 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "עדכונים - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "אובונטו 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "מתוחזק ע\"י קהילה (Universe(" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "לא-חופשי (Multiverse(" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "תקליטור אובונטו 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "אינה נתמכת רשמית יותר" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "זכויות יוצרים מגבילות" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "עדכוני אבטחה - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "עדכונים - אובונטו 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "עדכונים - אובונטו 5.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "דביאן 3.1 \"סארג'\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "עדכוני אבטחה - דביאן יציב" +#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "דביאן בדיקה" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "דביאן לא ארה\"ב (לא יציב)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" -#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " -#~ "DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a " +#~ "1Mbit DSL connection" #~ msgstr "ההורדה תיקח בערך %s עם מודם 56k ובערך %s עם חיבור DSL במהירות 1Mbit" #~ msgid "The list of changes is not available yet. Please try again later." @@ -1539,11 +1610,9 @@ msgstr "" #~ "אם אל אפשרת התקנת תוכנות המתחוזקות ע\"י הקהילה (universe), החבילות האלה " #~ "יסומנו להסרה בצעד הבא." -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "מוריד קובץ %li מתוך %li ב-%s לשנייה" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "מוריד קובץ %li מתוך %li במהירות לא ידועה" @@ -1556,13 +1625,14 @@ msgstr "" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "יש לחפש עדכונים ידניתg>\n" #~ "\n" -#~ "המערכת שלך לא מחפשת עדכונים באופן אוטומטי. ניתן לשנות הגדרות אלו ב\"מערכת\"-" -#~ "> \"ניהול\" -> \"אפשרויות תוכנה\"." +#~ "המערכת שלך לא מחפשת עדכונים באופן אוטומטי. ניתן לשנות הגדרות אלו ב\"מערכת" +#~ "\"-> \"ניהול\" -> \"אפשרויות תוכנה\"." #~ msgid "Cancel _Download" #~ msgstr "בטל _הורדה" @@ -1588,7 +1658,6 @@ msgstr "" #~ msgid "Oficially supported" #~ msgstr "נתמך רשמית" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "נותרו %li שניות." @@ -1703,8 +1772,8 @@ msgstr "" #~ "תקינות התוכנה שאתה מוריד." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "הוסף קובץ מפתח חדש לרשימת המפתחות שאתה בוטח בהם. אנא וודא שאתה שקיבלת את " #~ "המפתח בדרך מאובטחת ושאתה בוטח בבעלים. " @@ -1734,8 +1803,8 @@ msgstr "" #~ msgstr "גודל מקסימלי במגה-בתים:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "שחזר את מפתחות ברירת המחדל שבאו עם ההפצה. זה לא ישנה את המפתחות המותקנים." @@ -1766,8 +1835,8 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "עדכונים זמינים\n" #~ "\n" @@ -1839,7 +1908,8 @@ msgstr "" #~ msgstr[1] "בחרת את כל %s החבילות המעודכנות, בגודל כולל של %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "בחרת %s מתוך חבילה מעודכנת אחת, בגודל של %s" #~ msgstr[1] "בחרת %s מתוך %s חבילות מעודכנות, בגודל כולל של %s" @@ -1847,8 +1917,8 @@ msgstr "" #~ msgstr "העדכונים מתבצעים כרגע." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "אפשר להריץ רק מנהל חבילות אחד באותו זמן. אנא סגור מנהלי חבילות אחרים קודם." @@ -1863,16 +1933,16 @@ msgstr "" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "אנא עדכן לגרסת אובונטו לינוקס חדשה. הגרסה שאתה משתמש בה כבר לא מקבלת עדכוני " -#~ "אבטחה או עדכונים קריטיים אחרים. אנא ראה http://www.ubuntulinux.org בשביל " -#~ "מידע אודות שדרוג." +#~ "אנא עדכן לגרסת אובונטו לינוקס חדשה. הגרסה שאתה משתמש בה כבר לא מקבלת " +#~ "עדכוני אבטחה או עדכונים קריטיים אחרים. אנא ראה http://www.ubuntulinux.org " +#~ "בשביל מידע אודות שדרוג." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "הפצה חדשה עם שם קוד '%s' זמינה. אנא ראה http://www.ubuntulinux.org/ בשביל " #~ "הוראות שדרוג." @@ -1881,4 +1951,4 @@ msgstr "" #~ msgstr "אל תראה את הודעה זו שוב." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "שינויים לא נמצאו, השרת אולי לא מעודכן עדיין." \ No newline at end of file +#~ msgstr "שינויים לא נמצאו, השרת אולי לא מעודכן עדיין." diff --git a/po/hi.po b/po/hi.po index 57c860f1..9665d78f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-08-01 15:30+0000\n" "Last-Translator: Gaurav Mishra \n" "Language-Team: Hindi \n" @@ -55,6 +55,7 @@ msgstr "एक महीने बाद" msgid "After %s days" msgstr "%s दिन बाद" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -158,6 +160,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -170,6 +173,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -192,6 +196,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -205,11 +210,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -219,15 +224,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -235,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -251,11 +256,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -264,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -307,15 +313,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -324,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -347,63 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -413,22 +422,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -456,6 +466,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -471,6 +482,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -494,13 +506,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -540,6 +553,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -587,6 +601,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -606,6 +621,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -712,6 +728,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -801,14 +818,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -821,6 +841,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -842,6 +863,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -876,6 +898,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -897,6 +920,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -908,19 +932,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1246,187 +1274,232 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " \ No newline at end of file +#~ msgstr " " diff --git a/po/hr.po b/po/hr.po index ea7c826a..7c63b86e 100644 --- a/po/hr.po +++ b/po/hr.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 14:38+0000\n" "Last-Translator: Ante Karamatić \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "Nakon mjesec dana" msgid "After %s days" msgstr "Nakon %s dana" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s nadogradnje" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Glavni poslužitelj" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Greška prilikom brisanja ključa" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Ključ koji ste odabrali se ne može obrisati. Molimo prijavite ovu grešku." @@ -165,6 +167,7 @@ msgstr "Ne mogu nadograditi potrebne meta-pakete" msgid "A essential package would have to be removed" msgstr "Bitan paket bi morao biti uklonjen" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nisam mogao riješiti nadogradnju" @@ -178,9 +181,10 @@ msgid "" msgstr "" "Nerješiv problem se pojavio prilikom rješavanja nadogradnje. \n" "\n" -"Molimo prijavite ovo kao grešku u 'update-manager' paketu i uključite iz " -"/var/log/dist-upgrade/ u prijavu." +"Molimo prijavite ovo kao grešku u 'update-manager' paketu i uključite iz /" +"var/log/dist-upgrade/ u prijavu." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Greška prilikom identificiranja nekih paketa" @@ -208,6 +212,7 @@ msgstr "" "Nije bilo moguće instalirati potreban paket. Molimo prijavite ovo kao " "grešku. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nisam mogao odrediti meta-paket" @@ -225,11 +230,11 @@ msgstr "" " Prije nastavka, molim instalirajte jedan od gore navedenih paketa koristeći " "synaptic ili apt-get." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Dodavanje CDa nije uspjelo" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -244,15 +249,15 @@ msgstr "" "Poruka je bila:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Čitam spremnik" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Preuzeti podatke za nadogradnju putem mreže?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +269,11 @@ msgstr "" "Ako imate brz ili jeftin pristup mreži, trebali biste odgovoriti 'Da' ovdje. " "Ukoliko ne želite preuzeti pakete putem mreže, odgovorite 'Ne'." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Nisam našao ispravan zrcalni poslužitelj" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -287,11 +292,12 @@ msgstr "" "odaberete 'Da' nadograditi će se svih '%s' do '%s' unosa.\n" "Ako odaberete 'ne' nadogradnja će se prekinuti." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Kreirati uobičajene izvore?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -299,16 +305,16 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Nakon očitavanja vaše 'sources.list' datoteke nisam našao ispravan unos za " -"'%s'.\n" +"Nakon očitavanja vaše 'sources.list' datoteke nisam našao ispravan unos za '%" +"s'.\n" "Treba li dodati uobičajene unose za '%s' ? Ako odaberete 'Ne' nadogradnja će " "prekinuti." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Podaci repozitorija neispravni" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -316,11 +322,11 @@ msgstr "" "Nadogradnja podataka repozitorija je rezultirala neispravnom datotekom. " "Molim, prijavite ovo kao grešku." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Izvori trećih strana su isključeni" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " @@ -330,11 +336,11 @@ msgstr "" "ih uključiti nakon nadogradnje sa 'software-properties' alatom ili sa " "synapticom." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Greška prilikom nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -342,11 +348,11 @@ msgstr "" "Pojavio se problem prilikom nadogradnje. Obično se radi o mrežnom problemu, " "pa vas molim da provjerite vašu mrežu i pokušate ponovo." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Nema dovoljno praznog mjesta na disku" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -357,15 +363,16 @@ msgstr "" "Ispraznite smeće i uklonite privremene pakete od prošlih instalacija " "koristeći 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Želite li pokrenuti nadogradnju?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Nisam mogao instalirati nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -376,14 +383,14 @@ msgstr "" "Nadogradnja se prekida. Vaš sistem bi mogao biti u neupotrebljivom stanju. " "Obnavljanje je pokrenuto (dpkg --configure -a).\n" "\n" -"Molim, prijavite ovu grešku u 'update-manager' paketu i uključite datoteke u " -"/var/log/dist-upgrade/ direktoriju u prijavu." +"Molim, prijavite ovu grešku u 'update-manager' paketu i uključite datoteke " +"u /var/log/dist-upgrade/ direktoriju u prijavu." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Nisam mogao preuzeti nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +398,11 @@ msgstr "" "Nadogradnja se prekida. Molim provjerite vašu internet vezu ili " "instalacijski medij i pokušajte ponovo. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Podrška za neke programe je gotova" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -409,23 +416,23 @@ msgstr "" "Ako nemate omogućen 'universe' repozitorij, ovi paketi biti će predloženi za " "uklanjanje." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Ukloniti zastarjele pakete?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Preskoči ovaj korak" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Ukloni" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Greška prilikom čina" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -433,44 +440,46 @@ msgstr "" "Neki problemi su se pojavili prilikom čišćenja. Molim pogledajte poruku za " "više informacija. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Vraćam u početno stanje" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Dohvaćanje backporta od '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Provjeravam upravitelja paketima" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Neuspjelo pripremanje nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" "Nerješiv problem se pojavio prilikom rješavanja nadogradnje. Molimo " -"prijavite ovo kao grešku u 'update-manager' paketu i uključite iz " -"/var/log/dist-upgrade/ u prijavu." +"prijavite ovo kao grešku u 'update-manager' paketu i uključite iz /var/log/" +"dist-upgrade/ u prijavu." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Nadograđujem podatke repozitorija" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Neispravni podaci paketa" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -485,22 +494,23 @@ msgstr "" "manager' paketu i uključite datoteke u /var/log/dist-upgrade/ direktoriju u " "prijavu." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Pitam za potvrdu" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Nadograđujem" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Tražim zastarjele programe" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Nadogradnja sustava je završena." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -528,6 +538,7 @@ msgstr "Preuzimam datoteku %li od %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Primjenjujem promjene" @@ -545,6 +556,7 @@ msgstr "" "Nadogradnja se prekida. Molim, prijavite ovu grešku za 'update-manager' " "paket i uključite u prijavu datoteke iz /var/log/dist-upgrade direktorija." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -572,18 +584,19 @@ msgstr "Pojavila se ozbiljna greška" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Molim, prijavite ovo kao bug i uključite datoteke /var/log/dist-" -"upgrade/main.log i /var/log/dist-upgrade-apt.log u vaše izvješće. " -"Nadogradnja se sada prekida.\n" -"Vaša originalna sources.list datoteka je spremljena u " -"/etc/apt/sources.list.distUpgrade." +"Molim, prijavite ovo kao bug i uključite datoteke /var/log/dist-upgrade/main." +"log i /var/log/dist-upgrade-apt.log u vaše izvješće. Nadogradnja se sada " +"prekida.\n" +"Vaša originalna sources.list datoteka je spremljena u /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -631,6 +644,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "Da spriječite gubitak podataka zatvorite sve programe i datoteke." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -678,6 +692,7 @@ msgid "%li seconds" msgstr "%li sekundi" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -700,6 +715,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -720,8 +736,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Ponovno pokretanje računala potrebno je za završetak " -"nadogradnje" +"Ponovno pokretanje računala potrebno je za završetak nadogradnje" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -812,6 +828,7 @@ msgstr "Nisam mogao dohvatiti bilješke izdanja" msgid "Please check your internet connection." msgstr "Molim, provjerite vašu internet vezu." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nisam mogao pokrenuti alat za nadogradnju" @@ -845,8 +862,7 @@ msgstr "Preuzimanje nije uspjelo" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" -"Preuzimanje nadogradnje nije uspjelo. Vjerojatno je problem u mreži. " +msgstr "Preuzimanje nadogradnje nije uspjelo. Vjerojatno je problem u mreži. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -914,14 +930,17 @@ msgstr "" "Preuzimanje popisa promjena nije uspjelo. \n" "Molim, provjerite svoju internet vezu." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Važne sigurnosne nadogradnje" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Preporučene nadogradnje" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Predložene nadogradnje" @@ -934,6 +953,7 @@ msgstr "Backporti" msgid "Distribution updates" msgstr "Nadogranje distribucije" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Druge nadogradnje" @@ -955,6 +975,7 @@ msgstr "_Odznači sve" msgid "_Check All" msgstr "Pro_vjeri sve" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -990,6 +1011,7 @@ msgstr "Verzija %(old_version)s u %(new_version)s" msgid "Version %s" msgstr "Verzija %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1014,6 +1036,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Novo izdanje distribucije, '%s', je dostupno" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Popis programa je oštećen" @@ -1028,19 +1051,23 @@ msgstr "" "upravitelja paketima \"Synaptic\" ili upišite \"sudo apt-get install -f\" u " "terminalu za ispravljanje ovog problema." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ništa" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1313,11 +1340,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Unesite kompletnu APT liniju repozitorija koji želite " -"dodati\n" +"Unesite kompletnu APT liniju repozitorija koji želite dodati\n" "\n" -"APT linija uključuje vrstu, lokaciju i komponente kanala, na primjer " -"\"deb http://ftp.debian.org sarge main\"." +"APT linija uključuje vrstu, lokaciju i komponente kanala, na primjer " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1403,190 +1430,233 @@ msgstr "Veličina prozora" msgid "Configure the sources for installable software and updates" msgstr "Podesi repozitorije i nadogradnje" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Održavani od strane zajednice" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Neslobodni upogonitelji za uređaje" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Neslobodni softver" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CDROM sa Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Službeno podržani Open Source softver" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Održavani od strane zajednice (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Softver održavan od strane zajednice" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Neslobodni pogonski programi" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Neslobodni upogonitelji za uređaje " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Ograničeni softver (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Softver ograničen autorskim pravom ili legalnim pitanjima" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CDROM s Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backport nadogradnje" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CDROM s Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 sigurnosne nadogradnje" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 osvježenja" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 backporti" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom sa Ubuntu 5.04 ' Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Službeno podržani" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 sigurnosne nadogradnje" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 nadogradnje" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 backporti" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Wart Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Održavani od strane zajednice (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Neslobodni (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom sa Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Više nisu službeno podržani" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Ograničeno autorsko pravo" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 sigurnosne nadogradnje" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 osvježenja" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" sigurnosne nadogradnje" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testni)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (nestabilni)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibilni programi sa neslobodnim ovisnostima" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG-nekompatibilni programi" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Preuzimam datoteku %li od %li nepoznatom brzinom" @@ -1637,8 +1707,8 @@ msgstr "DFSG-nekompatibilni programi" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Neke nadogradnje zahtijevaju uklanjanje pojedinih programa. Upotrijebite " #~ "opciju \"Označi sve nadogradnje\" upravitelja paketima \"Synaptic\" ili " @@ -1648,7 +1718,6 @@ msgstr "DFSG-nekompatibilni programi" #~ msgid "The following updates will be skipped:" #~ msgstr "Slijedeći paketi će biti preskočeni:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Otprilike je ostalo %li sekundi" @@ -1720,4 +1789,4 @@ msgstr "DFSG-nekompatibilni programi" #~ msgstr "Ubuntu 6.06 LTS osvježenja" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS backporti" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS backporti" diff --git a/po/hu.po b/po/hu.po index 05748370..a9ebcb98 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -55,6 +55,7 @@ msgstr "Egy hónap után" msgid "After %s days" msgstr "%s nap után" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s frissítés" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Fő kiszolgáló" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,13 +123,12 @@ msgid "Error removing the key" msgstr "Hiba a kulcs eltávolítása közben" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Az Ön által kijelölt kulcs nem távolítható el. Kérem jelentse ezt hibaként." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -165,6 +167,7 @@ msgstr "A szükséges meta-csomagok nem frissíthetőek" msgid "A essential package would have to be removed" msgstr "Egy alapvető csomag eltávolításra kerülne" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nem tudom megtervezni a frissítés menetét" @@ -178,9 +181,10 @@ msgid "" msgstr "" "A frissítés megtervezése közben feloldhatatlan probléma lépett fel.\n" "\n" -"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a " -"/var/log/dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." +"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a /var/log/" +"dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Hiba történt néhány csomag hitelesítése közben" @@ -206,6 +210,7 @@ msgid "" "bug. " msgstr "Egy szükséges csomag nem telepíthető. Kérem, jelentse ezt hibaként. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nem tudom megállapítani a meta-csomagot" @@ -224,11 +229,11 @@ msgstr "" " A folytatás előtt telepítse a fenti csomagok egyikét a synaptic vagy az apt-" "get használatával." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "A CD hozzáadsa meghiúsult" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -243,15 +248,15 @@ msgstr "" "A hibaüzenet:\n" "\"%s\"" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Gyorsítótár beolvasása" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Letölt adatokat a hálózatról a frissítéshez?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -263,11 +268,11 @@ msgstr "" "Ha gyors vagy olcsó hálózati kapcsolattal rendelkezik, válaszoljon igennel. " "Ha a hálózat elérése drásga, válaszoljon nemmel." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "nem található érvényes tükör" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -287,11 +292,12 @@ msgstr "" "frissítve. \n" "A \"Nem\" kiválasztása megszakítja a frissítést." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Alapértelmezett források ismételt előállítása?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -305,11 +311,11 @@ msgstr "" "Kíván alapértelmezett bejegyzéseket adni a következőhöz: %s? Ha a Nem " "gombott választja, a frissítés félbeszakad." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Érvénytelen csomagtároló információ" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -317,11 +323,11 @@ msgstr "" "A csomagtároló információ frissítése hibás fájlt eredményezett. Kérem, " "jelentse ezt hibaként." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "A külső források letiltva" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " @@ -331,11 +337,11 @@ msgstr "" "Újraengedélyezheti őket a frissítés után a Szoftvertulajdonságok eszközzel, " "vagy a Synaptic csomagkezelővel." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Hiba történt a frissítés közben" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -343,30 +349,31 @@ msgstr "" "Hiba lépett fel a frissítés közben. Ez többnyire hálózati problémára utal. " "Kérem, ellenőrizze a hálózati kapcsolatot és próbálja újra." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Nincs elég szabad hely a merevlemezen" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"A frissítés most meg fog szakadni. Szabadítson fel legalább %s helyet a(z) " -"%s lemezen. Ürítse a kukáját és törölje a korábbi telepítések átmeneti " +"A frissítés most meg fog szakadni. Szabadítson fel legalább %s helyet a(z) %" +"s lemezen. Ürítse a kukáját és törölje a korábbi telepítések átmeneti " "fájljait a \"sudo apt-get clean\" parancs kiadásával." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Biztosan el szeretné kezdeni a frissítést?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "A frissítések nem telepíthetők" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -377,14 +384,14 @@ msgstr "" "A frissítés most félbeszakad. Előfordulhat, hogy a rendszer használhatatlan " "állapotban van. Egy helyreállítás került futtatásra (dpkg --configure -a).\n" "\n" -"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a " -"/var/log/dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." +"Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a /var/log/" +"dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "A frissítések nem tölthetők le" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -392,11 +399,11 @@ msgstr "" "A frissítés most félbeszakad. Kérem, ellenőrizze a hálózati kapcsolatot vagy " "a telepítő médiát és próbálja újra. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Egyes alkalmazások támogatása megszűnt" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -411,23 +418,23 @@ msgstr "" "tároló), akkor ezek a csomagok a következő lépésben eltávolításra lesznek " "javasolva." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Eltávolítja az elavult csomagokat?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "Ezen lé_pés kihagyása" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Eltávolítás" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Hiba a módosítások rögzítése közben" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -435,26 +442,28 @@ msgstr "" "A frissítés befejező fázisa közben hiba lépett fel. Az alábbi üzenet további " "információkat tartalmaz a hibára vonatkozóan. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "A rendszer eredeti állapotának helyreállítása" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "\"%s\" visszaportolt változatának letöltése" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Csomagkezelő ellenőrzése" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "A frissítés előkészítése meghiúsult" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -464,15 +473,15 @@ msgstr "" "\"update-manager\" csomaghoz és vegye be a /var/log/dist-upgrade/ " "könyvtárban található fájlokat a hibajelentésbe." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Csomagtároló-információk frissítése" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Érvénytelen csomaginformációk" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -487,22 +496,23 @@ msgstr "" "csomaghoz és vegye be a /var/log/dist-upgrade/ könyvtárban található " "fájlokat a hibajelentésbe." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Megerősítés kérése" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Frissítés folyamatban" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Elavult szoftverek keresése" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "A rendszer frissítése befejeződött." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -524,12 +534,13 @@ msgid "About %s remaining" msgstr "Kb. %s van hátra" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Fájl letöltése: %li/%li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Módosítások alkalmazása..." @@ -548,6 +559,7 @@ msgstr "" "csomaghoz és vegye be a /var/log/dist-upgrade/ könyvtárban található " "fájlokat a hibajelentésbe." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -575,9 +587,9 @@ msgstr "Végzetes hiba történt" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Jelentse ezt hibaként és a hibajelentéshez mellékelje a /var/log/dist-" @@ -587,6 +599,7 @@ msgstr "" "mentésre." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -606,7 +619,7 @@ msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d csomag frissítve lesz." #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -630,6 +643,7 @@ msgstr "" "Az esetleges adatvesztés elkerülése érdekében zárjon be minden nyitott " "alkalmazást és dokumentumot." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -679,6 +693,7 @@ msgid "%li seconds" msgstr "%li másodperc" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -702,6 +717,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -813,6 +829,7 @@ msgstr "A kiadási megjegyzések nem tölthetők le" msgid "Please check your internet connection." msgstr "Kérjük ellenőrizze az internetkapcsolatát." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nem sikerült futtatni a frissítőeszközt" @@ -917,14 +934,17 @@ msgstr "" "A módosítások listájának letöltése meghiúsult.\n" "Ellenőrizze az internetkapcsolatát." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Fontos biztonsági frissítések" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Ajánlott frissítések" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Javasolt frissítések" @@ -937,6 +957,7 @@ msgstr "Visszaportolt csomagok" msgid "Distribution updates" msgstr "Disztribúciófrissítések" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Egyéb frissítések" @@ -958,6 +979,7 @@ msgstr "_Kijelölések törlése" msgid "_Check All" msgstr "Összes _ellenőrzése" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -991,6 +1013,7 @@ msgstr "Régi verzió: %(old_version)s, új verzió: %(new_version)s" msgid "Version %s" msgstr "%s verzió" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1015,6 +1038,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "A disztribúció új \"%s\" kiadása elérhető" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "A szoftverindex sérült" @@ -1029,19 +1053,23 @@ msgstr "" "csomagkezelőt vagy futtassa a \"sudo apt-get install -f\" parancsot egy " "terminálban a probléma megoldása érdekében." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nincs" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1054,8 +1082,8 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Saját kezűleg kell megkeresnie a rendelkezésre álló " -"frissítéseket\n" +"Saját kezűleg kell megkeresnie a rendelkezésre álló frissítéseket\n" "\n" "A rendszere jelenleg nem keresi automatikusan a frissítéseket. Ezt a " "viselkedést az Internetes frissítések lap Szoftverforrások " @@ -1068,8 +1096,8 @@ msgstr "Tartsa naprakészen a rendszerét" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Nem minden frissítés telepíthető \n" -" \n" +"Nem minden frissítés telepíthető\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1286,8 +1314,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"Az elérhető szoftverekkel kapcsolatos információk " -"elévültek\n" +"Az elérhető szoftverekkel kapcsolatos információk elévültek\n" "\n" "Szoftverek és frissítések telepítéséhez újonnan felvett vagy módosított " "forrásokból, újra le kell töltenie az elérhető szoftverekkel kapcsolatos " @@ -1323,11 +1351,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Adja meg a forrásként felvenni kívánt tároló teljes APT " -"sorát\n" +"Adja meg a forrásként felvenni kívánt tároló teljes APT sorát\n" "\n" -"Az APT sor tartalmazza a tároló típusát, helyét és összetevőit, például " -"\"deb http://ftp.debian.org sarge main\"." +"Az APT sor tartalmazza a tároló típusát, helyét és összetevőit, például " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1415,190 +1443,233 @@ msgstr "Az ablak mérete" msgid "Configure the sources for installable software and updates" msgstr "Telepíthető szoftverek és frissítések forrásának beállítása" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Közösségi karbantartású" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Szabadalmazott eszközmeghajtók" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Nem-szabad" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Az Ubuntu 6.10 \"Edgy Eft\" CD-ROM" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "A Canonical által támogatott nyílt forrású szoftverek" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Közösségi karbantartású (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Közösségi karbantartású nyílt forrású szoftverek" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Nem-szabad meghajtók" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Szabadalmazott eszközmeghajtók " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Nem-szabad szoftverek (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Szerzői vagy egyéb jogi problémák miatt korlátozott szoftver" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Az Ubuntu 6.06 LTS \"Dapper Drake\"-et tartalmazó CD-ROM" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Visszaportolt frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Az Ubuntu 5.10 \"Breezy Badger\"-t tartalmazó CD-ROM" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 biztonsági frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 visszaportolt csomagok" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Az Ubuntu 5.04 \"Hoary Hedgehog\"-ot tartalmazó CD-ROM" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Hivatalosan támogatott" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 biztonsági frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 visszaportolt csomagok" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Közösségi karbantartású (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nem-szabad (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Az Ubuntu 4.10 \"Warty Warthog\"-ot tartalmazó CD-ROM" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Hivatalosan már nem támogatott" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Szerzői jogi korlátozás alatt" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 biztonsági frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 frissítések" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 visszaportolt csomagok" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" biztonsági frissítések" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (tesztelés alatt)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (instabil)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibilis szoftver nem-szabad függőségekkel" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Nem DFSG-kompatibilis szoftver" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "%li. fájl letöltése, összesen: %li, ismeretlen sebességgel" @@ -1649,8 +1720,8 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Néhány frissítés további szoftverek eltávolítását igényli. Használja a " #~ "Synaptic csomagkezelő \"Minden frissítés kijelölése\" funkcióját, vagy " @@ -1660,7 +1731,6 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgid "The following updates will be skipped:" #~ msgstr "A következő frissítések ki lesznek hagyva:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Kb. %li másodperc van hátra" @@ -1685,7 +1755,8 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Zárja be a másik alkalmazást, például az aptitude vagy Synaptic programokat." +#~ "Zárja be a másik alkalmazást, például az aptitude vagy Synaptic " +#~ "programokat." #~ msgid "Channels" #~ msgstr "Csatornák" @@ -1731,4 +1802,4 @@ msgstr "Nem DFSG-kompatibilis szoftver" #~ msgstr "Ubuntu 6.06 LTS frissítések" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS visszaportolt csomagok" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS visszaportolt csomagok" diff --git a/po/id.po b/po/id.po index ed101ae8..9efb2317 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Andy Apdhani \n" "Language-Team: Indonesian \n" @@ -54,13 +54,15 @@ msgstr "Setelah satu bulan" msgid "After %s days" msgstr "Setelah %s hari" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "_Instal Update" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,13 +124,12 @@ msgid "Error removing the key" msgstr "Kesalahan menghapus kunci" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Berkas yang anda pilih tidak dapat dihapus. Silakan laporkan ini sebagai bug." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -166,6 +168,7 @@ msgstr "Tidak dapat memutakhirkan meta-paket yang dibutuhkan" msgid "A essential package would have to be removed" msgstr "Paket esensial akan dihapus" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menghitung pemutakhiran" @@ -181,6 +184,7 @@ msgstr "" "Terjadi masalah saat menghitung pemutakhiran. Silakan laporkan ini sebagai " "bug." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kesalahan membuktikan keabsahan beberapa paket" @@ -208,6 +212,7 @@ msgstr "" "Tidak memungkinkan untuk menginstal paket yang dibutuhkan. Silakan laporkan " "ini sebagai bug. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Tidak dapat menebak meta-paket" @@ -227,12 +232,12 @@ msgstr "" " Silakan instal dahulu salah satu paket di atas dengan menggunakan synaptic " "atau apt-get sebelum melanjutkan." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, fuzzy msgid "Failed to add the CD" msgstr "Gagal untuk fetch" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -242,15 +247,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Membaca cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -258,11 +263,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Tidak menemukan mirror yang valid" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -281,11 +286,12 @@ msgstr "" "pilih 'Yes' disini, berkas akan memutakhirkan semua entri '%s' ke '%s'.\n" "Jika anda pilih 'no' pemutakhiran akan dibatalkan." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Membuat sumber baku?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -298,11 +304,11 @@ msgstr "" "Haruskah entri baku untuk '%s' ditambahkan? Jika anda pilih 'No' " "pemutakhiran akan dibatalkan." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Informasi gudang tidak valid" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -310,11 +316,11 @@ msgstr "" "Meng-upgrade informasi gudang berakhir di dalam berkas yang tidak benar. " "Silakan laporkan ini sebagai bug." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Sumber dari pihak ketiga dilumpukan" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -325,11 +331,11 @@ msgstr "" "dapat mengaktifkan kembali setelah upgrade dengan alat 'software-properties' " "atau dengan synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Kesalahan pada waktu pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -337,11 +343,11 @@ msgstr "" "Terjadi masalah pada waktu pemutakhiran. Ini biasanya karena masalah " "jaringan, silakan periksa koneksi jaringan anda dan ulangi." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Kapasitas cakram tidak mencukupi" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -352,15 +358,16 @@ msgstr "" "cakram pada %s. Kosongkan sampah anda dan hapus paket sementara dari " "instalasi terdahulu dengan menggunakan 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Apakah anda ingin memulai pemutakhiran?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Tidak dapat menginstal pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -372,11 +379,11 @@ msgstr "" "Upgrade dibatalkan sekarang. Sistem anda dapat menjadi tidak dapat " "digunakan. Perbaikan sedang berjalan (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Tidak dapat mengunduh pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -384,11 +391,11 @@ msgstr "" "Upgrade dibatalkan sekarang. Silakan periksa koneksi internet anda atau " "media instalasi dan coba lagi nanti. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -403,23 +410,23 @@ msgstr "" "Jika anda tidak mengaktifkan komponen 'universe' paket ini akan diajurkan " "untuk penghapusan dalam langkah selanjutnya." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Hapus paket usang?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Lewati Langkah Ini" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Hapus" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Kesalahan pada waktu commit" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -427,27 +434,29 @@ msgstr "" "Beberapa kesalahan terjadi pada waktu pembersihan. Silakan lihat pesan di " "bawah untuk informasi lebih lanjut. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Sistem dikembalikan ke keadaan awal" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Memeriksa manajer paket" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Menyiapkan upgrade" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -457,16 +466,16 @@ msgstr "" "Terjadi masalah saat menghitung pemutakhiran. Silakan laporkan ini sebagai " "bug." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Memutakhirkan informasi gudang" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Informasi paket tidak valid" -#: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:726 +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -479,22 +488,23 @@ msgstr "" "Ini mengindikasikan adanya kesalahan serius, silakan laporkan ini sebagai " "bug." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Menanyakan konfigurasi" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Meng-upgrade" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Mencari perangkat lunak usang" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Upgrade sistem telah selesai." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -506,23 +516,24 @@ msgid "Fetching is complete" msgstr "Pemutakhiran selesai" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Mengunduh berkas %li dari %li pada %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:253 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "Sekitar %li menit lagi" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Mengunduh berkas %li dari %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Sahkan perubahan" @@ -538,8 +549,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -564,37 +576,38 @@ msgstr "Terjadi kesalahan fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Silakan laporkan ini sebagai bug dan sertakan berkas /var/log/dist-" -"upgrade.log dan /var/log/dist-upgrade-apt.log dalam laporan anda. Upgrade " -"akan dibatalkan sekarang. Berkas sources.list anda akan disimpan dalam " -"/etc/apt/sources.list.distUpgrade." +"Silakan laporkan ini sebagai bug dan sertakan berkas /var/log/dist-upgrade." +"log dan /var/log/dist-upgrade-apt.log dalam laporan anda. Upgrade akan " +"dibatalkan sekarang. Berkas sources.list anda akan disimpan dalam /etc/apt/" +"sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket akan dihapus." #: ../DistUpgrade/DistUpgradeViewGtk.py:506 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s paket baru akan diinstal." #: ../DistUpgrade/DistUpgradeViewGtk.py:512 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket akan diupgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -618,6 +631,7 @@ msgid "To prevent data loss close all open applications and documents." msgstr "" "Untuk mencegah kehilangan data silakan tutup seluruh aplikasi dan dokumen." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -645,12 +659,12 @@ msgid "Upgrade %s" msgstr "Upgrade %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy +#, fuzzy, python-format msgid "%li days %li hours %li minutes" msgstr "Sekitar %li hari %li jam %li menit lagi" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy +#, fuzzy, python-format msgid "%li hours %li minutes" msgstr "Sekitar %li jam %li menit lagi" @@ -665,6 +679,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -686,6 +701,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -799,6 +815,7 @@ msgstr "Tidak dapat mengunduh catatan luncuran" msgid "Please check your internet connection." msgstr "Silakan periksa koneksi internet anda." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Tidak dapat menjalankan alat upgrade" @@ -871,12 +888,12 @@ msgstr "" "dengan server. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Mengunduh berkas %li dari %li dengan %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Mengunduh berkas %li dari %li dengan %s/s" @@ -901,15 +918,18 @@ msgstr "" "Gagal mengunduh senarai dari perubahan. Silakan periksa koneksi Internet " "anda." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Pemutakhiran lewat Internet" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -925,6 +945,7 @@ msgstr "Ubuntu 6.06 LTS Backports" msgid "Distribution updates" msgstr "_Lanjutkan Upgrade" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -949,6 +970,7 @@ msgstr "" msgid "_Check All" msgstr "_Periksa" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -974,15 +996,16 @@ msgid "Checking for updates" msgstr "_Instal Update" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Versi baru: %s (Ukuran: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Versi %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -999,14 +1022,15 @@ msgid "" "information on upgrading." msgstr "" "Anda tidak akan mendapatkan perbaikan keamanan atau pemutakhiran penting " -"lebih lanjut. Upgrade ke versi berikut dari Ubuntu Linux. Lihat " -"http://www.ubuntu.com untuk informasi lebih lanjut." +"lebih lanjut. Upgrade ke versi berikut dari Ubuntu Linux. Lihat http://www." +"ubuntu.com untuk informasi lebih lanjut." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Luncuran distribusi baru '%s' telah tersedia" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Indeks perangkat lunak telah rusak" @@ -1021,19 +1045,23 @@ msgstr "" "Silakan gunakan manajer paket \"Synaptic\" atau jalankan \"sudo apt-get " "install -f\" dalam terminal untuk memperbaiki persoalan ini." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1313,8 +1341,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Masukkan baris lengkap APT dari kanal yang ingin anda tambah " -"\n" +"Masukkan baris lengkap APT dari kanal yang ingin anda tambah \n" "\n" "Baris APT menyertakan tipe, lokasi dan komponen dari kanal, sebagai contoh " "\"deb http://ftp.debian.org sarge main\"." @@ -1407,210 +1435,253 @@ msgstr "Ukuran jendela" msgid "Configure the sources for installable software and updates" msgstr "Mengatur kanal perangkat lunak dan pemutakhiran lewat internet" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Dikelola oleh komunitas (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Tidak-bebas (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS Updates" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Dikelola oleh komunitas (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Dikelola oleh komunitas (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Dikelola oleh komunitas (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Tidak-bebas (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Tidak-bebas (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 6.06 LTS Updates" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 6.06 LTS Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Resmi disokong" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 6.06 LTS Updates" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 6.06 LTS Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Dikelola oleh komunitas (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Tidak-bebas (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Beberapa perangkat lunak tidak lagi resmi disokong" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Hak cipta terlarang" +#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 6.06 LTS Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 6.06 LTS Updates" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 6.06 LTS Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Security Updates" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" "Perangkat Lunak yang sesuai dengan DFSG tapi tergantung pada Perangkat Lunak " "Tidak-Bebas" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Kecepatan mengunduh berkas %li dari %li tidak diketahui" @@ -1634,7 +1705,8 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Mengupgrade ke Ubuntu 6.06 LTS" +#~ "Mengupgrade ke Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1664,18 +1736,17 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Beberapa pemutakhiran butuh penghapusan perangkat lunak yang ada. Gunakan " #~ "fungsi \"Mark All Upgrades\" dari paket manajer paket \"Synaptic\" atau " -#~ "jalankan \"sudo apt-get dist-upgrade\"\" dalam terminal untuk memutakhirkan " -#~ "sistem anda." +#~ "jalankan \"sudo apt-get dist-upgrade\"\" dalam terminal untuk " +#~ "memutakhirkan sistem anda." #~ msgid "The following updates will be skipped:" #~ msgstr "Pemutakhiran berikut akan dilewati:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Sekitar %li detik lagi" @@ -1740,4 +1811,4 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG" #~ msgstr "_Custom" #~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 6.06 LTS" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS" diff --git a/po/it.po b/po/it.po index 6ec5d7ba..54e1bdde 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" @@ -56,6 +56,7 @@ msgstr "Dopo un mese" msgid "After %s days" msgstr "Dopo %s giorni" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s aggiornamenti" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Server principale" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,8 +126,7 @@ msgid "Error removing the key" msgstr "Errore nel rimuovere la chiave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "La chiave selezionata non può essere rimossa. Notificare questo evento come " "bug." @@ -158,8 +160,8 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Il sistema contiene pacchetti danneggiati che non possono essere aggiustati " -"con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-" -"get\" per risolvere il problema." +"con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-get" +"\" per risolvere il problema." #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -169,6 +171,7 @@ msgstr "Impossibile aggiornare i meta-pacchetti richiesti" msgid "A essential package would have to be removed" msgstr "Un pacchetto essenziale dovrebbe essere rimosso" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossibile calcolare l'aggiornamento" @@ -186,6 +189,7 @@ msgstr "" "Notificare questo evento come bug riguardo il pacchetto «update-manager» e " "includere nella notifica i file della cartella «/var/log/dist-upgrade»." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Errore nell'autenticare alcuni pacchetti" @@ -213,6 +217,7 @@ msgstr "" "Non è stato possibile installare un pacchetto richiesto. Notificare questo " "evento come bug. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossibile indovinare il meta-pacchetto" @@ -231,11 +236,11 @@ msgstr "" " Prima di procedere, usare \"synaptic\" o \"apt-get\" per installare uno dei " "pacchetti sopra menzionati." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Aggiunta del CD fallita" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -250,15 +255,15 @@ msgstr "" "Il messaggio di errore era:\n" "\"%s\"" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Lettura della cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Recuperare dalla rete i dati per l'aggiornamento?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -270,11 +275,11 @@ msgstr "" "Se si possiede un accesso alla rete veloce e economico rispondere \"Sì\". " "Altrimenti scegliere \"No\"." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Non è stato trovato alcun mirror valido" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -294,11 +299,12 @@ msgstr "" "tutte le voci «%s» verranno aggiornate a «%s»\n" "Scegliendo «No» l'aggiornamento verrà annullato." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Generare le sorgenti predefinite?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -312,11 +318,11 @@ msgstr "" "Aggiungere le voci predefinite per «%s»? Selezionando «No», l'aggiornamento " "verrà annullato." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Informazioni sul repository non valide" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -324,25 +330,25 @@ msgstr "" "L'aggiornamento delle informazioni sul repository ha generato un file non " "valido. Notificare questo evento come bug." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Sorgenti di terze parti disabilitate" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"Sono state disabilitate alcune voci di terze parti nel proprio file " -"«sources.list». È possibile abilitarle di nuovo dopo l'aggiornamento con lo " -"strumento «software-properties» o con synaptic." +"Sono state disabilitate alcune voci di terze parti nel proprio file «sources." +"list». È possibile abilitarle di nuovo dopo l'aggiornamento con lo strumento " +"«software-properties» o con synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Errore durante l'aggiornamento" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -350,11 +356,11 @@ msgstr "" "Si è verificato un problema durante l'aggiornamento. Solitamente si tratta " "di problemi di rete, controllare la connessione di rete e riprovare." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Spazio libero su disco insufficiente" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -365,15 +371,16 @@ msgstr "" "il cestino e rimuovere i pacchetti temporanei di precedenti installazione " "usando \"sudo apt-get clean\"." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Iniziare l'aggiornamento?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Impossibile installare gli aggiornamenti" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -385,14 +392,14 @@ msgstr "" "uno stato inutilizzabile. È stato eseguito un ripristino (dpkg --configure -" "a).\n" "\n" -"Riportare questo bug per il pacchetto 'update-manager' includendo i file in " -"/var/log/dist-upgrade/ nel rapporto." +"Riportare questo bug per il pacchetto 'update-manager' includendo i file in /" +"var/log/dist-upgrade/ nel rapporto." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Impossibile scaricare gli aggiornamenti" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -400,11 +407,11 @@ msgstr "" "Interruzione immediata dell'aggiornamento. Controllare la connessione a " "internet o il supporto di installazione e riprovare. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Supporto terminato per alcune applicazioni" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -419,23 +426,23 @@ msgstr "" "(«universe»), verrà suggerita la rimozione di questi pacchetti al prossimo " "passo." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Rimuovere i pacchetti obsoleti?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Salta questo passo" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Rimuovi" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Errore durante il commit" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -443,44 +450,46 @@ msgstr "" "Si sono verificati alcuni problemi durante la pulizia. Leggere il messaggio " "seguente per maggiori informazioni. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Ripristino dello stato originale del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Recupero del backport di «%s»" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Controllo del gestore di pacchetti" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Preparazione dell'aggiornamento fallito" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" "La preparazione del sistema per l'aggiornamento è fallito. Notificare questo " -"evento come bug per il pacchetto «update-manager» includendo i file in " -"«/var/log/dist-upgrade/» nel rapporto." +"evento come bug per il pacchetto «update-manager» includendo i file in «/var/" +"log/dist-upgrade/» nel rapporto." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Aggiornamento delle informazioni sui repository" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Informazioni di pacchetto non valide" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -495,22 +504,23 @@ msgstr "" "pacchetto «update-manager» includendo i file in «/var/log/dist-upgrade/» nel " "rapporto." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Richiesta di conferma" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Aggiornamento" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Ricerca di software obsoleto" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "L'aggiornamento del sistema è stato completato." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -538,6 +548,7 @@ msgstr "Recupero del file %li di %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Applicazione dei cambiamenti" @@ -556,6 +567,7 @@ msgstr "" "pacchetto «update-manager» e di includere i file in «/var/log/dist-upgrade/» " "nella segnalazione." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -583,18 +595,19 @@ msgstr "Si è verificato un errore fatale" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Segnalare questo evento come un bug e includere nella notifica i file " -"/var/log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log. " -"L'aggiornamento viene interrotto.\n" -"Il file sources.list originale è stato salvato in " -"/etc/apt/sources.list.distUpgrade." +"Segnalare questo evento come un bug e includere nella notifica i file /var/" +"log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log. L'aggiornamento " +"viene interrotto.\n" +"Il file sources.list originale è stato salvato in /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -641,6 +654,7 @@ msgstr "" "Per prevenire la perdita di dati, chiudere tutte le applicazioni e i " "documenti aperti." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -690,6 +704,7 @@ msgid "%li seconds" msgstr "%li secondi" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -711,6 +726,7 @@ msgstr "L'aggiornamento è finito ed è richiesto un riavvio. Riavviare ora?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -730,8 +746,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" -"Riavviare il sistema per completare l'aggiornamento" +msgstr "Riavviare il sistema per completare l'aggiornamento" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -822,6 +837,7 @@ msgstr "Impossibile scaricare le note di rilascio" msgid "Please check your internet connection." msgstr "Controllare la propria connessione a internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossibile eseguire lo strumento di aggiornamento" @@ -927,14 +943,17 @@ msgstr "" "Fallito lo scaricamento dell'elenco dei cambiamenti. \n" "Verificare la connessione a Internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Aggiornamenti di sicurezza importanti" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Aggiornamenti raccomandati" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Aggiornamenti proposti" @@ -947,6 +966,7 @@ msgstr "Backport" msgid "Distribution updates" msgstr "Aggiornamenti della distribuzione" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Altri aggiornamenti" @@ -968,6 +988,7 @@ msgstr "_Seleziona tutti" msgid "_Check All" msgstr "_Deseleziona tutti" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1002,6 +1023,7 @@ msgstr "Dalla versione %(old_version)s alla %(new_version)s" msgid "Version %s" msgstr "Versione %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1026,6 +1048,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "È disponibile il nuovo rilascio «%s» della distribuzione" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "L'indice del software è danneggiato" @@ -1040,19 +1063,23 @@ msgstr "" "dei pacchetti \"Synaptic\" o eseguire in un terminale \"sudo apt-get install " "-f\" per risolvere il problema." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Niente" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 kB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f kB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1423,203 +1450,246 @@ msgid "Configure the sources for installable software and updates" msgstr "" "Configura le sorgenti per gli aggiornamenti e per il software installabile" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 «Edgy Eft»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantenuto dalla comunità" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Driver proprietari per i dispositivi" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software con restrizioni" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM con Ubuntu 6.10 «Edgy Eft»" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS «Dapper Drake»" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Software open source supportato da Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantenuto dalla comunità (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software open source mantenuto dalla comunità" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Driver non liberi" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Driver proprietari per dispositivi " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software con restrizioni (multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software con restrizioni per copyright o motivi legali" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM con Ubuntu 6.06 LTS «Drapper Drake»" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Aggiornamenti di backport" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 «Breezy Badger»" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Aggiornamenti per Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Backport per Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 «Hoary Hedgehog»" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM con Ubuntu 5.04 «Hoary Hedgehog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Supportati ufficialmente" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Aggiornamenti per Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backport per Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 «Warty Warthog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantenuti dalla comunità (universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non libero (multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM con Ubuntu 4.10 «Warty Warthog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Software non più supportato ufficialmente" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright con restrizioni" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Aggiornamenti di sicurezza per Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Aggiornamenti per Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backport per Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 «Sarge»" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Aggiornamenti di sicurezza per Debian 3.1 «Sarge»" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian «Etch» (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian «Sid» (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatibile con le DFSG con dipendenze non libere" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software non compatibile con le DFSG" #~ msgid "" -#~ "You will loose all customizations, that have been made by yourself or by a " -#~ "script, if you replace the file by its latest version." +#~ "You will loose all customizations, that have been made by yourself or by " +#~ "a script, if you replace the file by its latest version." #~ msgstr "" -#~ "Sostituendo il file con la sua versione più recente, andranno perse tutte le " -#~ "personalizzazioni apportate dall'utente o da uno script." +#~ "Sostituendo il file con la sua versione più recente, andranno perse tutte " +#~ "le personalizzazioni apportate dall'utente o da uno script." -#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " -#~ "DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a " +#~ "1Mbit DSL connection" #~ msgstr "" -#~ "Questo scaricamento richiederà circa %s con un modem 56k e circa %s con una " -#~ "connessione DSL da 1Mbit" +#~ "Questo scaricamento richiederà circa %s con un modem 56k e circa %s con " +#~ "una connessione DSL da 1Mbit" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" @@ -1638,7 +1708,6 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Software con restrizioni per copyright o questioni legali" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Scaricamento del file %li di %li a velocità sconosciuta" @@ -1687,18 +1756,17 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Alcuni aggiornamenti richiedono la rimozione di altri programmi. Utilizzare " -#~ "la funzione \"Marca tutti gli aggiornamenti\" del gestore di pacchetti " -#~ "\"Synaptic\" o inserire il comando \"sudo apt-get dist-upgrade\" in un " -#~ "terminale per aggiornare completamente il sistema." +#~ "Alcuni aggiornamenti richiedono la rimozione di altri programmi. " +#~ "Utilizzare la funzione \"Marca tutti gli aggiornamenti\" del gestore di " +#~ "pacchetti \"Synaptic\" o inserire il comando \"sudo apt-get dist-upgrade" +#~ "\" in un terminale per aggiornare completamente il sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "I seguenti aggiornamenti saranno tralasciati:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Circa %li secondi rimanenti" @@ -1707,7 +1775,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "Interruzione immediata dell'aggiornamento. Notificare questo evento come bug." +#~ "Interruzione immediata dell'aggiornamento. Notificare questo evento come " +#~ "bug." #~ msgid "Upgrading Ubuntu" #~ msgstr "Aggiornamento di Ubuntu" @@ -1726,8 +1795,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Chiudere tutte le altre applicazioni come \"aptitude\" o \"Synaptic\" prima " -#~ "di continuare." +#~ "Chiudere tutte le altre applicazioni come \"aptitude\" o \"Synaptic\" " +#~ "prima di continuare." #~ msgid "Channels" #~ msgstr "Canali" @@ -1780,27 +1849,27 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Nessuna voce valida trovata" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" -#~ "Durante la scansione delle informazioni sui repository, non è stata trovata " -#~ "alcuna voce valida per l'aggiornamento.\n" +#~ "Durante la scansione delle informazioni sui repository, non è stata " +#~ "trovata alcuna voce valida per l'aggiornamento.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery is now run (dpkg --configure -a)." #~ msgstr "" -#~ "Interruzione immediata dell'aggiornamento. Il sistema potrebbe essere in uno " -#~ "stato inutilizzabile. Verrà avviata una procedura di ripristino (dpkg --" -#~ "configure -a)." +#~ "Interruzione immediata dell'aggiornamento. Il sistema potrebbe essere in " +#~ "uno stato inutilizzabile. Verrà avviata una procedura di ripristino (dpkg " +#~ "--configure -a)." #~ msgid "" #~ "Please report this as a bug and include the files ~/dist-upgrade.log and " #~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " #~ msgstr "" -#~ "Notificare questo evento come bug e includere nella notifica i file \"~/dist-" -#~ "upgrade.log\" e \"~/dist-upgrade-apt.log\". L'aggiornamento viene interrotto " -#~ "ora. " +#~ "Notificare questo evento come bug e includere nella notifica i file \"~/" +#~ "dist-upgrade.log\" e \"~/dist-upgrade-apt.log\". L'aggiornamento viene " +#~ "interrotto ora. " #~ msgid "You can install one update" #~ msgid_plural "You can install %s updates" @@ -1820,8 +1889,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Analysing your system\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "Analisi del sistema in uso\n" #~ "\n" @@ -1829,8 +1898,8 @@ msgstr "Software non compatibile con le DFSG" #~ "vulnerabilità di sicurezza e fornire nuove funzionalità." #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "Gli aggiornamenti software possono correggere errori, eliminare " #~ "vulnerabilità di sicurezza e fornire nuove funzionalità." @@ -1841,18 +1910,18 @@ msgstr "Software non compatibile con le DFSG" #~ "installed therefor" #~ msgstr "" #~ "L'installazione automatica è limitata ai soli aggiornamenti di sicurezza " -#~ "provenienti dai server Ubuntu ufficiali. Il pacchetto software \"unattended-" -#~ "upgrades\" deve perciò essere installato" +#~ "provenienti dai server Ubuntu ufficiali. Il pacchetto software " +#~ "\"unattended-upgrades\" deve perciò essere installato" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line contains the type, location and sections of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Inserire la riga APT completa del canale che si vuole " -#~ "aggiungere\n" +#~ "Inserire la riga APT completa del canale che si vuole aggiungere\n" #~ "\n" #~ "La riga APT contiene il tipo, la posizione e le sezioni di un canale, ad " #~ "esempio \"deb http://ftp.debian.org sarge main\"" @@ -1871,8 +1940,8 @@ msgstr "Software non compatibile con le DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Download delle modifiche in " -#~ "corso\n" +#~ "Download delle modifiche in corso\n" #~ "\n" #~ "Devo scaricare le modifiche dal server centrale" @@ -1914,11 +1983,11 @@ msgstr "Software non compatibile con le DFSG" #~ "permette di verificare l'integrità del software che scarichi." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Aggiungi un nuovo file per una chiave nel portachiavi fidato. Assicurati di " -#~ "aver ricevuto la chiave attraverso un canale sicuro e di fidarti del " +#~ "Aggiungi un nuovo file per una chiave nel portachiavi fidato. Assicurati " +#~ "di aver ricevuto la chiave attraverso un canale sicuro e di fidarti del " #~ "proprietario. " #~ msgid "Add repository..." @@ -1946,8 +2015,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Dimensione massima in MB:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Ripristina le chiavi di default della distribuzione.\n" #~ "Questo non modificherà le chiavi installate dal'utente." @@ -1979,13 +2048,13 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Aggiornamenti Disponibili\n" #~ "\n" -#~ "I seguenti pacchetti possono essere aggiornati. Puoi aggiornarli usando il " -#~ "pulsante Installa." +#~ "I seguenti pacchetti possono essere aggiornati. Puoi aggiornarli usando " +#~ "il pulsante Installa." #~ msgid "Cancel downloading the changelog" #~ msgstr "Cancella il download delle modifiche" @@ -2020,7 +2089,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "Ubuntu CD Image Automatic Signing Key " #~ msgstr "" -#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu " +#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu " #~ msgid "Choose a key-file" #~ msgstr "Scegli un file di chiave" @@ -2045,7 +2115,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr[1] "" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Hai selezionato %s pacchetti su %s, dimensione %s" #~ msgstr[1] "" @@ -2053,8 +2124,8 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Gli aggiornamenti sono in fase di applicazione." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Puoi eseguire una sola applicazione di gestione dei pacchetti " #~ "contemporaneamente. Per favore prima chiudi quest'altra applicazione." @@ -2070,27 +2141,28 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Per favore aggiornati ad una nuova versione di Ubuntu Linux. La versione che " -#~ "stai usando non riceverà più aggiornamenti di sicurezza o altri " -#~ "aggiornamenti critici. Per favore guarda su http://www.ubuntulinux.org per " -#~ "informazioni riguardo all'aggiornamento." +#~ "Per favore aggiornati ad una nuova versione di Ubuntu Linux. La versione " +#~ "che stai usando non riceverà più aggiornamenti di sicurezza o altri " +#~ "aggiornamenti critici. Per favore guarda su http://www.ubuntulinux.org " +#~ "per informazioni riguardo all'aggiornamento." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "È disponibile una nuova release di Ubuntu!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Una nuova release con nome '%s' è disponbile. Per favore guarda su " -#~ "http://www.ubuntulinux.org/ per informazioni sull'aggiornamento" +#~ "Una nuova release con nome '%s' è disponbile. Per favore guarda su http://" +#~ "www.ubuntulinux.org/ per informazioni sull'aggiornamento" #~ msgid "Never show this message again" #~ msgstr "Non mostrare più questo messaggio" #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" -#~ "Modifiche non trovate, il server potrebbe non essere stato ancora aggiornato." \ No newline at end of file +#~ "Modifiche non trovate, il server potrebbe non essere stato ancora " +#~ "aggiornato." diff --git a/po/ja.po b/po/ja.po index 58fca3a6..bfa72652 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: Ubuntu Japanese Team \n" @@ -56,13 +56,15 @@ msgstr "1ヶ月後" msgid "After %s days" msgstr "%s 日後" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "アップデートをインストール中" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "メインサーバ" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -114,19 +117,19 @@ msgstr "選択したファイルのインポートエラー" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "選択したファイルはGPG鍵ファイルではないか、壊れている可能性があります。" +msgstr "" +"選択したファイルはGPG鍵ファイルではないか、壊れている可能性があります。" #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "鍵削除のエラー" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "選択した鍵を削除できませんでした。バグとして報告してください。" #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -153,7 +156,8 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれています。 Synaptic や apt-get を使って最初に修正してください。" +"システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれていま" +"す。 Synaptic や apt-get を使って最初に修正してください。" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -163,6 +167,7 @@ msgstr "要求されたメタパッケージがアップグレードできませ msgid "A essential package would have to be removed" msgstr "必須パッケージが削除されます" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "アップグレードが算定できません" @@ -176,6 +181,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "算定中に解決できない問題がおきました。バグとして報告してください。" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "いくつかのパッケージが認証されませんでした" @@ -186,9 +192,9 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"" -"いくつかのパッケージが認証できませんでした。これはおそらく一時的なネットワークの問題でしょう。あとで再び試してみてください。下に認証できなかったパッケージが" -"表示されます。" +"いくつかのパッケージが認証できませんでした。これはおそらく一時的なネットワー" +"クの問題でしょう。あとで再び試してみてください。下に認証できなかったパッケー" +"ジが表示されます。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -199,8 +205,10 @@ msgstr "'%s' がインストールできません" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "要求されたパッケージのインストールができません。バグとして報告してください。 " +msgstr "" +"要求されたパッケージのインストールができません。バグとして報告してください。 " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "メタパッケージを推測できません" @@ -213,15 +221,17 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"システムに ubuntu-desktop, kubuntu-desktop ないし edubuntu-desktop パッケージ " -"が含まれていません。また、実行している ubuntu のバージョンが検出できません。 \n" -" 開始前に Synaptic や apt-get を使用して上記のパッケージのうちのひとつをインストールしてください。" +"システムに ubuntu-desktop, kubuntu-desktop ないし edubuntu-desktop パッケー" +"ジ が含まれていません。また、実行している ubuntu のバージョンが検出できませ" +"ん。 \n" +" 開始前に Synaptic や apt-get を使用して上記のパッケージのうちのひとつをイン" +"ストールしてください。" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "CDの追加に失敗しました" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -230,34 +240,37 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"CD の追加に失敗したため、アップグレードは終了されます。この CD が正規の Ubuntu CD の場合は、このことをバグとして報告してください。\n" +"CD の追加に失敗したため、アップグレードは終了されます。この CD が正規の " +"Ubuntu CD の場合は、このことをバグとして報告してください。\n" "\n" "エラーメッセージ:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "キャッシュを読み込み中" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "アップグレードをするためにネットワーク経由でデータを取得しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" -"アップグレードは、ネットワークを利用して最新のアップデートを確認し、現在の CD に無いパッケージを取得することができます。\n" -"高速、または安価なネットワークアクセスがある場合は、ここで 'はい' を選んでください。そのようなネットワークが無い場合は 'いいえ' を選んでください。" +"アップグレードは、ネットワークを利用して最新のアップデートを確認し、現在の " +"CD に無いパッケージを取得することができます。\n" +"高速、または安価なネットワークアクセスがある場合は、ここで 'はい' を選んでく" +"ださい。そのようなネットワークが無い場合は 'いいえ' を選んでください。" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "正しいミラーが見つかりません" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -268,16 +281,19 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"リポジトリ情報をスキャン中、アップグレードのためのミラーエントリが見つかりませんでした。内部ミラーないしミラー情報が古いと思われます。\n" +"リポジトリ情報をスキャン中、アップグレードのためのミラーエントリが見つかりま" +"せんでした。内部ミラーないしミラー情報が古いと思われます。\n" "\n" -"'sources.list' ファイルを書き換えますか? 'はい' を選択すると '%s' エントリを '%s' エントリにアップデートします。 " -"'いいえ' を選択するとアップデートをキャンセルします。" +"'sources.list' ファイルを書き換えますか? 'はい' を選択すると '%s' エントリ" +"を '%s' エントリにアップデートします。 'いいえ' を選択するとアップデートを" +"キャンセルします。" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "標準のソースを生成しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -287,64 +303,72 @@ msgid "" msgstr "" "'sources.list' をスキャン中、 '%s' の正しいエントリが見つかりませんでした。\n" "\n" -"'%s' のデフォルトエントリを追加しますか? 'いいえ' を選択するとアップデートをキャンセルします。" +"'%s' のデフォルトエントリを追加しますか? 'いいえ' を選択するとアップデートを" +"キャンセルします。" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "リポジトリ情報が無効です" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "リポジトリ情報をアップグレード中に無効なファイルを生成しました。バグとして報告してください。" +msgstr "" +"リポジトリ情報をアップグレード中に無効なファイルを生成しました。バグとして報" +"告してください。" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "公式ではないソースが無効になりました" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"sources.list にある公式ではないエントリを無効にしました。再び有効にするには、アップグレード後に 'ソフトウェアの配布元' ツールか " -"Synaptic を使用してください。" +"sources.list にある公式ではないエントリを無効にしました。再び有効にするには、" +"アップグレード後に 'ソフトウェアの配布元' ツールか Synaptic を使用してくださ" +"い。" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "アップデート中にエラー発生" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." -msgstr "アップデート中に問題が発生しました。おそらくある種のネットワークの問題です。ネットワーク接続をチェックし、再びアップデートしてください。" +msgstr "" +"アップデート中に問題が発生しました。おそらくある種のネットワークの問題です。" +"ネットワーク接続をチェックし、再びアップデートしてください。" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "ディスクの空き領域が足りません" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"アップグレードを中断しました。少なくとも %s の空き容量を %s に用意してください。ごみ箱を空にし、'sudo apt-get clean' " -"コマンドを実行して以前インストールした一時パッケージを削除してください。" +"アップグレードを中断しました。少なくとも %s の空き容量を %s に用意してくださ" +"い。ごみ箱を空にし、'sudo apt-get clean' コマンドを実行して以前インストールし" +"た一時パッケージを削除してください。" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "アップグレードを開始しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "アップグレードをインストールできません" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -352,27 +376,29 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"アップグレードを中断しました。システムが使用できない状態になっている可能性があります。ただいま修正を実行中です (dpkg --configure -" -"a)。\n" +"アップグレードを中断しました。システムが使用できない状態になっている可能性が" +"あります。ただいま修正を実行中です (dpkg --configure -a)。\n" "\n" -"このバグを 'update-manager' パッケージのバグとして報告して下さい。その際、バグ報告に /var/log/dist-upgrade/ " -"中のファイルを含めて下さい。" +"このバグを 'update-manager' パッケージのバグとして報告して下さい。その際、バ" +"グ報告に /var/log/dist-upgrade/ 中のファイルを含めて下さい。" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "アップグレードをダウンロードできません" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -msgstr "アップグレードを中断しました。インターネット接続またはインストールメディア(CD-ROMなど)をチェックし。再試行してください。 " +msgstr "" +"アップグレードを中断しました。インターネット接続またはインストールメディア" +"(CD-ROMなど)をチェックし。再試行してください。 " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -381,53 +407,59 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"インストールされているこれらのパッケージは、もう公式にサポートされておらず、コミュニティサポートになっています('universe')。\n" +"インストールされているこれらのパッケージは、もう公式にサポートされておらず、" +"コミュニティサポートになっています('universe')。\n" "\n" -"'universe' を有効にしないと、これらのパッケージは次のステップで削除することを提案します。" +"'universe' を有効にしないと、これらのパッケージは次のステップで削除することを" +"提案します。" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "不要なパッケージを削除しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "このステップをスキップ(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "削除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "コミット中にエラー" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "クリーンアップ中になんらかの問題が発生しました。下記の詳しいメッセージをご覧ください。 " +msgstr "" +"クリーンアップ中になんらかの問題が発生しました。下記の詳しいメッセージをご覧" +"ください。 " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "システムを元に戻し中" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "パッケージマネージャをチェック中" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "アップグレードの準備中" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -435,16 +467,16 @@ msgid "" "upgrade/ in the bugreport." msgstr "算定中に解決できない問題がおきました。バグとして報告してください。" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "リポジトリ情報をアップデート" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "無効なパッケージ情報" -#: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:726 +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -455,22 +487,23 @@ msgstr "" "パッケージ情報のアップデートのあと、重要パッケージ '%s' が見つかりません。\n" "このメッセージは深刻なエラーです。バグとして報告してください。" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "確認する" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "アップグレード中" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "古いソフトウェアを検索する" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "システムのアップグレードが完了しました。" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -482,23 +515,24 @@ msgid "Fetching is complete" msgstr "アップデートが完了しました" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "ダウンロード中: %li のうち %li 速度 %s/秒" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:253 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "およそ残り %li 分" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "%i のうち %i をダウンロード中" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "変更を適用中" @@ -514,6 +548,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -540,16 +575,18 @@ msgstr "重大なエラーが発生しました" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"~/dist-upgrade.log と ~/dist-upgrade-apt.log " -"を含めて不具合として報告してください。アップグレードは中断しました。\n" -"元の sources.list は /etc/apt/sources.list.distUpgrade として保存されています。" +"~/dist-upgrade.log と ~/dist-upgrade-apt.log を含めて不具合として報告してくだ" +"さい。アップグレードは中断しました。\n" +"元の sources.list は /etc/apt/sources.list.distUpgrade として保存されていま" +"す。" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -569,7 +606,7 @@ msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d 個のパッケージがアップグレードされます。" #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -583,12 +620,17 @@ msgstr "" msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "アップグレードの取得とインストールには数時間かかり、今後一切キャンセルはできません。" +msgstr "" +"アップグレードの取得とインストールには数時間かかり、今後一切キャンセルはでき" +"ません。" #: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." -msgstr "データの損失を避けるため、すべてのアプリケーションとドキュメントを閉じてください。" +msgstr "" +"データの損失を避けるため、すべてのアプリケーションとドキュメントを閉じてくだ" +"さい。" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -636,6 +678,7 @@ msgid "%li seconds" msgstr "%li 秒" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -655,6 +698,7 @@ msgstr "アップグレードが終了しました。再起動が必要ですが #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -669,11 +713,13 @@ msgid "" msgstr "" "アップグレードをキャンセルしますか?\n" "\n" -"アップグレードをキャンセルすると、おそらくシステムは不安定な状態になります。アップグレードを再開することを強くおすすめします。" +"アップグレードをキャンセルすると、おそらくシステムは不安定な状態になります。" +"アップグレードを再開することを強くおすすめします。" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "アップグレードを完了するためにシステムの再起動が必要です" +msgstr "" +"アップグレードを完了するためにシステムの再起動が必要です" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -764,6 +810,7 @@ msgstr "リリースノートををダウンロードできません" msgid "Please check your internet connection." msgstr "インターネット接続を確認してください。" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "アップグレードツールを実行できません" @@ -805,7 +852,9 @@ msgstr "抽出に失敗しました" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "アップグレードの抽出に失敗しました。おそらくネットワークまたはサーバの問題です。 " +msgstr "" +"アップグレードの抽出に失敗しました。おそらくネットワークまたはサーバの問題で" +"す。 " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -815,7 +864,9 @@ msgstr "検証に失敗しました" msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "アップグレードの検証に失敗しました。ネットワーク接続もしくはサーバに問題があるかもしれません。 " +msgstr "" +"アップグレードの検証に失敗しました。ネットワーク接続もしくはサーバに問題があ" +"るかもしれません。 " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -825,12 +876,15 @@ msgstr "認証に失敗しました" msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "アップグレードの認証に失敗しました。おそらくネットワークまたはサーバの問題です。 " +msgstr "" +"アップグレードの認証に失敗しました。おそらくネットワークまたはサーバの問題で" +"す。 " #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "%(total)li のうち %(current)li 番目のファイルをダウンロード中 (%(speed)s/秒)" +msgstr "" +"%(total)li のうち %(current)li 番目のファイルをダウンロード中 (%(speed)s/秒)" #: ../UpdateManager/GtkProgress.py:113 #, python-format @@ -854,17 +908,22 @@ msgstr "" msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "変更点の取得に失敗しました。インターネットに接続されているか確認してください。" +msgstr "" +"変更点の取得に失敗しました。インターネットに接続されているか確認してくださ" +"い。" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 セキュリティアップデート" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -880,6 +939,7 @@ msgstr "Ubuntu 6.04 バックポート" msgid "Distribution updates" msgstr "アップグレードを再開する(_R)" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -904,6 +964,7 @@ msgstr "すべてのチェックをはずす(_U)" msgid "_Check All" msgstr "チェック(_C)" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -929,7 +990,7 @@ msgid "Checking for updates" msgstr "インストールできるアップデートをチェック" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "新しいバージョン: %s (サイズ: %s)" @@ -938,6 +999,7 @@ msgstr "新しいバージョン: %s (サイズ: %s)" msgid "Version %s" msgstr "バージョン %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -953,7 +1015,8 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"セキュリティフィックスやアップデートはもう提供されません。最新バージョンの Ubuntu Linux にアップグレードしてください。 \n" +"セキュリティフィックスやアップデートはもう提供されません。最新バージョンの " +"Ubuntu Linux にアップグレードしてください。\r\n" "アップグレードに関する詳細な情報は http://www.ubuntu.com をご覧ください。" #: ../UpdateManager/UpdateManager.py:863 @@ -961,6 +1024,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "新しいディストリビューション '%s' にアップグレードできます" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "ソフトウェアのインデックスが壊れています" @@ -971,22 +1035,27 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"何らかのソフトウェアがインストールないし削除できません。 \"Synaptic\" パッケージマネージャを使用するか、 まずこの問題を解決するために " -"\"sudo apt-get install -f\" コマンドをターミナルで実行してください。" +"何らかのソフトウェアがインストールないし削除できません。 \"Synaptic\" パッ" +"ケージマネージャを使用するか、 まずこの問題を解決するために \"sudo apt-get " +"install -f\" コマンドをターミナルで実行してください。" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "なし" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1001,9 +1070,8 @@ msgid "" msgstr "" "アップデートの情報を手動でチェックしてください\n" "\n" -"" -"システムはアップデートを自動的にチェックしません。この動作の変更は、ソフトウェアの配布元インターネットアップデートタブで行いま" -"す。" +"システムはアップデートを自動的にチェックしません。この動作の変更は、ソフト" +"ウェアの配布元インターネットアップデートタブで行います。" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1012,8 +1080,8 @@ msgstr "システムを最新の状態にする" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"一部のアップデートだけがインストールされました \n" -" \n" +"一部のアップデートだけがインストールされました\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1064,7 +1132,9 @@ msgstr "ソフトウェアのアップデート" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "ソフトウェアアップデートはエラーを訂正し、セキュリティホールを修正し、新機能を提供します。" +msgstr "" +"ソフトウェアアップデートはエラーを訂正し、セキュリティホールを修正し、新機能" +"を提供します。" #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1159,7 +1229,9 @@ msgstr "インターネットアップデート" msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" -msgstr "公式な Ubuntu サーバからのセキュリティアップデートだけ自動的にインストールされます。" +msgstr "" +"公式な Ubuntu サーバからのセキュリティアップデートだけ自動的にインストールさ" +"れます。" #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" @@ -1221,7 +1293,8 @@ msgid "" msgstr "" "チャンネルの情報が古いです\n" "\n" -"新規追加ないし変更したチャンネルからインストールまたはアップデートを行うため、チャンネルを再読み込みしてください。\n" +"新規追加ないし変更したチャンネルからインストールまたはアップデートを行うた" +"め、チャンネルを再読み込みしてください。\n" "\n" "続けるためには、インターネット接続が有効になっている必要があります。" @@ -1256,8 +1329,8 @@ msgid "" msgstr "" "追加したい完全な APT line を入力してください。\n" "\n" -"APT lineにはタイプ、場所、チャンネルのセクションなどを含めることができます。例:\"deb http://ftp.debian.org " -"sarge main\"" +"APT lineにはタイプ、場所、チャンネルのセクションなどを含めることができます。" +"例:\"deb http://ftp.debian.org sarge main\"" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1301,7 +1374,9 @@ msgstr "アップデートマネージャー" msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." -msgstr "現在使用中のディストリビューションの最新バージョンが存在する場合自動的にチェックし、可能ならアップグレードを提案する" +msgstr "" +"現在使用中のディストリビューションの最新バージョンが存在する場合自動的に" +"チェックし、可能ならアップグレードを提案する" #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" @@ -1314,7 +1389,8 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"アップデートの自動チェックを無効にすると、チャンネルリストを手動で再読み込みしなければなりません。このオプションはその場合の催促をしないようにします。" +"アップデートの自動チェックを無効にすると、チャンネルリストを手動で再読み込み" +"しなければなりません。このオプションはその場合の催促をしないようにします。" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1344,196 +1420,240 @@ msgstr "ウィンドウのサイズ" msgid "Configure the sources for installable software and updates" msgstr "ソフトウェアチャンネルとインターネットアップデートを設定" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "コミュニティによるメンテナンス" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "デバイス用のプロプライエタリなドライバ" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "制限のあるソフトウェア" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft' のCD-ROM" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Canonical によってサポートされるオープンソースソフトウェア" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "コミュニティによるメンテナンス (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "コミュニティによるメンテナンスされるオープンソースソフトウェア" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "フリーではないドライバ" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "デバイス用のプロプライエタリなドライバ " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "制限されたソフトウェア (Multiuniverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake' の CD-ROM" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "バックポートされたアップデート" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu·5.10·'Breezy·Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu·5.10·'Breezy·Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 セキュリティアップデート" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 アップデート" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 バックポート" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officially supported" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 セキュリティアップデート" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 アップデート" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 バックポート" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu·5.10·'Breezy·Badger'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Community maintained (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiuniverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog' のCD-ROM" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "いくつかのソフトウェアはもう公式にサポートされません" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 セキュリティアップデート" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 アップデート" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 バックポート" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian·3.1·\"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian·3.1·\"Sarge\"·セキュリティアップデート" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian·\"Etch\"·(testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian·\"Sid\"·(unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "非フリーな依存関係のあるDFSG適合ソフトウェア" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSGに適合しないソフトウェア" @@ -1542,7 +1662,6 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "アメリカ合衆国外への輸出が禁止されているソフトウェア" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "ダウンロード中: 速度不明で %li のうち %li" @@ -1566,7 +1685,8 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Ubuntu 6.06 LTS にアップデート中" +#~ "Ubuntu 6.06 LTS にアップデート中" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1587,23 +1707,25 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "" #~ "システムを解析中です\n" #~ "\n" -#~ "ソフトウェアアップデートはエラーを修正し、セキュリティホールを修正し、新機能を提供します。" +#~ "ソフトウェアアップデートはエラーを修正し、セキュリティホールを修正し、新機" +#~ "能を提供します。" #~ msgid "Oficially supported" #~ msgstr "公式サポート" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "ほかのソフトを削除しなければならないアップデートがあります。完全にアップグレードするためにはパッケージマネージャ \"Synaptic\" の " -#~ "\"すべてのアップグレードににマーク\"機能を使うか。端末から \"sudo apt-get dist-upgrade\" を実行してください。" +#~ "ほかのソフトを削除しなければならないアップデートがあります。完全にアップグ" +#~ "レードするためにはパッケージマネージャ \"Synaptic\" の \"すべてのアップグ" +#~ "レードににマーク\"機能を使うか。端末から \"sudo apt-get dist-upgrade\" を" +#~ "実行してください。" #~ msgid "The following updates will be skipped:" #~ msgstr "これらのパッケージはアップグレードされません:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "およそ残り %li 秒" @@ -1623,11 +1745,14 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "詳細を表示" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "ソフトウェアマネージメントツールは同時に1つしか実行することができません" +#~ msgstr "" +#~ "ソフトウェアマネージメントツールは同時に1つしか実行することができません" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." -#~ msgstr "まず 'aptitude' または 'Synaptic' など、ほかのアプリケーションを終了してください。" +#~ msgstr "" +#~ "まず 'aptitude' または 'Synaptic' など、ほかのアプリケーションを終了してく" +#~ "ださい。" #~ msgid "Channels" #~ msgstr "チャンネル" @@ -1679,9 +1804,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "Ubuntu 6.06 LTS バックポート" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" -#~ msgstr "アップグレードするためにリポジトリ情報を調べている際、正しくないエントリがみつかりました。\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" +#~ msgstr "" +#~ "アップグレードするためにリポジトリ情報を調べている際、正しくないエントリが" +#~ "みつかりました。\n" #~ msgid "Repositories changed" #~ msgstr "リポジトリが変更されました" @@ -1689,17 +1816,20 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" -#~ msgstr "変更点を有効にするためにパッケージリストをサーバから再取得する必要があります。今すぐ実行しますか?" +#~ msgstr "" +#~ "変更点を有効にするためにパッケージリストをサーバから再取得する必要がありま" +#~ "す。今すぐ実行しますか?" #~ msgid "Sections" #~ msgstr "セクション:" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. Please try " -#~ "'sudo apt-get install -f' or Synaptic to fix your system." +#~ "The upgrade aborts now. Your system can be in an unusable state. Please " +#~ "try 'sudo apt-get install -f' or Synaptic to fix your system." #~ msgstr "" -#~ "アップグレードを中断しました。システムが不安定な状態になっています。システムを修正するために 'sudo apt-get install -f ' " -#~ "または Synapticを試してみてください。" +#~ "アップグレードを中断しました。システムが不安定な状態になっています。システ" +#~ "ムを修正するために 'sudo apt-get install -f ' または Synapticを試してみて" +#~ "ください。" #~ msgid "Remove obsolete Packages?" #~ msgstr "古いパッケージ削除しますか?" @@ -1708,18 +1838,19 @@ msgstr "DFSGに適合しないソフトウェア" #~ "Upgrading to Ubuntu \"Dapper\" " #~ "6.04" #~ msgstr "" -#~ "Ubuntu·\"Dapper\"·6.04 " -#~ "にアップグレード中" +#~ "Ubuntu·\"Dapper\"·6.04 にアップグ" +#~ "レード中" #~ msgid "" #~ "Checking for available updates\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "アップデートをチェック中\n" #~ "\n" -#~ "アップデートによってソフトウェアの問題を修正し、セキュリティホールを除去し、新機能を追加します。" +#~ "アップデートによってソフトウェアの問題を修正し、セキュリティホールを除去" +#~ "し、新機能を追加します。" #~ msgid "Sections:" #~ msgstr "セクション:" @@ -1762,11 +1893,12 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "There is not enough free space on your system to download the required " -#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get " -#~ "clean'" +#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" +#~ "get clean'" #~ msgstr "" -#~ "システムに要求されたパッケージをダウンロードするだけの十分な空き容量がありません。再び試行する前に 'sudo apt-get clean' " -#~ "などで空き容量を確保してください" +#~ "システムに要求されたパッケージをダウンロードするだけの十分な空き容量があり" +#~ "ません。再び試行する前に 'sudo apt-get clean' などで空き容量を確保してくだ" +#~ "さい" #~ msgid "Error fetching the packages" #~ msgstr "パッケージ取得中にエラー" @@ -1774,7 +1906,9 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Some problem occured during the fetching of the packages. This is most " #~ "likely a network problem. Please check your network and try again. " -#~ msgstr "パッケージを取得中になんらかのエラーが発生しました。おそらくネットワークの問題です。ネットワークを確認して再試行してください。 " +#~ msgstr "" +#~ "パッケージを取得中になんらかのエラーが発生しました。おそらくネットワークの" +#~ "問題です。ネットワークを確認して再試行してください。 " #~ msgid "" #~ "%s packages are going to be removed.\n" @@ -1799,9 +1933,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "本当にキャンセルしますか?" #~ msgid "" -#~ "Canceling during a upgrade can leave the system in a unstable state. It is " -#~ "strongly adviced to continue the operation. " -#~ msgstr "アップグレード中にキャンセルすると、システムが不安定な状態になります。動作を継続することを強く忠告します。 " +#~ "Canceling during a upgrade can leave the system in a unstable state. It " +#~ "is strongly adviced to continue the operation. " +#~ msgstr "" +#~ "アップグレード中にキャンセルすると、システムが不安定な状態になります。動作" +#~ "を継続することを強く忠告します。 " #, fuzzy #~ msgid "Sources" @@ -1835,15 +1971,18 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "" #~ "認証鍵\n" #~ "\n" -#~ "認証鍵の追加と削除が行えます。認証鍵によりダウンロードしたソフトウェアが完全なものか確認することができます。" +#~ "認証鍵の追加と削除が行えます。認証鍵によりダウンロードしたソフトウェアが完" +#~ "全なものか確認することができます。" #~ msgid "A_uthentication" #~ msgstr "認証(_U)" #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " -#~ msgstr "新しい鍵ファイルを信頼されたキーリングに追加します。セキュアなチャンネル経由で鍵を取得し、信頼される持ち主のものか確認してください。 " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " +#~ msgstr "" +#~ "新しい鍵ファイルを信頼されたキーリングに追加します。セキュアなチャンネル経" +#~ "由で鍵を取得し、信頼される持ち主のものか確認してください。 " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "一時ファイルを自動的に削除する(_T)" @@ -1864,9 +2003,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "最大量(MB):" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." -#~ msgstr "ディストリビューション付属のデフォルトの鍵を元に戻します。この変更によりユーザが追加した鍵が失われることはありません。" +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." +#~ msgstr "" +#~ "ディストリビューション付属のデフォルトの鍵を元に戻します。この変更により" +#~ "ユーザが追加した鍵が失われることはありません。" #~ msgid "Set _maximum size for the package cache" #~ msgstr "パッケージキャッシュの最大量を設定する(_M)" @@ -1892,26 +2033,27 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "アップデートがあります\n" #~ "\n" -#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれらのパッケージがインストールされます。" +#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれら" +#~ "のパッケージがインストールされます。" #~ msgid "" #~ "Reload the package information from the server. \n" #~ "\n" -#~ "If you have a permanent internet connection this is done automatically. If " -#~ "you are behind an internet connection that needs to be started by hand (e.g. " -#~ "a modem) you should use this button so that update-manager knows about new " -#~ "updates." +#~ "If you have a permanent internet connection this is done automatically. " +#~ "If you are behind an internet connection that needs to be started by hand " +#~ "(e.g. a modem) you should use this button so that update-manager knows " +#~ "about new updates." #~ msgstr "" #~ "サーバからパッケージ情報を読み込み直します。\n" #~ "\n" -#~ "" -#~ "ずっとインターネットに接続されたままなら、自動的に行います。アナログモデムなどでそうではないなら、アップデートマネージャに新しいアップデートがあるかどうかを" -#~ "知らせるため、このボタンを使用して手動で行う必要があります。" +#~ "ずっとインターネットに接続されたままなら、自動的に行います。アナログモデム" +#~ "などでそうではないなら、アップデートマネージャに新しいアップデートがあるか" +#~ "どうかを知らせるため、このボタンを使用して手動で行う必要があります。" #~ msgid "Binary" #~ msgstr "バイナリ" @@ -1932,7 +2074,8 @@ msgstr "DFSGに適合しないソフトウェア" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "インストールされたパッケージの依存性が満たせないようです。\"Synaptic\" または \"apt-get\" を使用して修正してください。" +#~ "インストールされたパッケージの依存性が満たせないようです。\"Synaptic\" ま" +#~ "たは \"apt-get\" を使用して修正してください。" #~ msgid "It is not possible to upgrade all packages." #~ msgstr "全てのパッケージをアップグレードすることは不可能です。" @@ -1940,21 +2083,27 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" -#~ "パッケージのアップグレードの他にパッケージのインストールや削除などの別の対処がいるようです。Synaptic \"Smart " -#~ "Upgrade\"か\"apt-get dist-upgrade\"を実行して問題を修正してください。" +#~ "パッケージのアップグレードの他にパッケージのインストールや削除などの別の対" +#~ "処がいるようです。Synaptic \"Smart Upgrade\"か\"apt-get dist-upgrade\"を実" +#~ "行して問題を修正してください。" #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "変更点は見つかりませんでした。サーバはまだアップデートされていないようです。" +#~ msgstr "" +#~ "変更点は見つかりませんでした。サーバはまだアップデートされていないようで" +#~ "す。" #~ msgid "The updates are being applied." #~ msgstr "アップデートされました。" #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." -#~ msgstr "同時にひとつのパッケージマネージャしか起動できません。先に他のアプリケーションマネージャを終了してください。" +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." +#~ msgstr "" +#~ "同時にひとつのパッケージマネージャしか起動できません。先に他のアプリケー" +#~ "ションマネージャを終了してください。" #~ msgid "Updating package list..." #~ msgstr "アップデートされるパッケージのリスト..." @@ -1964,22 +2113,22 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "新しいUbuntu " -#~ "Linuxにアップグレードしてください。現在お使いのシステムにはセキュリティフィクスや危急のアップデートはすでに提供されていません。アッ" -#~ "プグレードに関する情報は http://www.ubuntulinux.org/ を見てください。" +#~ "新しいUbuntu Linuxにアップグレードしてください。現在お使いのシステムにはセ" +#~ "キュリティフィクスや危急のアップデートはすでに提供されていません。アップグ" +#~ "レードに関する情報は http://www.ubuntulinux.org/ を見てください。" #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ubuntuの新しいリリース版があります!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "コードネーム '%s' という新しいリリース版があります。アップグレードするために http://www.ubuntulinux.org/ " -#~ "をご覧ください。" +#~ "コードネーム '%s' という新しいリリース版があります。アップグレードするため" +#~ "に http://www.ubuntulinux.org/ をご覧ください。" #~ msgid "Never show this message again" #~ msgstr "このメッセージを二度と表示しない" @@ -1988,10 +2137,11 @@ msgstr "DFSGに適合しないソフトウェア" #~ msgstr "排他的なロックができません" #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "同時にひとつのパッケージマネージャしか起動できません。先に atp-get や aptitudeのような他のパッケージマネージャを終了してください。" +#~ "同時にひとつのパッケージマネージャしか起動できません。先に atp-get や " +#~ "aptitudeのような他のパッケージマネージャを終了してください。" #~ msgid "Initializing and getting list of updates..." #~ msgstr "アップデートリストを取得中..." @@ -2008,9 +2158,10 @@ msgstr "DFSGに適合しないソフトウェア" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "利用可能なアップデート\n" #~ "\n" -#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれらのパッケージがインストールされます。" \ No newline at end of file +#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれら" +#~ "のパッケージがインストールされます。" diff --git a/po/ka.po b/po/ka.po index 0dee0d27..d3a1b6a9 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Vladimer Sichinava \n" "Language-Team: Georgian \n" @@ -57,6 +57,7 @@ msgstr "ერთი თვის შემდგომ" msgid "After %s days" msgstr "%s დღის შემდეგ" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -64,6 +65,7 @@ msgstr "%s განახლება" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,6 +75,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "მთავარი სერვერი" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,13 +128,12 @@ msgid "Error removing the key" msgstr "გასღების წაშლა ვერ მოხერხდა" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "ამორჩეული გასაღების წაშლა ვერ მოხერხდა. გთხოვთ აცნობოთ ეს როგორც ხარვეზი." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -171,6 +173,7 @@ msgstr "საჭირო მეტა-პაკეტების განა msgid "A essential package would have to be removed" msgstr "ამით საჭირო პაკეტი წაიშლება" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 #, fuzzy msgid "Could not calculate the upgrade" @@ -185,9 +188,10 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "მოხდა დაუდგენელი შეცდომა განახლებისათვის მზადებისას. შეატყობინეთ ეს ხარვეზი " -"'update-manager' პაკეტის საშუალებით, შეტყობინებას დაურთეთ ფაილები " -"/var/log/dist-upgrade/-დან." +"'update-manager' პაკეტის საშუალებით, შეტყობინებას დაურთეთ ფაილები /var/log/" +"dist-upgrade/-დან." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "ზოგიერთი პაკეტის ავთენთიფიკაციის შეცდომა" @@ -210,9 +214,9 @@ msgstr "'%s' ვერ დაყენდა" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "" -"საჭირო პაკეტის დაყენება ვერ მოხერხდა. შეატყობინეთ ეს როგორც ხარვეზი. " +msgstr "საჭირო პაკეტის დაყენება ვერ მოხერხდა. შეატყობინეთ ეს როგორც ხარვეზი. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "მეტა-პაკეტი ვერ შეირჩა" @@ -231,12 +235,12 @@ msgstr "" "სანამ გააგრძელებდეთ, დააყენეთ რომელიმე მათგანი synaptic ან apt-get-ის " "გამოყენებით." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, fuzzy msgid "Failed to add the CD" msgstr "ვერ განხორციელდა CD-ს დამატება" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -246,15 +250,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "ქეშის კითხვა" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "ნივიღოთ ქსელიდან მონაცემები განახლების შესახებ?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -266,11 +270,11 @@ msgstr "" "დაეთანხმეთ განახლების მიღებას, ან უარი თქვით, თუ თქვენი ქსელი ძალიან ნელია " "ან ძვირი." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "არ მოინახა შესაბამისი სარკე" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -289,12 +293,13 @@ msgstr "" "ყველა ჩანაწერი %s'-დან '%s'-მდე განახლდება.\n" "უარის შემთხვევაში განახლება არ მოხდება." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 #, fuzzy msgid "Generate default sources?" msgstr "გავუშვათ ნაგულისხმევი წყაროების გენერაცია?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -308,11 +313,11 @@ msgstr "" "დავამატოთ ნაგულისხმევი ჩანაწერები '%s'-სთვის? უარის შემთხვევაში განახლება არ " "მოხდება." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "რეპოზიტორიების ინფორმაცია არასწორია" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -320,12 +325,12 @@ msgstr "" "რეპოზიტორიების განახლების შედეგად დაზიანდა ფაილი. შეატყობინეთ ეს როგორხ " "ხარვეზი." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 #, fuzzy msgid "Third party sources disabled" msgstr "მესამე მხარის წყაროები გამორთულია" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -335,11 +340,11 @@ msgstr "" "მესამე მხარის ზოგი წყარო sources.list-ში გამორთულია. განახლების შემდეგ " "შეგეძლებათ მათი ჩართვა 'software-properties' ან synaptic-ის საშუალებით." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "განახლებისას მოხდა შეცდომა" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -347,11 +352,11 @@ msgstr "" "განახლებისას მოხდა შეცდომა. როგორც წესი ეს არის კავშირის პრობლემა, შეამოწმეთ " "თქვენი კავშირი და სცადეთ კიდევ ერთხელ." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "დისკზე არ არის საკმარისი თავისუფალი ადგილი" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -362,16 +367,17 @@ msgstr "" "გამოიყენეთ 'sudo apt-get clean' სანაგვიდან ფაილებისა და წინა ინსტალაციის " "დროებითი პაკეტების წასაშლელად." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "გნებავთ განახლების დაწყება?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 #, fuzzy msgid "Could not install the upgrades" msgstr "განახლებების დაყენება ვერ ხერხდება" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -386,24 +392,23 @@ msgstr "" "შეატყობინეთ ხარვეზის შესახებ 'update-manager' პაკეთის საშუალებით, " "შეტყობინებაში ჩართეთ ფაილები var/log/dist-upgrade/-დან." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 #, fuzzy msgid "Could not download the upgrades" msgstr "განახლებების ჩამოტვირთვა ვერ ხერხდება" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 #, fuzzy msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -msgstr "" -"განახლება შეწყვეტილია. შეამოწმეთ ხელახლა ქსელი და საინსტალაციო დისკი. " +msgstr "განახლება შეწყვეტილია. შეამოწმეთ ხელახლა ქსელი და საინსტალაციო დისკი. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "ზოგ პროგრამას მხარდაჭერა აღარა აქვს" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -417,51 +422,53 @@ msgstr "" "თუ თქვენ არა გაქვთ საზოგადოების უზრუნველყოფა (universe), მაშინ შემდეგ ეტაპზე " "შემოთავაზებული იქნება ამ პაკეტების წაშლა." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "წავშალოთ მოძველებული პაკეტები?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "ეტაპის გა_მოტოვება" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_წაშლა" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 #, fuzzy msgid "Error during commit" msgstr "შეცდომა გადაცემისას" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 #, fuzzy msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "შეცდომა გასუფთავებისას. დაწვრილებით იხილეთ ქვემოთ. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "სისტემის საწყისი მდგომარეობის აღდგენა" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "%s'-ის მიღება backport-იდან" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "ვამოწმებ პროგრამულ მენეჯერს" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "განახლების ჩადგმის მომზადება" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -470,15 +477,15 @@ msgid "" msgstr "" "მოხდა დაუდგენელი შეცდომა განახლების დათვლისას. შეატყობინეთ ეს როგორხ ხარვეზი." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "რეპოზტორიის ინფორმაციის განახლება" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "გაფუჭებული პაკეტის შესახებ ინფორმაცია" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -488,25 +495,26 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 #, fuzzy msgid "Asking for confirmation" msgstr "-თვის" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "მიმდინარეობს განახლებების ჩაყენება" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 #, fuzzy msgid "Searching for obsolete software" msgstr "ვეძებ -თვის" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 #, fuzzy msgid "System upgrade is complete." msgstr "სისტემა ტოლია სრული." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -535,6 +543,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "ცვლილებების დამტკიცება" @@ -550,6 +559,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -576,15 +586,16 @@ msgstr "A შეცდომა" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "a და შემცველობა და -ში ახლა თავდაპირველი სია -ში სია." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "A არსებითი -სკენ" @@ -621,6 +632,7 @@ msgstr "საათი და ნებისმიერი დრო." msgid "To prevent data loss close all open applications and documents." msgstr "ვის დახურვა ყველა გახსნა და დოკუმენტები." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -668,6 +680,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -688,6 +701,7 @@ msgstr "ტოლია დასრულდა და a ტოლია -ს #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -802,6 +816,7 @@ msgstr "შეუძლებელია ვერსიის შენიშ msgid "Please check your internet connection." msgstr "გთხოვთ შეამოწმოთ თქვენი ინტერნეტ კავშირი." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "ვერ ვრთავ განახლების ჩადგმის ხელსაწყოს" @@ -906,15 +921,18 @@ msgid "" "Please check your Internet connection." msgstr "ვერ განხორციელდა -სკენ სია ის ინტერნეტი." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -930,6 +948,7 @@ msgstr "Ubuntu 5.10 დამატებითი პროგრამებ msgid "Distribution updates" msgstr "განახლება _გაგრძელება" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -954,6 +973,7 @@ msgstr "" msgid "_Check All" msgstr "შ_ემოწმება" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -979,15 +999,16 @@ msgid "Checking for updates" msgstr "განახლებების _დაყენება" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "ახალი ვერსია: %s (ზომა: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "ვერსია %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1012,6 +1033,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "პროგრამების სიის ინდექსი დაზიანებულია" @@ -1025,19 +1047,23 @@ msgid "" msgstr "" "ტოლია -სკენ ან წაშლა ნებისმიერი Synaptic ან sudo -ში a ტერმინალი -სკენ." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1409,203 +1435,248 @@ msgstr "ფანჯარა ზომა" msgid "Configure the sources for installable software and updates" msgstr "კონფიგურირება და" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 -#, fuzzy +#, fuzzy, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://changelogs.ubuntu.com/changelogs/pool/ s s s s s" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 განახლებები" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "არათავისუფალი (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "არათავისუფალი (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "არათავისუფალი (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 განახლებები" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 განახლებები" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "არათავისუფალი (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "არა" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 #, fuzzy msgid "Restricted copyright" msgstr "შეზღუდული" +#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 5.10 განახლებები" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 დამატებითი პროგრამები" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 -#, fuzzy +#, fuzzy, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/ s s s s s" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "უსაფრთხოება" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 #, fuzzy msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "პროგრამა თავისუფალი დამოკიდებულებანი" +#. CompDescription #: ../data/channels/Debian.info.in:57 #, fuzzy msgid "Non-DFSG-compatible Software" @@ -1658,8 +1729,8 @@ msgstr "პროგრამა" #, fuzzy #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "ის გამოყენება მონიშვნა ყველა ის Synaptic ან sudo -ში a ტერმინალი -სკენ " #~ "განახლება." @@ -1738,4 +1809,4 @@ msgstr "პროგრამა" #~ msgstr "Ubuntu 6.06 LTS განახლებები" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS დამატებითი პროგრამები" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS დამატებითი პროგრამები" diff --git a/po/ko.po b/po/ko.po index 4c875ced..74bb9644 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Eungkyu Song \n" "Language-Team: Korean \n" @@ -54,6 +54,7 @@ msgstr "한달 후에" msgid "After %s days" msgstr "%s일 후에" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s 업데이트" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "주 서버" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -119,8 +122,7 @@ msgid "Error removing the key" msgstr "키 삭제 오류" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "선택한 키를 지울 수 없습니다. 버그를 보고하십시오." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -151,7 +153,8 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"이 소프트웨어로 고칠 수 없는 망가진 패키지가 있습니다. 진행하기 전에 먼저 시냅틱이나 apt-get을 사용하여 복구하십시오." +"이 소프트웨어로 고칠 수 없는 망가진 패키지가 있습니다. 진행하기 전에 먼저 시" +"냅틱이나 apt-get을 사용하여 복구하십시오." #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -161,6 +164,7 @@ msgstr "요청한 메타 패키지를 업그레이드 할 수 없습니다" msgid "A essential package would have to be removed" msgstr "필수적인 패키지를 제거해야만 합니다." +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "업그레이드에 필요한 의존성을 계산할 수 없습니다." @@ -172,11 +176,13 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"업그레이드에 필요한 의존성을 계산하던 중 해결할 수 없는 문제가 발생했습니다.\n" +"업그레이드에 필요한 의존성을 계산하던 중 해결할 수 없는 문제가 발생했습니" +"다.\n" "\n" -"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/에 있는 " -"파일을 포함하여 주십시오." +"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/" +"log/dist-upgrade/에 있는 파일을 포함하여 주십시오." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "패키지 인증 오류" @@ -187,8 +193,8 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"인증할 수 없는 패키지가 있습니다. 일시적인 네트워크 문제일 수 있으니 이 경우라면 나중에 다시 시도하십시오. 인증되지 않은 패키지의 " -"목록은 다음과 같습니다." +"인증할 수 없는 패키지가 있습니다. 일시적인 네트워크 문제일 수 있으니 이 경우" +"라면 나중에 다시 시도하십시오. 인증되지 않은 패키지의 목록은 다음과 같습니다." #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -201,6 +207,7 @@ msgid "" "bug. " msgstr "요청한 패키지를 설치할 수 없습니다. 버그를 보고하여 주십시오. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "메타 패키지를 추측할 수 없습니다" @@ -213,15 +220,16 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"시스템에 ubuntu-desktop이나 kubuntu-desktop 또는 edubuntu-desktop 패키지가 없으며, 현재 실행중인 " -"우분투의 버전을 알아낼 수 없습니다.\n" -" 위의 패키지 중 하나를 시냅틱이나 apt-get을 이용해서 먼저 설치하시기 바랍니다." +"시스템에 ubuntu-desktop이나 kubuntu-desktop 또는 edubuntu-desktop 패키지가 없" +"으며, 현재 실행중인 우분투의 버전을 알아낼 수 없습니다.\n" +" 위의 패키지 중 하나를 시냅틱이나 apt-get을 이용해서 먼저 설치하시기 바랍니" +"다." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "CD 추가하기 실패" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -230,35 +238,37 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"CD를 더할 때 오류가 발생하였기 때문에 업그레이드는 중단될 것입니다. 올바른 우분투 CD를 사용하고 있었다면 이 버그를 보고해 " -"주십시오.\n" +"CD를 더할 때 오류가 발생하였기 때문에 업그레이드는 중단될 것입니다. 올바른 우" +"분투 CD를 사용하고 있었다면 이 버그를 보고해 주십시오.\n" "\n" "오류 메시지:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "캐시를 읽고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "업그레이드할 때 네트워크에서 자료를 받을까요?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" -"업그레이드할 때 네트워크를 이용하여 최신 업데이트를 확인하고 현재 CD에 없는 패키지를 받을 수 있습니다.\n" -"빠르고 값싼 네트워크를 이용하고 있다면 '예'를 선택하는 것이 좋습니다. 네트워크를 이용하는 것이 값싸지 않다면 '아니오'를 선택하십시오." +"업그레이드할 때 네트워크를 이용하여 최신 업데이트를 확인하고 현재 CD에 없는 " +"패키지를 받을 수 있습니다.\n" +"빠르고 값싼 네트워크를 이용하고 있다면 '예'를 선택하는 것이 좋습니다. 네트워" +"크를 이용하는 것이 값싸지 않다면 '아니오'를 선택하십시오." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "적합한 미러 서버를 찾지 못했습니다." -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -269,17 +279,20 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"업그레이드를 하기 위해 저장소 정보를 검색할 때 미러 서버 항목을 찾지 못했습니다. 내부 미러 서버를 운영하고 있거나 미러 서버 정보가 " -"오래됐을 때 이러한 문제가 일어날 수 있습니다.\n" +"업그레이드를 하기 위해 저장소 정보를 검색할 때 미러 서버 항목을 찾지 못했습니" +"다. 내부 미러 서버를 운영하고 있거나 미러 서버 정보가 오래됐을 때 이러한 문제" +"가 일어날 수 있습니다.\n" "\n" -"'sources.list' 파일을 다시 작성하시겠습니까? '예'를 선택하면 '%s' 전체를 '%s' 항목으로 업데이트 합니다.\n" +"'sources.list' 파일을 다시 작성하시겠습니까? '예'를 선택하면 '%s' 전체를 '%" +"s' 항목으로 업데이트 합니다.\n" "'아니오'를 선택하면 업데이트가 취소됩니다." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "기본 설정된 소스 목록을 만듭니까?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -289,65 +302,72 @@ msgid "" msgstr "" "'sources.list'를 검색했지만 '%s'에 적합한 항목을 찾지 못했습니다.\n" "\n" -"'%s'에 대한 기본 항목을 추가하시겠습니까? '아니오'를 선택하면 업데이트가 취소됩니다." +"'%s'에 대한 기본 항목을 추가하시겠습니까? '아니오'를 선택하면 업데이트가 취소" +"됩니다." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "저장소 정보가 올바르지 않습니다" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "저장소 정보를 업그레이드했는데 잘못된 파일이 만들어졌습니다. 버그를 보고하여 주십시오." +msgstr "" +"저장소 정보를 업그레이드했는데 잘못된 파일이 만들어졌습니다. 버그를 보고하여 " +"주십시오." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "써드 파티 소스는 이용할 수 없습니다" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"souces.list에서 써드 파티 목록의 일부는 이용할 수 없게 되었습니다. 'software-properties' 도구나 시냅틱으로 " -"업그레이드 한 후에 다시 사용가능하게 할 수 있습니다." +"souces.list에서 써드 파티 목록의 일부는 이용할 수 없게 되었습니다. 'software-" +"properties' 도구나 시냅틱으로 업그레이드 한 후에 다시 사용가능하게 할 수 있습" +"니다." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "업데이트 중 오류" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -"업데이트를 하는 동안에 문제가 발생했습니다. 보통 네트워크 문제인 경우가 많습니다. 네트워크의 연결 상태를 확인하시고 다시 시도하십시오." +"업데이트를 하는 동안에 문제가 발생했습니다. 보통 네트워크 문제인 경우가 많습" +"니다. 네트워크의 연결 상태를 확인하시고 다시 시도하십시오." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "디스크 여유 공간이 충분하지 않습니다." -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"업그레이드가 중단되었습니다. 적어도 %s 정도의 디스크 공간을 %s에 확보하시기 바랍니다. 휴지통을 비우시고 'sudo apt-get " -"clean' 명령으로 이전 설치 과정 중에 사용했던 임시 패키지들을 삭제하시기 바랍니다." +"업그레이드가 중단되었습니다. 적어도 %s 정도의 디스크 공간을 %s에 확보하시기 " +"바랍니다. 휴지통을 비우시고 'sudo apt-get clean' 명령으로 이전 설치 과정 중" +"에 사용했던 임시 패키지들을 삭제하시기 바랍니다." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "업그레이드를 시작하시겠습니까?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "업그레이드를 설치하지 못했습니다." -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -355,27 +375,29 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"업그레이드가 중단되었습니다. 시스템을 이용할 수 없는 상태일 수 있습니다. (dpkg --configure -a)를 실행하여 " -"복구하십시오.\n" +"업그레이드가 중단되었습니다. 시스템을 이용할 수 없는 상태일 수 있습니다. " +"(dpkg --configure -a)를 실행하여 복구하십시오.\n" "\n" -"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/에 있는 " -"파일을 포함하여 주십시오." +"'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/" +"log/dist-upgrade/에 있는 파일을 포함하여 주십시오." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "업그레이를 다운로드 할 수 없습니다." -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -msgstr "업그레이드가 중단되었습니다. 인터넷 연결과 설치 미디어를 확인하시고 다시 시도하십시오. " +msgstr "" +"업그레이드가 중단되었습니다. 인터넷 연결과 설치 미디어를 확인하시고 다시 시도" +"하십시오. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "일부 프로그램의 지원이 종료되었습니다" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -383,67 +405,73 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Canonical Ltd.는 다음의 소프트웨어 패키지를 더 이상 지원하지 않습니다. 커뮤니티를 통해서 여전히 지원받을 수 있습니다.\n" +"Canonical Ltd.는 다음의 소프트웨어 패키지를 더 이상 지원하지 않습니다. 커뮤니" +"티를 통해서 여전히 지원받을 수 있습니다.\n" "\n" -"커뮤니티 관리 소프트웨어를 (universe) 활성화하지 않았다면, 다음 단계에서 이 패키지들을 삭제하도록 제안할 것입니다." +"커뮤니티 관리 소프트웨어를 (universe) 활성화하지 않았다면, 다음 단계에서 이 " +"패키지들을 삭제하도록 제안할 것입니다." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "구식 패키지를 삭제하시겠습니까?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "이 단계 건너뛰기(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "제거(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "커밋 도중 오류 발생" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "정리하는 도중에 문제가 발생하였습니다. 다음의 메시지에서 더 많은 정보를 확인할 수 있습니다. " +msgstr "" +"정리하는 도중에 문제가 발생하였습니다. 다음의 메시지에서 더 많은 정보를 확인" +"할 수 있습니다. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "시스템을 원래의 상태로 복구하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "'%s'의 백포트를 받고 있습니다" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "패키지 관리자를 확인하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "저장소 정보를 업데이트하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "잘못된 패키지 정보" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -453,25 +481,26 @@ msgid "" "bugreport." msgstr "" "패키지 정보를 업데이트한 다음에 필수 패키지 '%s'를 더이상 찾을 수 없습니다.\n" -"심각한 오류입니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-" -"upgrade/에 있는 파일을 포함하여 주십시오." +"심각한 오류입니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리" +"고 버그 보고에 /var/log/dist-upgrade/에 있는 파일을 포함하여 주십시오." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "확인을 요청하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "업그레이드하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "구식 소프트웨어를 검색하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "완전히 시스템을 업그레이드하였습니다." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -499,6 +528,7 @@ msgstr "%li의 %li 파일 내려받는 중" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "변경 사항을 적용하고 있습니다" @@ -513,9 +543,11 @@ msgid "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"업그레이드가 중단되었습니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 " -"/var/log/dist-upgrade/에 있는 파일을 포함하여 주십시오." +"업그레이드가 중단되었습니다. 'update-manager' 패키지의 버그를 보고하여 주십시" +"오. 그리고 버그 보고에 /var/log/dist-upgrade/에 있는 파일을 포함하여 주십시" +"오." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -541,16 +573,18 @@ msgstr "심각한 오류 발생" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"이 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/main.log 파일과 /var/log/dist-" -"upgrade/apt.log 파일을 포함하여 주십시오. 업그레이드가 중단되었습니다.\n" +"이 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/log/dist-upgrade/main." +"log 파일과 /var/log/dist-upgrade/apt.log 파일을 포함하여 주십시오. 업그레이드" +"가 중단되었습니다.\n" "원래의 sources.list는 /etc/apt/sources.list.distUpgrade에 저장되어 있습니다." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -584,12 +618,15 @@ msgstr "" msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "업그레이드를 받아 설치하는 것은 여러 시간이 걸릴 수 있으며, 이후 어떤 경우에도 취소할 수 없습니다." +msgstr "" +"업그레이드를 받아 설치하는 것은 여러 시간이 걸릴 수 있으며, 이후 어떤 경우에" +"도 취소할 수 없습니다." #: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "데이터 손실을 막으려면 열려있는 모든 프로그램과 문서를 닫으십시오." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -637,6 +674,7 @@ msgid "%li seconds" msgstr "%li초" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -656,6 +694,7 @@ msgstr "업그레이드가 끝났으며 다시 시작해야 합니다. 지금 #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -670,7 +709,8 @@ msgid "" msgstr "" "실행 중인 업그레이드를 취소하시겠습니까?\n" "\n" -"업그레이드를 취소하면 시스템이 사용할 수 없는 상태가 될 수 있습니다. 업그레이드를 계속 하시기를 강력히 건의합니다." +"업그레이드를 취소하면 시스템이 사용할 수 없는 상태가 될 수 있습니다. 업그레이" +"드를 계속 하시기를 강력히 건의합니다." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" @@ -765,6 +805,7 @@ msgstr "릴리즈 정보를 다운로드 할 수 없습니다." msgid "Please check your internet connection." msgstr "인터넷 연결 상태를 확인하십시오." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "업그레이드 도구를 실행할 수 없습니다." @@ -806,7 +847,9 @@ msgstr "압축 풀기 실패" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "업그레이드의 압축을 푸는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " +msgstr "" +"업그레이드의 압축을 푸는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있" +"습니다. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -816,7 +859,9 @@ msgstr "확인 실패" msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "업그레이드를 확인하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " +msgstr "" +"업그레이드를 확인하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습" +"니다. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -826,12 +871,15 @@ msgstr "인증 실패" msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "업그레이드를 인증하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " +msgstr "" +"업그레이드를 인증하는데 실패했습니다. 네트워크나 서버에 문제가 있을 수 있습니" +"다. " #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "%(total)li개중 %(current)li번째 파일을 %(speed)s/s의 속도로 받고 있습니다" +msgstr "" +"%(total)li개중 %(current)li번째 파일을 %(speed)s/s의 속도로 받고 있습니다" #: ../UpdateManager/GtkProgress.py:113 #, python-format @@ -854,14 +902,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "중요한 보안 업데이트" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "추천하는 업데이트" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "제안하는 업데이트" @@ -874,6 +925,7 @@ msgstr "Backports" msgid "Distribution updates" msgstr "배포판 업데이트" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "기타 업데이트" @@ -895,6 +947,7 @@ msgstr "전체 선택 취소(_U)" msgid "_Check All" msgstr "전체 선택(_C)" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -928,6 +981,7 @@ msgstr "버전 %(old_version)s에서 %(new_version)s(으)로" msgid "Version %s" msgstr "버전 %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -943,14 +997,16 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"더 이상 보안이나 중요 업데이트를 받을 수 없습니다. 최신의 우분투 리눅스로 업그레이드 하십시오. 업그레이드에 대한 더 많은 정보는 " -"http://www.ubuntu.com에서 보실 수 있습니다." +"더 이상 보안이나 중요 업데이트를 받을 수 없습니다. 최신의 우분투 리눅스로 업" +"그레이드 하십시오. 업그레이드에 대한 더 많은 정보는 http://www.ubuntu.com에" +"서 보실 수 있습니다." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "새 배포판 '%s'을(를) 설치할 수 있습니다" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "소프트웨어 목록이 망가졌습니다." @@ -961,22 +1017,26 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"어떤 소프트웨어도 설치하거나 삭제할 수 없습니다. \"시냅틱\"이나 터미널에서 \"sudo apt-get install -f\"를 " -"실행하여 이 문제를 먼저 해결하십시오." +"어떤 소프트웨어도 설치하거나 삭제할 수 없습니다. \"시냅틱\"이나 터미널에서 " +"\"sudo apt-get install -f\"를 실행하여 이 문제를 먼저 해결하십시오." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "없음" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -991,7 +1051,8 @@ msgid "" msgstr "" "업데이트 확인을 직접 해야 합니다.\n" "\n" -"업데이트 확인이 자동으로 되지 않습니다. 이 동작은 인터넷 업데이트 탭의 소프트웨어 소스에서 설정할 수 있습니다." +"업데이트 확인이 자동으로 되지 않습니다. 이 동작은 인터넷 업데이트 탭" +"의 소프트웨어 소스에서 설정할 수 있습니다." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1038,7 +1099,8 @@ msgid "" msgstr "" "배포판 업그레이드를 수행하여 가능한 많은 업데이트를 설치합니다. \n" "\n" -"이것은 완료되지 않은 업그레이드나 비공식 소프트웨어 패키지, 또는 개발버전에서 실행했기 때문일 수 있습니다." +"이것은 완료되지 않은 업그레이드나 비공식 소프트웨어 패키지, 또는 개발버전에" +"서 실행했기 때문일 수 있습니다." #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1052,7 +1114,9 @@ msgstr "소프트웨어 업데이트" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "소프트웨어 업데이트는 에러를 고치고, 보안 문제를 제거하며 새로운 기능을 제공합니다." +msgstr "" +"소프트웨어 업데이트는 에러를 고치고, 보안 문제를 제거하며 새로운 기능을 제공" +"합니다." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1117,10 +1181,12 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"우분투의 사용자 경험을 개선하기 위해 인기 경연에 참여해 주십시오. 그러면 설치된 소프트웨어의 목록과 사용하는 빈도를 수집하여 " -"우분투 프로젝트로 일주일에 한번씩 익명으로 전송합니다.\n" +"우분투의 사용자 경험을 개선하기 위해 인기 경연에 참여해 주십시오. 그러면 " +"설치된 소프트웨어의 목록과 사용하는 빈도를 수집하여 우분투 프로젝트로 일주일" +"에 한번씩 익명으로 전송합니다.\n" "\n" -"그 결과는 인기있는 프로그램의 지원을 개선하고 검색 결과에서 프로그램의 순위를 매기는데 사용합니다." +"그 결과는 인기있는 프로그램의 지원을 개선하고 검색 결과에서 프로그램의 순위" +"를 매기는데 사용합니다." #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" @@ -1208,7 +1274,8 @@ msgid "" msgstr "" "이용할 수 있는 소프트웨어에 대한 정보가 오래되었습니다.\n" "\n" -"새로 추가하거나 변경한 소스로부터 소프트웨어를 설치하거나 업데이트하려면, 이용할 수 있는 소프트웨어에 대한 정보를 다시 읽어야 합니다.\n" +"새로 추가하거나 변경한 소스로부터 소프트웨어를 설치하거나 업데이트하려면, 이" +"용할 수 있는 소프트웨어에 대한 정보를 다시 읽어야 합니다.\n" "\n" "계속하기 위해서는 인터넷 연결이 필요합니다." @@ -1240,10 +1307,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"추가하고자 하는 소스 저장소의 APT 줄을 완전히 입력하십시오.\n" +"추가하고자 하는 소스 저장소의 APT 줄을 완전히 입력하십시오.\n" "\n" -"APT 줄은 다음 예와 같이 채널의 종류, 위치, 구성요소를 포함합니다. \"deb http://ftp.debian.org " -"sarge main\"" +"APT 줄은 다음 예와 같이 채널의 종류, 위치, 구성요소를 포함합니다. \"deb " +"http://ftp.debian.org sarge main\"" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1285,7 +1353,8 @@ msgstr "업데이트 관리자" msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." -msgstr "현재 배포판에 새로운 버전이 있어서 업그레이드가 가능한지 자동으로 확인합니다." +msgstr "" +"현재 배포판에 새로운 버전이 있어서 업그레이드가 가능한지 자동으로 확인합니다." #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" @@ -1297,8 +1366,8 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"자동 업데이트 확인 기능을 사용하지 않으면, 채널 목록을 수동으로 다시 읽어야 합니다. 이 옵션은 이 경우에 알림 기능이 나타나지 않도록 " -"합니다." +"자동 업데이트 확인 기능을 사용하지 않으면, 채널 목록을 수동으로 다시 읽어야 " +"합니다. 이 옵션은 이 경우에 알림 기능이 나타나지 않도록 합니다." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1326,199 +1395,246 @@ msgstr "창 크기" msgid "Configure the sources for installable software and updates" msgstr "설치할 수 있는 소프트웨어와 업데이트를 위한 소스를 설정" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "우분투 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "커뮤니티에서 관리" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "장치의 독점 드라이버" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "제한된 소프트웨어" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "우분투 6.10 'Edgy Eft' 씨디롬" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "우분투 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "커뮤니티에서 관리 (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "커뮤니티에서 관리하는 오픈 소스 소프트웨어" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "비자유 드라이버" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "장치의 독점 드라이버 " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "제한된 소프트웨어 (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "우분투 6.06 LTS 'Dapper Drake' 씨디롬" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backport 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "우분투 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "우분투 5.10 'Breezy Badger' 씨디롬" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "우분투 5.10 보안 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "우분투 5.10 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "우분투 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "우분투 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "우분투 5.04 'Hoary Hedgehog' 씨디롬" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "공식적으로 지원함" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "우분투 5.04 보안 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "우분투 5.04 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "우분투 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "우분투 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "커뮤니티에서 관리 (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "비자유 (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "우분투 4.10 'Warty Warthog' 씨디롬" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "더 이상 공식적으로 지원하지 않음" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "저작권이 제한됨" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "우분투 4.10 보안 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "우분투 4.10 업데이트" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "우분투 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "데비안 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "데비안 3.1 \"Sarge\" 보안 업데이트" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "데비안 \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "데비안 \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG 호환이 되지만 비자유 소프트웨어에 의존하는 소프트웨어" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG와 호환이 되지 않는 소프트웨어" #~ msgid "" -#~ "You will loose all customizations, that have been made by yourself or by a " -#~ "script, if you replace the file by its latest version." -#~ msgstr "파일을 최신 버전으로 교체할 경우 직접 또는 스크립트에 의해서 바뀐 모든 것을 잃어버릴 것입니다." +#~ "You will loose all customizations, that have been made by yourself or by " +#~ "a script, if you replace the file by its latest version." +#~ msgstr "" +#~ "파일을 최신 버전으로 교체할 경우 직접 또는 스크립트에 의해서 바뀐 모든 것" +#~ "을 잃어버릴 것입니다." -#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " -#~ "DSL connection" -#~ msgstr "이것을 다운로드하려면 56k 모뎀으로는 약 %s이(가) 걸리고 1Mbit DSL 연결로는 약 %s이(가) 걸립니다." +#~ "This download will take about %s with a 56k modem and about %s with a " +#~ "1Mbit DSL connection" +#~ msgstr "" +#~ "이것을 다운로드하려면 56k 모뎀으로는 약 %s이(가) 걸리고 1Mbit DSL 연결로" +#~ "는 약 %s이(가) 걸립니다." #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "변경 사항 목록이 아직 없습니다. 잠시 후 다시 시도해 주십시오." @@ -1526,10 +1642,12 @@ msgstr "DFSG와 호환이 되지 않는 소프트웨어" #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " #~ "connection." -#~ msgstr "변경 사항 목록을 다운로드하는데 실패했습니다. 인터넷 연결을 확인해 주십시오." +#~ msgstr "" +#~ "변경 사항 목록을 다운로드하는데 실패했습니다. 인터넷 연결을 확인해 주십시" +#~ "오." #~ msgid "By Canonical supported Open Source software" #~ msgstr "Canonical이 지원하는 오픈 소스 소프트웨어" #~ msgid "By copyright or legal issues restricted software" -#~ msgstr "저작권나 법적 문제가 제한된 소프트웨어" \ No newline at end of file +#~ msgstr "저작권나 법적 문제가 제한된 소프트웨어" diff --git a/po/ku.po b/po/ku.po index 316cd309..cf2c6d52 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: ElîxanLoran \n" "Language-Team: Kurdish \n" @@ -55,6 +55,7 @@ msgstr "Piştî mehekê" msgid "After %s days" msgstr "Piştî %s roj" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s rojanekirin" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Pêşkêşkera Mak" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "Di dema rakirina mifteyan de çewtî" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Mifteya ku te hilbijart nehate rakirin. Ji kerema xwe re vê yekê weke " "çewtiyekê ragihîne." @@ -168,6 +170,7 @@ msgstr "Pakêtên agahiyan yên pêwist nayên rojanekirin" msgid "A essential package would have to be removed" msgstr "Divê pakêteke pêwist jê were rakirin" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Rojanekirin nikaribû were hesabkirin" @@ -181,9 +184,10 @@ msgid "" msgstr "" "Dema bilindkirin hesab dikir çewtiyeke ku nayê veçirandin derkete holê.\n" "\n" -"Ji kerema xwe re vê çewtiyê bo 'update-manager' ragihîne, pelgehên ku li " -"/var/log/dist-upgrade/ de ye jî li rapora çewtiyan zêde bike." +"Ji kerema xwe re vê çewtiyê bo 'update-manager' ragihîne, pelgehên ku li /" +"var/log/dist-upgrade/ de ye jî li rapora çewtiyan zêde bike." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Di piştrastkirina çend paketan de çewtî derket" @@ -210,6 +214,7 @@ msgstr "" "Pakêta pêwist nehate barkirin. Ji kerema xwe re vê yekê weke çewtiyekê " "ragihîne. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Pakêta-meta nehate kifşkirin" @@ -228,11 +233,11 @@ msgstr "" "Ji kerema xwe re berî ku tu berdewam bikî, bi synaptic yan jî bi apt-getê " "pakêtên ku li jor in yekê saz bike." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Dema têxistina CDyê de çewtî" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -247,15 +252,15 @@ msgstr "" "Peyama çewtiyê:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Pêşbîr tê xwendin" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Ji bo bilindkirinê bila dane ji toreyê were daxistin?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -267,11 +272,11 @@ msgstr "" "Heke gihiştina te ya torê ne lez be yan jî ne biha be divê tu pêl 'Ere' " "bike. Yan jî pêl 'Na' bike." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Şewqdereke derbasdar nehate dîtin." -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -291,11 +296,12 @@ msgstr "" "rojanekirin.\n" "Heke tu bibêjî 'Na' wê rojanekirin betal bibe." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Bile çavkaniyên rawêjî pêk bên?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -309,11 +315,11 @@ msgstr "" "Ji bo '%s' bila têketinên heyî lê zêde bibe? Heke tu bibêjî 'Na' dê " "rojanekirin were betalkirin." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Agahiya depoyê ne derbasdar e" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -321,22 +327,22 @@ msgstr "" "Karê rojanekirina agahiya depoyê, dosyeyeke nederbasdar çêkir. Ji kerema xwe " "re vê çewtiyê ragihîne." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Ji çavkaniyên partiyên sêyemîn têkilî hate birîn." -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Di rojanekirinê de çewtî derket" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -344,11 +350,11 @@ msgstr "" "Di dema rojanekirinê de çewtiyek derket. Ev çewtî piranî pirsgirêka torê ye, " "ji kerema xwe re girêdana xwe ya torê kontrol bike û ji nû ve biceribîne." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Cihê vala yê diskê têr nake" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +365,16 @@ msgstr "" "bike. Çopa xwe vala bikin û bi 'sudo apt-get clean' pakêtên derbasdar yên " "sazkirinên berê rake." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Tu dixwazî dest bi bilindkirinê bikî?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Sazkirina hemû bilindkirinan biserneket" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -381,11 +388,11 @@ msgstr "" "Ji kerema xwe re bo pakêta 'update-manager' vê çewtiyê ragihîne. Dosyeyên ku " "li /var/log/dist-upgrade/ de ye jî li peyama çewtiyê zêde bike." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Daxistina bilindkirinan serneket" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -393,11 +400,11 @@ msgstr "" "Rojanekirin niha tê betalkirin. Ji kerema xwe girêdana înternetê an medyaya " "sazkirinê kontrol bike û ji nû ve biceribîne. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Ji bo hin sepanan piştrastkirin qediya" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -406,23 +413,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Bila pakêtên ku nayên bikaranîn werine rakirin?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "Vê gavê derbas bike" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Jê bibe" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Di dema xebatê de çewtî" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -430,41 +437,43 @@ msgstr "" "Di dema paqijkirinê de hin pirsgirêk derketin. Ji bo agahiyan ji kerema xwe " "re li peyama jêr binihêre. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Vedigere rewşa pergala orjînal" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Bireveberiya paketan tê kontrol kirin" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Amadekrinên nûjenkirinê biserneket" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Agahiyên depoyê tê rojanekirin" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Agahiya paketê nederbasdar e" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -473,28 +482,29 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Piştî ku agahiyê te yên pakêtê hate rojanekirin, yek ji wan pakêtên girîng " -"'%s' êdî nayê dîtin.\n" +"Piştî ku agahiyê te yên pakêtê hate rojanekirin, yek ji wan pakêtên girîng '%" +"s' êdî nayê dîtin.\n" "Dibe ku ev çewtiyeke girîng e, ji kerema xwe re bo pakêta 'update-manager' " "vê çewtiyê ragihîne. Dosyeyên ku li /var/log/dist-upgrade/ de ye jî li " "peyama çewtiyê zêde bike." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Pirsa piştrastkirinê" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Tê bilindkirin" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Li nivîsbariya kevin tê gerandin" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Bilindkirina sîstemê temam bû." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -523,6 +533,7 @@ msgstr "Dosyan dadixe %li daxistin ji %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Guherandin tê bi kar anîn" @@ -541,6 +552,7 @@ msgstr "" "çewtiyê ragihîne. Dosyeyên ku li /var/log/dist-upgrade/ de ye jî li peyama " "xwe ya çewtiyê zêde bike." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -566,9 +578,9 @@ msgstr "Çewtiyeke giran derket" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Ji kerema xwe re vê çewtiyê ragihîne.Dosyeyên ku li /var/log/dist-upgrade/ " @@ -578,6 +590,7 @@ msgstr "" "hate tomarkirin." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -600,7 +613,7 @@ msgstr[0] "Dê %d pakêt were bilindkirin" msgstr[1] "Dê %d pakêt werine bilindkirin" #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -622,6 +635,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "Ji bo ku dane winda nebin hemû sepan û pelgeyên ku vekirî ne bigire" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -671,6 +685,7 @@ msgid "%li seconds" msgstr "%li çirke" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -691,6 +706,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -710,8 +726,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Ji bo bidawîanîna bilindkirinê pergalê ji nû ve bide " -"destpêkirin" +"Ji bo bidawîanîna bilindkirinê pergalê ji nû ve bide destpêkirin" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -802,6 +818,7 @@ msgstr "Nîşeyên weşanê nehate daxistin" msgid "Please check your internet connection." msgstr "Ji kerema xwe girêdana înternetê kontrol bike." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Amûra bilindkirinê nikaribû bimeşîne" @@ -897,14 +914,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Rojanekirinên ewlekariyê yên girîng" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Rojanekirinên têne pêşniyarkirin" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Rojanekirinên hatine pêşniyarkirin" @@ -917,6 +937,7 @@ msgstr "Nivîsbariyên bi paş de şandî" msgid "Distribution updates" msgstr "Rojanekirinên dîstrîbusiyonê" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Rojanekirinên din" @@ -938,6 +959,7 @@ msgstr "Yekê Jî _Hilnebijêre" msgid "_Check All" msgstr "Hemûyan _Hilbijêrî" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -963,7 +985,7 @@ msgid "Checking for updates" msgstr "Rojanekirin têne venihartin." #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Guhertoya nû: %s (Mezinahî: %s)" @@ -972,6 +994,7 @@ msgstr "Guhertoya nû: %s (Mezinahî: %s)" msgid "Version %s" msgstr "Guherto %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -996,6 +1019,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Weşana belavkariya nû dikare bigihêje '%s'" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Pêrista nivîsbariyê xera bûye" @@ -1008,23 +1032,27 @@ msgid "" msgstr "" "Sazkirin an jî rakirina nivîsbariyê qet ne gengaz e. Ji kerema xwe berî her " "tiştî vê pirsgirêkê bi gerînendeyê pakêtan ya \"Synaptic\" and jî bi fermana " -"\"sudo apt-get install -f\" re di termînalê de çareser bike. \n" -" \n" +"\"sudo apt-get install -f\" re di termînalê de çareser bike.\r\n" +"\r\n" "— By ElîxanLoran on 2006-08-25 06:29:14 UTC (2 more)" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ne yek jî" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1372,189 +1400,233 @@ msgstr "Mezinahiyê paceyê" msgid "Configure the sources for installable software and updates" msgstr "Ji bo nivîsbarî û rojanekirinên têne sazkirin çavkaniyan veava bike" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Yên ji aliyê komekê ber çav hatiye derbaskirin" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Ji bo cîhazan ajokerên ku çavkaniyên wan girtî ne" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Neazad (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdroma Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Yên ji aliyê koman lê hatine nihêrtin" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" "Nivîsbariyên Kodên Çavkaniyên Azad yên ji aliyê koman lê hatine nihêrtin" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Neazad (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Ji bo cîhazan ajokarên xwedî-bawername " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Neazad (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Nivîsbariya bi mafên weşan û belavkirinê sînor kirî" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdroma Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Rojanekirinên paş de hatine kişandin" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdroma Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Rojanekirinên Ewlekariyê yên Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Rojanekirina Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Rojanekirinên Paş de Hatine Kişandin yên Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdroma Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Bi piştgiriya fermî" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Rojanekirinên Ewlekariyên yên Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Rojanekirinên Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Rojanekirinên Paş de Hatine Kişandin yên Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Yên ji aliyê koman ve lê tê nihêrîn (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ne-azad (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdroma Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Êdi bi awayekî fermî nayê destekkirin" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Mafê kopîkrinê yê sînorkirî" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Rojanekirinên Ubuntu 4.10 yên Ewlekariyê" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Rojanekirinên Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 nivîsbariyên bi paş de kişandî (Backports)" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Rojanekirinên Ewlekariyê" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-nivîsbariya hevgirtî ya ne azad" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "nivîsbariya hevgirtî ya ne li gorî -DFSG" @@ -1585,4 +1657,4 @@ msgstr "nivîsbariya hevgirtî ya ne li gorî -DFSG" #~ msgstr "Kanal" #~ msgid " " -#~ msgstr " " \ No newline at end of file +#~ msgstr " " diff --git a/po/lt.po b/po/lt.po index aa34ab8f..bc848fe7 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Mantas Kriaučiūnas \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"(n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" +"100<10 || n%100>=20) ? 1 : 2);\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -55,6 +55,7 @@ msgstr "Po mėnesio" msgid "After %s days" msgstr "Po %s dienų" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s atnaujinimai" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,13 +124,12 @@ msgid "Error removing the key" msgstr "Šalinant raktą įvyko klaida" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Jūsų pasirinkto rakto pašalinti nepavyko. Praneškite apie tai kaip klaidą." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -166,6 +168,7 @@ msgstr "Negalima atnaujinti reikiamų metapaketų" msgid "A essential package would have to be removed" msgstr "Turėtų būti pašalintas esminis paketas" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nepavyko paskaičiuoti atnaujinimo" @@ -181,6 +184,7 @@ msgstr "" "Iškilo neišsprendžiama problema apskaičiuojant atnaujinimą. Praneškite apie " "tai kaip klaidą." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Klaida autentikuojant keletą paketų" @@ -206,6 +210,7 @@ msgid "" msgstr "" "Buvo neįmanoma įdiegti reikalingo paketo. Praneškite apie tai, kaip klaidą. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 #, fuzzy msgid "Can't guess meta-package" @@ -226,12 +231,12 @@ msgstr "" " Prieš tęsdami pirmiausia įdiekite vieną iš šių paketų naudodamiesi " "„synaptic“ arba „apt-get“." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, fuzzy msgid "Failed to add the CD" msgstr "Atsiųsti nepavyko" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -241,15 +246,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Nuskaitoma talpykla" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -257,12 +262,12 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, fuzzy msgid "No valid mirror found" msgstr "Nerasta tinkamo įrašo" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -274,11 +279,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Ar sukurti numatytųjų programinės įrangos saugyklų sąrašą?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -287,11 +293,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Saugyklų informacija netinkama" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -299,11 +305,11 @@ msgstr "" "Saugyklos informacijos atnaujinimo rezultatas buvo sugadinta byla. " "Praneškite apie tai kaip klaidą." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Trečiųjų šalių programinės įrangos saugyklos išjungtos" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -314,11 +320,11 @@ msgstr "" "Juos galėsite vėl įjungti, kai baigsite atnaujinimą su „programų savybių“ " "įrankiu arba „Synaptic“ paketų tvarkykle." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Klaida atnaujinant" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -326,11 +332,11 @@ msgstr "" "Atnaujinant iškilo problema. Tai greičiausiai kokia nors tinklo problema, " "todėl iš naujo patikrinkite tinklo jungtis ir bandykite dar." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Diske nepakanka laisvos vietos" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -338,15 +344,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "At norite pradėti atnaujinimą?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Nepavyko įdiegti atnaujinimų" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -358,11 +365,11 @@ msgstr "" "Atnaujinimas dabar bus nutrauktas. Jūsų sistema gali būti netinkama naudoti. " "Dabar bus vykdomas atkūrimas (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Nepavyko atsiųsti atnaujinimų" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -370,11 +377,11 @@ msgstr "" "Atnaujinimas dabar bus nutrauktas. Patikrinkite Interneto ryšį arba įdiegimo " "laikmeną ir bandykite dar. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -389,23 +396,23 @@ msgstr "" "Jei nesate įjungę „universe“ skyriaus, šie paketai bus siūlomi pašalinimui " "kitame žingsnyje." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Pašalinti pasenusius paketus?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Praleisti šį žingsnį" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "P_ašalinti" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -413,27 +420,29 @@ msgstr "" "Išvalymo metu iškilo problema. Daugiau informacijos rasite žemiau esančiame " "pranešime. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Perkraunama sistema" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Tikrinama paketų valdyklė" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Ruošiamas atnaujinimas" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -443,16 +452,16 @@ msgstr "" "Iškilo neišsprendžiama problema apskaičiuojant atnaujinimą. Praneškite apie " "tai kaip klaidą." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Atnaujinama saugyklų informacija" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Netinkama paketo informacija" -#: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:726 +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -464,22 +473,23 @@ msgstr "" "paketo „%s“.\n" "Tai labai rimta problema, praneškite apie tai kaip klaidą." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Klausiama patvirtinimo" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Atnaujinama" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Ieškoma pasenusios programinės įrangos" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Sistemos atnaujinimas baigtas." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -491,7 +501,7 @@ msgid "Fetching is complete" msgstr "Atnaujinimas užbaigtas" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu" @@ -502,12 +512,13 @@ msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Atsiunčiamas failas %li iš %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Pritaikomi pakeitimai" @@ -523,8 +534,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -549,20 +561,21 @@ msgstr "Įvyko lemtinga klaida" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Praneškite apie tai kaip klaidą ir prie pranešimo pridėkite „/var/log/dist-" "upgrade.log“ bei „/var/log/dist-upgrade-apt.log“ bylas. Atnaujinimas dabar " "bus nutrauktas.\n" -"Jūsų originalioji „sources.list“ byla buvo išsaugota " -"„/etc/apt/sources.list.distUpgrade“ aplanke." +"Jūsų originalioji „sources.list“ byla buvo išsaugota „/etc/apt/sources.list." +"distUpgrade“ aplanke." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Bus pašalintas %s paketas." @@ -570,7 +583,7 @@ msgstr[1] "Bus pašalinti %s paketai." msgstr[2] "Bus pašalinta %s paketų." #: ../DistUpgrade/DistUpgradeViewGtk.py:506 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Bus įdiegtas %s naujas paketas." @@ -578,7 +591,7 @@ msgstr[1] "Bus įdiegti %s nauji paketai." msgstr[2] "Bus įdiegta %s naujų paketų." #: ../DistUpgrade/DistUpgradeViewGtk.py:512 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Bus atnaujintas %s paketas." @@ -586,7 +599,7 @@ msgstr[1] "Bus atnaujinti %s paketai." msgstr[2] "Bus atnaujinta %s paketų." #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -610,6 +623,7 @@ msgstr "" "Norint išvengti duomenų praradimo turite užverti visas atvertas programas ir " "dokumentus." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -657,6 +671,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -678,6 +693,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -698,8 +714,8 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Norėdami užbaigti atnaujinimą paleiskite operacijų sistemą iš " -"naujo" +"Norėdami užbaigti atnaujinimą paleiskite operacijų sistemą iš naujo" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -794,6 +810,7 @@ msgstr "Nepavyko atsiųsti laidos informacijos" msgid "Please check your internet connection." msgstr "Patikrinkite savo Interneto ryšį." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nepavyko paleisti atnaujinimo priemonės" @@ -896,14 +913,17 @@ msgstr "" "Nepavyko atsiųsti pakeitimų sąrašo. \n" "Patikrinkite Interneto ryšį." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Svarbūs saugumo atnaujinimai" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Rekomenduojami atnaujinimai" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Testuojami atnaujinimai" @@ -916,6 +936,7 @@ msgstr "Naujos programos" msgid "Distribution updates" msgstr "Distributyvo atnaujinimai" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Kiti atnaujinimai" @@ -939,13 +960,14 @@ msgstr "" msgid "_Check All" msgstr "_Patikrinti" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "Atsiuntimo dydis: %s" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Rodyti ir įdiegti galimus atnaujinimus" @@ -965,7 +987,7 @@ msgid "Checking for updates" msgstr "Ieškoma atnaujinimų" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Nauja versija: %s (Dydis: %s)" @@ -974,6 +996,7 @@ msgstr "Nauja versija: %s (Dydis: %s)" msgid "Version %s" msgstr "Versija %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -998,6 +1021,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Nauja distributyvo versija '%s' yra išleista" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Programinės įrangos turinys sugadintas" @@ -1012,19 +1036,23 @@ msgstr "" "pasinaudokite „Synaptic“ arba terminale įvykdykite komandą „sudo apt-get " "install -f“, norėdami ištaisyti šią problemą." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1051,8 +1079,8 @@ msgstr "" #, fuzzy msgid "Not all updates can be installed" msgstr "" -"Klaida skanuojant CD \n" -" \n" +"Klaida skanuojant CD\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1399,197 +1427,239 @@ msgstr "" "Nustatykite programinės įrangos įdiegimo šaltinius bei atnaujinimus iš " "interneto" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Prižiūrima bendruomenės" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Ne Laisva (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD diskas su Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS „Dapper Drake“" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Prižiūrima bendruomenės (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Prižiūrima bendruomenės (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Bendruomenės prižiūrima laisva programinė įranga" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Ne Laisva (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Nuosavybinės įrenginių valdyklės " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Ne Laisva (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD diskas su Ubuntu 6.06 LTS „Dapper Drake“" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Naujos ir atnaujintos programos" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 „Breezy Badger“" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD diskas su Ubuntu 5.10 „Breezy Badger“" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 saugumo atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Naujos programos Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 „Hoary Hedgehog“" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD diskas Ubuntu 5.04 „Hoary Hedgehog“" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficialiai palaikoma" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 saugumo atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Naujos programos Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 „Warty Warthog“" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Prižiūrima bendruomenės (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ne Laisva (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD diskas su Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Kai kuri programinė įranga nebėra oficialiai palaikoma" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Apribotos autorinės teisės" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 saugumo atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 atnaujinimai" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Naujos programos Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 „Sarge“" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 „Sarge“ saugumo atnaujinimai" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian „Etch“ (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.lt.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian „Sid“ (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "" -"Su DFSG suderinama programinė įranga su Ne Laisvomis priklausomybėmis" +msgstr "Su DFSG suderinama programinė įranga su Ne Laisvomis priklausomybėmis" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Su DFSG nesuderinama programinė įranga" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Atsiunčiamas failas %li iš %li, nežinomu greičiu" @@ -1613,7 +1683,8 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Atnaujinama į Ubuntu 6.06 LTS" +#~ "Atnaujinama į Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1635,21 +1706,21 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgstr "" #~ "Ieškoma galimų atnaujinimų\n" #~ "\n" -#~ "Programinės įrangos atnaujinimai gali ištaisyti klaidas, pašalinti saugumo " -#~ "spragas bei suteikti naujas funkcijas." +#~ "Programinės įrangos atnaujinimai gali ištaisyti klaidas, pašalinti " +#~ "saugumo spragas bei suteikti naujas funkcijas." #~ msgid "Oficially supported" #~ msgstr "Prižiūrima oficialiai" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Kai kuriems atnaujinimams reikia pašalinti programinę įrangą. Naudokitės " #~ "funkcija „Žymėti visus atnaujinimus“ paketų tvarkyklėje „Synaptic­“ arba " -#~ "terminale įvykdykite komandą „sudo apt-get dist-upgrade“, kad Jūsų sistema " -#~ "būtų visiškai atnaujinta." +#~ "terminale įvykdykite komandą „sudo apt-get dist-upgrade“, kad Jūsų " +#~ "sistema būtų visiškai atnaujinta." #~ msgid "The following updates will be skipped:" #~ msgstr "Šie atnaujinimai nebus įdiegti:" @@ -1727,8 +1798,8 @@ msgstr "Su DFSG nesuderinama programinė įranga" #, fuzzy #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Skanuojant Jūsų saugyklos informaciją nebuvo rasta tinkamo atnaujinimo " #~ "įrašo.\n" @@ -1740,17 +1811,19 @@ msgstr "Su DFSG nesuderinama programinė įranga" #~ msgstr "Skyriai:" #~ msgid "" -#~ "You need to manually reload the latest information about " -#~ "updates\n" +#~ "You need to manually reload the latest information about updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" -#~ "Jūs turite patys įkelti naujausią informaciją apie " -#~ "atnaujinimus\n" +#~ "Jūs turite patys įkelti naujausią informaciją apie atnaujinimus\n" #~ "\n" #~ "Jūsų sistema automatiškai neieško atnaujinimų. Šią elgseną galite " -#~ "konfigūruoti „Sistema“ -> „Administravimas“ -> „Programinės įrangos savybės“." +#~ "konfigūruoti „Sistema“ -> „Administravimas“ -> „Programinės įrangos " +#~ "savybės“." #~ msgid "Reload the latest information about updates" -#~ msgstr "Įkelti naujausią informaciją apie atnaujinimus" \ No newline at end of file +#~ msgstr "Įkelti naujausią informaciją apie atnaujinimus" diff --git a/po/lv.po b/po/lv.po index f1bfe622..8ef74981 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-09-05 20:00+0000\n" "Last-Translator: Raivis Dejus \n" "Language-Team: Latvian \n" @@ -58,6 +58,7 @@ msgstr "Pēc viena mēneša" msgid "After %s days" msgstr "Pēc %s dienām" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -65,6 +66,7 @@ msgstr "%s atjauninājumi" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -74,6 +76,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Galvenais serveris" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,8 +126,7 @@ msgid "Error removing the key" msgstr "Kļūda aizvācot atslēgu" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Jūsu izvēlēto atslēgu nevar noņemt. Lūdzu, ziņojiet par šo kļūdu." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -161,6 +163,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nevar aprēķināt atjauninājumu" @@ -173,6 +176,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -195,6 +199,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -208,11 +213,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -222,15 +227,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -238,11 +243,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -254,11 +259,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -267,42 +273,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -310,15 +316,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -327,21 +334,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -350,63 +357,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Izņemt" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -416,22 +425,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -459,6 +469,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -474,6 +485,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -497,13 +509,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -546,6 +559,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -593,6 +607,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -612,6 +627,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -718,6 +734,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -807,14 +824,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -827,6 +847,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -848,6 +869,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -883,6 +905,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -904,6 +927,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -915,19 +939,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nekas" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1255,187 +1283,232 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiāli atbalstītie" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Sabiedrības uzturētie (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Maksas (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Saistītie autortiesību" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid "Select _All" -#~ msgstr "Izvēlēties _Visu" \ No newline at end of file +#~ msgstr "Izvēlēties _Visu" diff --git a/po/mk.po b/po/mk.po index 880eecd4..2d3da4e4 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Арангел Ангов \n" "Language-Team: Macedonian \n" @@ -56,13 +56,15 @@ msgstr "После еден месец" msgid "After %s days" msgstr "После %s дена" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "Инсталирам надградби..." #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,8 +128,7 @@ msgid "Error removing the key" msgstr "Грешка при отстранување на клучот" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка." @@ -167,6 +169,7 @@ msgstr "Не може да се надградат потребните мета msgid "A essential package would have to be removed" msgstr "Важен пакет мора да се отстрани" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не може да се одреди надградбата" @@ -182,6 +185,7 @@ msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Грешка при автентикација на некои пакети" @@ -209,6 +213,7 @@ msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не може да се погоди мета пакетот" @@ -222,11 +227,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -236,15 +241,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Читање на кешот" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -252,12 +257,12 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, fuzzy msgid "No valid mirror found" msgstr "Не е пронајден валиден помошен сервер" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -276,12 +281,13 @@ msgstr "" "изберете „Да“, ќе ги надградам '%s' до '%s' записи.\n" "Ако изберете „не“, надградбата ќе прекине." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 #, fuzzy msgid "Generate default sources?" msgstr "Врати ги стандардните клучеви" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -289,17 +295,17 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"По скенирањето на вашиот 'sources.list' не е пронајден валиден запис за " -"'%s'.\n" +"По скенирањето на вашиот 'sources.list' не е пронајден валиден запис за '%" +"s'.\n" "\n" "Дали треба стандардните записи за '%s' да бидат додадени? Ако изберете „Не“, " "надградувањето ќе прекини." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Информациите за складиштето се невалидни" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -307,23 +313,23 @@ msgstr "" "Од надградувањето на информациите за складиштето произлезе невалидна " "датотека. Ве молам пријавете го ова како бубачка." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Додатните извори се оневозможени" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 #, fuzzy msgid "Error during update" msgstr "Грешка при отстранување на клучот" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -331,11 +337,11 @@ msgstr "" "Се случи проблем при надградбата. Ова е обично некој проблем со мрежата и Ве " "молиме да ја проверете Вашата мрежна врска и да се обидете повторно." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Нема доволно место на дискот" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -346,15 +352,16 @@ msgstr "" "на %s. Испразнете го ѓубрето и отстранете ги привремените пакети или " "поранешни инсталации со помош на 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Дали сакате да ја започнете надградбата?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Не можам да ги инсталирам надградбите" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -363,11 +370,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Не можам да ги симнам надградбите" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -375,11 +382,11 @@ msgstr "" "Надградбата сега прекинува. Проверете ја Вашата интернет врска или медиумот " "за инсталација и обидете се повторно. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -388,24 +395,24 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Да ги отстранам застарените пакети?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Прескокни го овој чекор" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Отстрани" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 #, fuzzy msgid "Error during commit" msgstr "Грешка во извршувањето" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -413,28 +420,30 @@ msgstr "" "Се случи некој проблем при расчистувањето. Видете ја пораката подолу за " "повеќе информации. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Checking package manager" msgstr "Веќе работи друг менаџер за пакети" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Преземам промени" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -444,15 +453,15 @@ msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Ги ажурирам информациите за складиштето" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Невалидни информации за пакетот" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -462,23 +471,24 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Прашувам за потврда" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 #, fuzzy msgid "Upgrading" msgstr "Надградбата е завршена" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Барам застарен софтвер" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Надградбата на системот е завршена." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -506,6 +516,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -522,6 +533,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -545,13 +557,14 @@ msgstr "Се случи фатална грешка" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -596,6 +609,7 @@ msgstr "" "За да спречите загуба на податоци, затворете ги сите отворени апликации и " "документи." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy @@ -644,6 +658,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -665,6 +680,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -778,6 +794,7 @@ msgstr "Не можам да ги преземам белешките за из msgid "Please check your internet connection." msgstr "Ве молам проверете ја Вашата интернет врска." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Не можам да ја извршам алатката за надградба" @@ -881,15 +898,18 @@ msgstr "" "Не успеав да ги преземам промените. Ве молам проверете дали Вашата интернет " "врска е активна." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Безбедносни надградби за Debian Stable" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -905,6 +925,7 @@ msgstr "Надградби за Убунту 5.10" msgid "Distribution updates" msgstr "Инсталирам надградби..." +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -928,13 +949,14 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 -#, fuzzy +#, fuzzy, python-format msgid "Download size: %s" msgstr "Преземам промени" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Инсталирам надградби..." @@ -960,10 +982,11 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Верзија %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -981,14 +1004,15 @@ msgid "" "information on upgrading." msgstr "" "Повеќе нема да добивате безбедносни поправки или критични надградби. " -"Надградете го системот на понова верзија на Ubuntu Linux. Видете на " -"http://www.ubuntu.com за повеќе информации за надградувањето." +"Надградете го системот на понова верзија на Ubuntu Linux. Видете на http://" +"www.ubuntu.com за повеќе информации за надградувањето." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Новото издание на дистрибуцијата, '%s', е достапно" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Индексот на софтвер е расипан" @@ -1003,19 +1027,23 @@ msgstr "" "менаџерот за пакети Синаптик или прво извршете „sudo apt-ge install -f“ во " "терминал за да го надминете овој проблем." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1283,8 +1311,8 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Внесете ја комплетната линија за APT складиштето за да го " -"додадете\n" +"Внесете ја комплетната линија за APT складиштето за да го додадете\n" "\n" "APT линијата го содржи типот, локацијата и содржината на складиштето за на " "пример \"deb http://ftp.debian.org sarge main\". Во документацијата " @@ -1374,209 +1402,253 @@ msgstr "Големината на прозорецот" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Надградби за Убунту 5.10" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Оддржувано од заедницата (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Додатен софтвер" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Надградби за Убунту 5.04" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Оддржувано од заедницата (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Оддржувано од заедницата (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Оддржувано од заедницата (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Неслободно (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Неслободно (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Надградби за Убунту 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "CD диск со Убунту 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD диск со Убунту 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Безбедносни надградби за Убунту 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Надградби за Убунту 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Надградби за Убунту 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD диск со Убунту 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD диск со Убунту 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официјално поддржано" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Безбедносни надградби за Убунту 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Надградби за Убунту 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Надградби за Убунту 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Оддржувано од заедницата (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Неслободно (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD диск со Убунту 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Официјално поддржано" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Restricted copyright" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Безбедносни надградби за Убунту 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Надградби за Убунту 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Надградби за Убунту 5.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Безбедносни надградби за Debian Stable" +#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "Debian Testing" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "Debian Non-US (Unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-компатибилен софтвер со неслободни зависности" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Не-DFSG-компатибилен софтвер" @@ -1604,8 +1676,8 @@ msgstr "Не-DFSG-компатибилен софтвер" #, fuzzy #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " -#~ "како бубачка." +#~ "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го " +#~ "ова како бубачка." #, fuzzy #~ msgid "Hide details" @@ -1711,13 +1783,13 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ "Внесете ја комплетната линија за APT складиштето за да го " #~ "додадете\n" #~ "\n" -#~ "APT линијата го содржи типот, локацијата и содржината на складиштето за на " -#~ "пример \"deb http://ftp.debian.org sarge main\". Во документацијата " -#~ "можете да најдете детален опис на синтаксата." +#~ "APT линијата го содржи типот, локацијата и содржината на складиштето за " +#~ "на пример \"deb http://ftp.debian.org sarge main\". Во " +#~ "документацијата можете да најдете детален опис на синтаксата." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Додајте нова датотека со клуч во доверливиот привезок. Осигурајте се дека " #~ "сте го добиле клучот преку безбеден канал и дека му верувате на неговиот " @@ -1751,8 +1823,8 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr "Отстрани го избраниот клуч од доверливиот привезок." #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Врати ги стандардните клучеви на дистрибуцијата. Ова нема да ги смени " #~ "клучевите инсталирани од корисникот." @@ -1787,8 +1859,8 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Достапни надградби\n" #~ "\n" @@ -1880,7 +1952,8 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr[2] "Избравте %s пакети за надградба, со големина од %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Избравте %s од %s пакет за надградба, со големина од %s" #~ msgstr[1] "Избравте %s од %s пакети за надградба, со големина од %s" #~ msgstr[2] "Избравте %s од %s пакети за надградба, со големина од %s" @@ -1895,11 +1968,11 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr "Веќе работи друг менаџер за пакети" #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "Можете да работите само со една апликација за менаџмент на пакети одеднаш. " -#~ "Ве молам прво исклучете ја оваа апликацијата." +#~ "Можете да работите само со една апликација за менаџмент на пакети " +#~ "одеднаш. Ве молам прво исклучете ја оваа апликацијата." #~ msgid "Updating package list..." #~ msgstr "Ја ажурирам листата на пакети..." @@ -1915,17 +1988,17 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Ве молам надградете до понова верзија на Убунту Линукс. Верзијата на која " -#~ "што работите повеќе нема да биде поддржана во смисол на безбедносни поправки " -#~ "и други технички надградби. Ве молам побарајте информации за надградба на " -#~ "http://www.ubuntulinux.org." +#~ "што работите повеќе нема да биде поддржана во смисол на безбедносни " +#~ "поправки и други технички надградби. Ве молам побарајте информации за " +#~ "надградба на http://www.ubuntulinux.org." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Постои ново издание објавено под кодното име '%s'. Ве молам побарајте ги " #~ "инструкциите за надградба на http://www.ubuntulinux.org." @@ -1934,4 +2007,4 @@ msgstr "Не-DFSG-компатибилен софтвер" #~ msgstr "Никогаш пак не ја покажувај поракава" #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Не се пронајдени промени, серверот може да не е надграден сеуште." \ No newline at end of file +#~ msgstr "Не се пронајдени промени, серверот може да не е надграден сеуште." diff --git a/po/ms.po b/po/ms.po index 45a0d648..804258b0 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: azlinux \n" "Language-Team: Malay \n" @@ -55,6 +55,7 @@ msgstr "Selepas satu bulan" msgid "After %s days" msgstr "Selepas %s hari" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,14 +124,13 @@ msgid "Error removing the key" msgstr "Ralat semasa mengeluarkan kekunci" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Kekunci yang anda pilih tidak dapat di keluarkan. Sila laporkan ini sebagai " "ralat pepijat." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -167,6 +169,7 @@ msgstr "Tidak dapat menaikkan taraf pakej-meta yang diperlukan" msgid "A essential package would have to be removed" msgstr "Satu pakej yang perlu terpaksa dikeluarkan" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menjangka penaikkan taraf" @@ -182,6 +185,7 @@ msgstr "" "Satu masaalah yang tidak dapat perbetulkan berlaku ketika menjangkakan taraf " "penaikkan. Sila laporkan ini sebagai ralat pepijat." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Ralat mengesahkan sesetengah pakej" @@ -209,6 +213,7 @@ msgstr "" "Pakej yang diperlukan tidak dapat dipasang. Sila laporkan ini sebagai ralat " "pepijat. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Pakej meta tidak dapat diduga." @@ -228,11 +233,11 @@ msgstr "" "Sila pasangkan salah satu pakej diatas dahulu menggunakan synaptic ataupun " "apt-get sebelum meneruskan pemasangan." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -242,15 +247,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Membaca cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -258,12 +263,12 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, fuzzy msgid "No valid mirror found" msgstr "Tiada mirror yang sah dijumpai" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -279,33 +284,34 @@ msgstr "" "mirror telah lapuk.\n" "\n" "Adakah anda tetap mahu menulis semula fail 'Sources.list' anda? Jika anda " -"memilih 'Ya' disini ianya akan mengemaskini kesemua kemasukan '%s' kepada " -"'%s'.\n" +"memilih 'Ya' disini ianya akan mengemaskini kesemua kemasukan '%s' kepada '%" +"s'.\n" "Jika anda memilih 'tidak' kemaskinian akan dibatalkan." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:268 +#, fuzzy, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Tiada kemasukan yang sah dijumpai untuk '%s' selepas mengimbas " -"'sources.list' anda.\n" +"Tiada kemasukan yang sah dijumpai untuk '%s' selepas mengimbas 'sources." +"list' anda.\n" "\n" "Adakah kemasukan default untuk '%s' perlu ditambah? Jika anda memilih " "'Tidak' kemaskinian akan dibatalkan." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Maklumat repositori tidak sah" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -313,11 +319,11 @@ msgstr "" "Kemaskinian maklumat repositori menyebabkan fail yang tidak sah. Sila " "laporkan ini sebagai masalah." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Sumber ketiga tidak diaktifkan." -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -329,11 +335,11 @@ msgstr "" "selepas penaikkan taraf menggunakan alatan 'software-properties' ataupun " "'synaptic'." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Ralat semasa pengemaskinian." -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -342,11 +348,11 @@ msgstr "" "yang berkaitan dengan masaalah rangkaian, sila periksa dan cuba lagi " "sambungan rangkaian anda." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Muatak cakera keras tidak mencukupi." -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -357,15 +363,16 @@ msgstr "" "cakera keras %s anda. Kosong dan padamkan pakej-pakej sementara dari " "pemasangan sebelum ini menggunakan 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Anda mahu mulakan penaikkan taraf?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Tidak dapat memasang pakej-pakej penaikkan taraf." -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -377,11 +384,11 @@ msgstr "" "Penaikkan taraf tidak dapat diteruskan. Sistem anda mungkin tidak stabil. " "Sistem 'recovery' telah dijalankan (dpkg --configure -a)" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Pakej-pakej penaikan taraf tidak dapat dicapai." -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -389,11 +396,11 @@ msgstr "" "Penaikkan taraf tidak dapat diteruskan. Sila semak sambungan 'internet' atau " "media pemasangan anda dan cuba lagi. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -407,48 +414,50 @@ msgstr "" "Jika anda tidak megaktifkan 'universe', pakej-pakej ini akan dicadangkan " "untuk dikeluarkan di peringkat selanjutnya." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Keluarkan pakej-pakej yang sudah luput?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Abaikan langkah ini" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -458,15 +467,15 @@ msgstr "" "Satu masaalah yang tidak dapat perbetulkan berlaku ketika menjangkakan taraf " "penaikkan. Sila laporkan ini sebagai ralat pepijat." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -476,22 +485,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Mengemaskini" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Mencari perisian yang lapuk" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Naiktaraf sistem sempurna." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -519,6 +529,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -534,6 +545,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -557,15 +569,16 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Satu pakej yang perlu terpaksa dikeluarkan" @@ -601,9 +614,9 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." -msgstr "" -"Untuk mengelakkan kehilangan data tutup kesemua aplikasi dan dokumen." +msgstr "Untuk mengelakkan kehilangan data tutup kesemua aplikasi dan dokumen." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -651,6 +664,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -670,6 +684,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -777,6 +792,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -866,14 +882,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -886,6 +905,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -907,6 +927,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -941,6 +962,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -962,6 +984,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -973,19 +996,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1320,188 +1347,233 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid "Some software no longer officially supported" -#~ msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." \ No newline at end of file +#~ msgstr "Sesetengah sofwer tidak ada sokongan/bantuan rasmi lagi." diff --git a/po/nb.po b/po/nb.po index 578df94b..54cffe84 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Hans Petter Birkeland \n" "Language-Team: Norwegian Bokmal \n" @@ -55,13 +55,15 @@ msgstr "Etter en måned" msgid "After %s days" msgstr "Etter %s dager" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "Installerer oppdateringer" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,9 +74,10 @@ msgstr "" msgid "Main server" msgstr "Hovedtjener" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 -#, fuzzy +#, fuzzy, python-format msgid "Server for %s" msgstr "Tjener for %s" @@ -128,13 +131,11 @@ msgid "Error removing the key" msgstr "Kunne ikke fjerne nøkkelen" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." -msgstr "" -"Nøkkelen du valgte kan ikke fjernes. Vennligst rapporter denne feilen." +msgid "The key you selected could not be removed. Please report this as a bug." +msgstr "Nøkkelen du valgte kan ikke fjernes. Vennligst rapporter denne feilen." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -173,6 +174,7 @@ msgstr "Kan ikke oppgradere nødvendige meta-pakker" msgid "A essential package would have to be removed" msgstr "En nødvendig pakke må fjernes" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunne ikke forberede oppgraderingen" @@ -188,6 +190,7 @@ msgstr "" "Et uløselig problem oppstod ved forberedelse av oppgraderingen. Vennligst " "rapporter dette som en feil." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kunne ikke autentisere noen pakker" @@ -214,6 +217,7 @@ msgid "" msgstr "" "Kunne ikke installere en nødvendig pakke. Vennligst rapporter denne feilen. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan ikke gjette på meta-pakke" @@ -233,12 +237,12 @@ msgstr "" " Vennligst installer én av de nevnte pakkene først ved å bruke synaptic " "eller apt-get før du fortsetter." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, fuzzy msgid "Failed to add the CD" msgstr "Kunne ikke hente" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -248,15 +252,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Leser mellomlager" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +268,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Fant ikke noe gyldig speil" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -287,11 +291,12 @@ msgstr "" "alle forekomster av '%s' endres til '%s'.\n" "Hvis du velger \"Nei\" vil oppgraderingen avbrytes." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Vil du opprette standardkilder?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -305,11 +310,11 @@ msgstr "" "Skal standard linjer for '%s' legges til? Hvis du velger 'Nei' vil " "oppdateringen avbrytes." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Ugyldig informasjon om arkiv" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -317,11 +322,11 @@ msgstr "" "Oppgradering av kanalinformasjon resulterte i en ugyldig fil. Vennligst " "rapporter dette som en feil." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Tredjepartskilder er deaktivert" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -332,11 +337,11 @@ msgstr "" "aktivere dem etter oppgraderingen ved hjelp av verktøyet 'Egenskaper for " "programvare' eller med Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Feil under oppdatering" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -345,11 +350,11 @@ msgstr "" "problem med nettverkstilkoblingen. Vennligst sjekk nettverkstilkoblingen din " "og prøv igjen." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Ikke nok ledig diskplass" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -360,15 +365,16 @@ msgstr "" "papirkurven og fjern midlertidige pakker fra tidligere installasjoner ved å " "bruke 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Ønsker du å starte oppgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Kunne ikke installere oppgraderingene" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -380,11 +386,11 @@ msgstr "" "Oppgraderingen avbrytes nå. Systemet ditt kan være ubrukelig. En reperasjon " "ble forsøkt kjørt (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Kunne ikke laste ned alle oppgraderingene." -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -392,11 +398,11 @@ msgstr "" "Oppgraderingen avbrytes nå. Vennligst sjekk internet-tilkoblingen eller " "installasjonsmediet og prøv på nytt. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -411,23 +417,23 @@ msgstr "" "Hvis du ikke har 'universe' aktivert vil disse pakkene bli foreslått fjernet " "i neste steg." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Ønsker du å fjerne utdaterte pakker?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Hopp over dette punktet" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Fjern" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Feil ved commit" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -435,27 +441,29 @@ msgstr "" "Et problem oppstod under opprydningen. Vennligst se meldingen under for mer " "informasjon. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Gjenoppretter systemets originale tilstand" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Sjekker pakkehåndterer" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Forbereder oppgraderingen" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -465,16 +473,16 @@ msgstr "" "Et uløselig problem oppstod ved forberedelse av oppgraderingen. Vennligst " "rapporter dette som en feil." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Oppdaterer informasjon om arkivet" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Ugyldig pakkeinformasjon" -#: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:726 +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -486,22 +494,23 @@ msgstr "" "pakken '%s'.\n" "Dette indikerer en alvorlig feil, vennligst rapportér denne feilen." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Spør om bekreftelse" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Oppgraderer" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Søker etter utdatert programvare" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Systemoppgraderingen er fullført" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -513,23 +522,24 @@ msgid "Fetching is complete" msgstr "Oppdateringen er fullført" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Laster ned fil %li av %li med %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:253 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "Rundt %li minutter gjenstår" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Laster ned fil %li av %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Lagrer endringer" @@ -545,8 +555,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -571,39 +582,40 @@ msgstr "En uopprettelig feil oppsto" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Vennligst rapporter feilen og inkluder filene /var/log/dist-upgrade.log og " -"/var/log/dist-upgrade-apt.log i din melding. Oppgraderingen avbrytes nå.\n" +"Vennligst rapporter feilen og inkluder filene /var/log/dist-upgrade.log og /" +"var/log/dist-upgrade-apt.log i din melding. Oppgraderingen avbrytes nå.\n" "Din orginale sources.list ble lagret i /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s pakke vil bli fjernet." msgstr[1] "%s pakker vil bli fjernet" #: ../DistUpgrade/DistUpgradeViewGtk.py:506 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s pakke vil bli installert." msgstr[1] "%s pakker vil bli installert." #: ../DistUpgrade/DistUpgradeViewGtk.py:512 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pakke vil bli oppgradert." msgstr[1] "%s pakker vil bli oppgradert." #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -627,6 +639,7 @@ msgid "To prevent data loss close all open applications and documents." msgstr "" "For å forhindre tap av data bør du lukke alle åpne programmer og dokumenter." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -654,12 +667,12 @@ msgid "Upgrade %s" msgstr "Oppgradér %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy +#, fuzzy, python-format msgid "%li days %li hours %li minutes" msgstr "Rundt %li dager, %li timer og %li minutter gjenstår" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy +#, fuzzy, python-format msgid "%li hours %li minutes" msgstr "Rundt %li timer og %li minutter gjenstår" @@ -674,6 +687,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -695,6 +709,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -809,6 +824,7 @@ msgstr "Kunne ikke laste ned utgivelsesnotatene" msgid "Please check your internet connection." msgstr "Vennligst kontrollér internettforbindelsen." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Kunne ikke kjøre oppgraderingsverktøyet" @@ -884,12 +900,12 @@ msgstr "" "nettverket eller med tjeneren. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Laster ned filen %li av %li med %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Laster ned filen %li av %li med %s/s" @@ -914,16 +930,19 @@ msgstr "" "Kunne ikke laste ned listen med endringer. Vennligst kontrollér " "internettilkoblingen." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 #, fuzzy msgid "Recommended updates" msgstr "Anbefalte oppdateringer" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -939,6 +958,7 @@ msgstr "Ubuntu 5.10 Backports" msgid "Distribution updates" msgstr "_Gjenoppta oppgradering" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -963,6 +983,7 @@ msgstr "" msgid "_Check All" msgstr "Sjekk" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -989,15 +1010,16 @@ msgid "Checking for updates" msgstr "Sjekker for tilgjengelige oppdateringer" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Ny versjon: %s (Størrelse: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Versjon %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1014,14 +1036,15 @@ msgid "" "information on upgrading." msgstr "" "Du vil ikke lenger motta flere sikkerhetsmessige eller kritiske " -"oppdateringer. Oppgradér til en nyere utgivelse av Ubuntu. Se " -"http://www.ubuntu.com for mer informasjon om oppgradering." +"oppdateringer. Oppgradér til en nyere utgivelse av Ubuntu. Se http://www." +"ubuntu.com for mer informasjon om oppgradering." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "Ny versjon \"%s\" er tilgjengelig" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Programvareoversikten er ødelagt." @@ -1036,19 +1059,23 @@ msgstr "" "pakkehåndteringsprogrammet \"Synaptic\" eller kjør kommandoen \"sudo apt-get " "install -f\" i en terminal for å løse denne situasjonen." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ingen" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1424,206 +1451,250 @@ msgstr "Vindusstørrelsen" msgid "Configure the sources for installable software and updates" msgstr "Sett opp programvarekanaler og oppdateringer" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 Oppdateringer" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Vedlikeholdt av miljøet (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Bidratt programvare" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Vedlikeholdt av miljøet (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Vedlikeholdt av miljøet (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Vedlikeholdt av miljøet (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Non-free (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Non-free (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Oppdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD med Ubuntu 5.04 «Hoary Hedgedog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Offisielt støttet" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 Sikkerhetsoppdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 Oppdateringer" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Vedlikeholdt av miljøet (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Non-free (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD med Ubuntu 4.10 «Warty Warthog»" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Noe programvare er ikke lenger offisielt støttet" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begrenset opphavsrett" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" sikkerhetsoppdateringer" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatiblel programvare med Non-Free avhengigheter" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Ikke-DFSG-kompatibel programvare" @@ -1632,7 +1703,6 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "US eksport begrenset programvare" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Laster ned fil %li av %li ved ukjent hastighet" @@ -1656,7 +1726,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Oppgraderer til Ubuntu 6.06 LTS" +#~ "Oppgraderer til Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1677,26 +1748,25 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "" #~ "Analyserer systemet\n" #~ "\n" -#~ "Programvareoppdateringer reparerer feil, eliminerer sikkerhetsproblemer og " -#~ "gir deg ny funksjonalitet." +#~ "Programvareoppdateringer reparerer feil, eliminerer sikkerhetsproblemer " +#~ "og gir deg ny funksjonalitet." #~ msgid "Oficially supported" #~ msgstr "Offisielt støttet" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Noen oppdateringer krever fjerning av andre programpakker. Bruk funksjonen " -#~ "\"Merk alle oppgraderinger\" i pakkehåndteringsprogrammet \"Synaptic\" eller " -#~ "kjør kommandoen \"sudo apt-get dist-upgrade\" i en terminal for å oppgradere " -#~ "systemet fullstendig." +#~ "Noen oppdateringer krever fjerning av andre programpakker. Bruk " +#~ "funksjonen \"Merk alle oppgraderinger\" i pakkehåndteringsprogrammet " +#~ "\"Synaptic\" eller kjør kommandoen \"sudo apt-get dist-upgrade\" i en " +#~ "terminal for å oppgradere systemet fullstendig." #~ msgid "The following updates will be skipped:" #~ msgstr "Følgende pakker vil ikke bli oppgradert:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Rundt %li sekunder gjenstår" @@ -1772,8 +1842,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "Backports for Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Fant ikke noen gyldig oppføring for oppgradering ved lesing av " #~ "arkivinformasjon.\n" @@ -1785,8 +1855,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "Du må oppdatere pakkelisten for at endringene skal tre i kraft. Vil du gjøre " -#~ "dette nå?" +#~ "Du må oppdatere pakkelisten for at endringene skal tre i kraft. Vil du " +#~ "gjøre dette nå?" #~ msgid "Sections" #~ msgstr "Seksjoner" @@ -1838,13 +1908,13 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "" #~ "Autentiseringsnøkler\n" #~ "\n" -#~ "Du kan legge til eller fjerne autentiseringsnøkler i dette vinduet. Nøkler " -#~ "gjør det mulig å kontrollere integriteten til programvare som blir lastet " -#~ "ned." +#~ "Du kan legge til eller fjerne autentiseringsnøkler i dette vinduet. " +#~ "Nøkler gjør det mulig å kontrollere integriteten til programvare som blir " +#~ "lastet ned." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Legg til en ny nøkkelfil til den sikre nøkkelringen. Vær sikker på at du " #~ "mottok nøkkelen over en sikker kanal og at du stoler på eieren. " @@ -1875,8 +1945,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "Maksimum størrelse i MB:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "Gjenoppret nøklene som kom med distri" #~ msgid "Set _maximum size for the package cache" @@ -1906,13 +1976,13 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Tilgjengelige oppdateringer\n" #~ "\n" -#~ "De følgende pakkene kan oppgraderes. Du kan oppgradere dem ved å trykke på " -#~ "«Installer»-knappen." +#~ "De følgende pakkene kan oppgraderes. Du kan oppgradere dem ved å trykke " +#~ "på «Installer»-knappen." #~ msgid "Cancel downloading the changelog" #~ msgstr "Avbryt nedlasting av endringslogg" @@ -1988,7 +2058,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr[1] "Du har valgt alle de %s oppdaterte pakkene, total størrelse %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Du har valgt %s av %s oppdaterte pakker, størrelse %s" #~ msgstr[1] "Du har valgt %s av de %s oppdaterte pakkene, total størrelse %s" @@ -1996,8 +2067,8 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgstr "Oppdateringene blir tilført." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Du kan bare kjøre et pakkehåndteringsprogram samtidig. Lukk det andre " #~ "programmet først." @@ -2013,19 +2084,19 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Oppgrader til en nyere versjon av Ubuntu Linux. Versjonen du kjører får ikke " -#~ "sikkerhetsoppdateringer eller andre kritiske oppdateringer lenger. Se " -#~ "http://www.ubuntulinux.org for informasjon om oppgradering." +#~ "Oppgrader til en nyere versjon av Ubuntu Linux. Versjonen du kjører får " +#~ "ikke sikkerhetsoppdateringer eller andre kritiske oppdateringer lenger. " +#~ "Se http://www.ubuntulinux.org for informasjon om oppgradering." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Det er en ny versjon av Ubuntu tilgjengelig!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "En ny versjon med kodenavnet «%s» er tilgjengelig. Se http://www. " #~ "ubuntulinux.org/ for instruksjoner om oppgradering." @@ -2058,8 +2129,9 @@ msgstr "Ikke-DFSG-kompatibel programvare" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" -#~ "Dette betyr at ved siden av å oppgradere pakkene kreves det ekstra handling " -#~ "(som å installere eller fjerne pakker). Bruk «Synaptic» eller «apt-get dist-" -#~ "upgrade» for å løse problemet." \ No newline at end of file +#~ "Dette betyr at ved siden av å oppgradere pakkene kreves det ekstra " +#~ "handling (som å installere eller fjerne pakker). Bruk «Synaptic» eller " +#~ "«apt-get dist-upgrade» for å løse problemet." diff --git a/po/ne.po b/po/ne.po index 286556bc..d47a5543 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Jaydeep Bhusal \n" "Language-Team: Nepali \n" @@ -57,13 +57,15 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -73,6 +75,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -125,11 +128,8 @@ msgid "Error removing the key" msgstr "कुञ्जि हटाउँदा त्रुटि" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." -msgstr "" -"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " -"दिनुहोस" +msgid "The key you selected could not be removed. Please report this as a bug." +msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" #: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format @@ -165,6 +165,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -176,10 +177,9 @@ msgid "" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -msgstr "" -"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " -"दिनुहोस" +msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -201,10 +201,9 @@ msgstr "" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "" -"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " -"दिनुहोस " +msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -218,11 +217,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -232,15 +231,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -248,11 +247,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -264,11 +263,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -277,43 +277,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 #, fuzzy msgid "Error during update" msgstr "कुञ्जि हटाउँदा त्रुटि" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -321,15 +321,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -338,21 +339,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -361,68 +362,68 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Checking package manager" msgstr "अर्को प्याकेज व्यवस्थापक चलिरेको छ" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "परिवर्तनहरु डाउनलोड गर्दै" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." -msgstr "" -"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " -"दिनुहोस" +msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -432,23 +433,24 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 #, fuzzy msgid "Upgrading" msgstr "स्तरवृद्धि समाप्त" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -476,6 +478,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -492,6 +495,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -515,13 +519,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -561,6 +566,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy @@ -609,6 +615,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -628,6 +635,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -736,6 +744,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -744,9 +753,7 @@ msgstr "" #, fuzzy msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" -msgstr "" -"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " -"दिनुहोस" +msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" #: ../UpdateManager/DistUpgradeFetcher.py:171 #, fuzzy @@ -831,18 +838,20 @@ msgstr "युबन्टुको एउटा नयाँ विमोचन msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "" -"परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस" +msgstr "परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -858,6 +867,7 @@ msgstr "युबन्टु ५.०४ अद्यावधिकहरु" msgid "Distribution updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -881,13 +891,14 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 -#, fuzzy +#, fuzzy, python-format msgid "Download size: %s" msgstr "परिवर्तनहरु डाउनलोड गर्दै" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "स्तरवृद्धिहरु स्थापना गर्दै" @@ -912,10 +923,11 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "संस्करण %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -938,6 +950,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -949,19 +962,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1227,12 +1244,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"तपाईंले थप्न चाहेको कोषको पुर्ण एपिटि हरफ प्रविष्ट " -"गर्नुहोस\n" +"तपाईंले थप्न चाहेको कोषको पुर्ण एपिटि हरफ प्रविष्ट गर्नुहोस\n" "\n" -"एपिटि हरफमा कोषको प्रकार, स्थान र सामग्री समाहित हुन्छ, उदाहरण को लागि " -"\"deb http://ftp.debian.org sarge main\". तपाईंले मिसिलिकरण मा वाक्य " -"संरचनाको एउटा विस्तृत विवरण पाउन सक्नुहुन्छ" +"एपिटि हरफमा कोषको प्रकार, स्थान र सामग्री समाहित हुन्छ, उदाहरण को लागि \"deb " +"http://ftp.debian.org sarge main\". तपाईंले मिसिलिकरण मा वाक्य संरचनाको एउटा " +"विस्तृत विवरण पाउन सक्नुहुन्छ" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1316,211 +1332,256 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "योगदान गरिएको सफ्टवेयर" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "नन-फ्री (बहुभर्स)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "नन-फ्री (बहुभर्स)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "कार्यालय बाट समर्थित" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "नन-फ्री (बहुभर्स)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "कार्यालय बाट समर्थित" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "निषेधित प्रतिलिपि अधिकार" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "युबन्टु ४.१० सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "युबन्टु ५.०४ अद्यावधिकहरु" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "डेबियन अचल सुरक्षा अद्यावधिकहरु" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "डेबियन अचल सुरक्षा अद्यावधिकहरु" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1552,8 +1613,7 @@ msgstr "" #, fuzzy #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "" -#~ "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा " -#~ "दिनुहोस" +#~ "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" #, fuzzy #~ msgid "Hide details" @@ -1609,11 +1669,11 @@ msgstr "" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "कोष जानकारी संग परिवर्तनहरु छन. %s मा तपाईंको स्रोतहरु को सुची को ब्याकअप " -#~ "प्रति भण्डारण गरिएको छ. बचत गर्नुहोस. \n" +#~ "कोष जानकारी संग परिवर्तनहरु छन. %s मा तपाईंको स्रोतहरु को सुची को ब्याकअप प्रति " +#~ "भण्डारण गरिएको छ. बचत गर्नुहोस. \n" #~ "\n" -#~ "तपाईको परिवर्तनहरुले प्रभाव लिनको लागि तपाईंले सर्भरहरु बाट प्याकेज सुची " -#~ "फेरि लोड गर्नुपर्दछ. के तपाईं यो अहिले गर्न चाहनुहुन्छ?" +#~ "तपाईको परिवर्तनहरुले प्रभाव लिनको लागि तपाईंले सर्भरहरु बाट प्याकेज सुची फेरि लोड " +#~ "गर्नुपर्दछ. के तपाईं यो अहिले गर्न चाहनुहुन्छ?" #, fuzzy #~ msgid "Sections" @@ -1667,18 +1727,16 @@ msgstr "" #~ msgstr "" #~ "प्रमाणीकरण कुञ्जिहरु\n" #~ "\n" -#~ "तपाईंले यो संवाद भित्र प्रमाणीकरण कुञ्जिहरु थप्न र हटाउन सक्नुहुन्छ. तपाईंले " -#~ "डाउनलोड गरेको सफ्टवेयर को विश्वसनियता रुजु जाँच गर्नको लागि एउटा कुञ्जिले " -#~ "संभव पार्दछ" +#~ "तपाईंले यो संवाद भित्र प्रमाणीकरण कुञ्जिहरु थप्न र हटाउन सक्नुहुन्छ. तपाईंले डाउनलोड " +#~ "गरेको सफ्टवेयर को विश्वसनियता रुजु जाँच गर्नको लागि एउटा कुञ्जिले संभव पार्दछ" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "विश्वास गरिएको कुञ्जिरिंग मा एउटा नयाँ कुञ्जि फाइल थप्नुहोस. विश्वस्त " -#~ "हुनुहोस कि तपाईंले एउटा सुरक्षित माध्यम माथि कुञ्जि प्राप्त गर्नुभयो र तपाईं " -#~ "मालिकलाइ विश्वास गर्नुहुन्छ. " +#~ "विश्वास गरिएको कुञ्जिरिंग मा एउटा नयाँ कुञ्जि फाइल थप्नुहोस. विश्वस्त हुनुहोस कि तपाईंले " +#~ "एउटा सुरक्षित माध्यम माथि कुञ्जि प्राप्त गर्नुभयो र तपाईं मालिकलाइ विश्वास गर्नुहुन्छ. " #, fuzzy #~ msgid "Add repository..." @@ -1707,11 +1765,11 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "वितरण संग शिप गरिएको पुर्वनिर्धारित कुञ्जिहरु पुर्वावस्थामा ल्याउनुहोस. यसले " -#~ "प्रयोगकर्ता स्थापना गरिएको कुञ्जिहरु परिवर्तन गर्दैन" +#~ "वितरण संग शिप गरिएको पुर्वनिर्धारित कुञ्जिहरु पुर्वावस्थामा ल्याउनुहोस. यसले प्रयोगकर्ता " +#~ "स्थापना गरिएको कुञ्जिहरु परिवर्तन गर्दैन" #~ msgid "Set _maximum size for the package cache" #~ msgstr "प्याकेज क्यासको लागि अधिकतम आकार सेट गर्नुहोस" @@ -1738,13 +1796,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "उपलब्ध अद्यावधिकहरु\n" #~ "\n" -#~ "निम्न प्याकेजहरु स्तरवृद्धि गर्न योग्य पाइयो. तपाईंले तिनिहरु लाइ स्थापना " -#~ "बटन प्रयोग गरेर स्तरवृद्धि गर्न सक्नुहुन्छ" +#~ "निम्न प्याकेजहरु स्तरवृद्धि गर्न योग्य पाइयो. तपाईंले तिनिहरु लाइ स्थापना बटन प्रयोग " +#~ "गरेर स्तरवृद्धि गर्न सक्नुहुन्छ" #~ msgid "Cancel downloading the changelog" #~ msgstr "परिवर्तनलग को डाउनलोड रद्द गर्नुहोस" @@ -1791,11 +1849,11 @@ msgstr "" #~ msgstr "स्तरवृद्धिहरु लागु हुँदैछन" #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "तपाईंले उहि समयमा केवल एउटा प्याकेज व्यवस्थापन अनुप्रयोग चलाउन " -#~ "सक्नुहुन्छ.कृपया पहिला यो अन्य अनुप्रयोग बन्द गर्नुहोस" +#~ "तपाईंले उहि समयमा केवल एउटा प्याकेज व्यवस्थापन अनुप्रयोग चलाउन सक्नुहुन्छ.कृपया पहिला " +#~ "यो अन्य अनुप्रयोग बन्द गर्नुहोस" #~ msgid "Updating package list..." #~ msgstr "प्याकेज सुची स्तरवृद्धि गर्दै" @@ -1809,20 +1867,19 @@ msgstr "" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "कृपया युबन्टु लिनक्स को नयाँ संस्करण मा स्तरवृद्धि गर्नुहोस. तपाईंले " -#~ "चलाइरहेको संस्करण ले सुरक्षा स्थिरहरु वा अन्य सूक्ष्म स्तरवृद्धिहरु प्राप्त " -#~ "गर्नेछैन. कृपया स्तरवृद्धि जानकारी को लागि http://www.ubuntulinux.org " -#~ "हेर्नुहोस" +#~ "कृपया युबन्टु लिनक्स को नयाँ संस्करण मा स्तरवृद्धि गर्नुहोस. तपाईंले चलाइरहेको संस्करण ले " +#~ "सुरक्षा स्थिरहरु वा अन्य सूक्ष्म स्तरवृद्धिहरु प्राप्त गर्नेछैन. कृपया स्तरवृद्धि जानकारी को " +#~ "लागि http://www.ubuntulinux.org हेर्नुहोस" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "एउटा नयाँ संकेतनाम '%s' भएको विमोचन उपलब्ध छ. कृपया स्तरवृद्धि निर्देशन को " -#~ "लागि://www.ubuntulinux.org/ हेर्नुहोस." +#~ "एउटा नयाँ संकेतनाम '%s' भएको विमोचन उपलब्ध छ. कृपया स्तरवृद्धि निर्देशन को लागि://" +#~ "www.ubuntulinux.org/ हेर्नुहोस." #~ msgid "Never show this message again" #~ msgstr "यो संदेश फेरि कहिले पनि नदेखाउनुहोस" @@ -1843,8 +1900,8 @@ msgstr "" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "यसको मतलब स्थापना गरिएका प्याकेजहरु को केहि निर्भरताहरु सन्तुष्ट छैनन. कृपया " -#~ "स्थिति ठीक गर्नको लागि \"साइनाप्टिक\" अथवा \"एपिटि-गेट\" प्रयोग गर्नुहोस" +#~ "यसको मतलब स्थापना गरिएका प्याकेजहरु को केहि निर्भरताहरु सन्तुष्ट छैनन. कृपया स्थिति " +#~ "ठीक गर्नको लागि \"साइनाप्टिक\" अथवा \"एपिटि-गेट\" प्रयोग गर्नुहोस" #~ msgid "It is not possible to upgrade all packages." #~ msgstr "सबै प्याकेजहरु स्तरवृद्धि गर्न संभव छैन" @@ -1852,12 +1909,12 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" -#~ "यसको मतलब प्याकेजहरु को उचित स्तरवृद्धि बाहेक केहि अधिक कार्य (जस्तै " -#~ "प्याकेजहरुको स्थापन र विस्थापन) आवश्यक छ. कृपया स्थिति ठीक गर्नको लागि " -#~ "साइनाप्टिक \"स्मार्ट स्तरवृद्धि\" अथवा \"एपिटि-गेट डिस्ट-स्तरवृद्धि\" प्रयोग " -#~ "गर्नुहोस" +#~ "यसको मतलब प्याकेजहरु को उचित स्तरवृद्धि बाहेक केहि अधिक कार्य (जस्तै प्याकेजहरुको स्थापन " +#~ "र विस्थापन) आवश्यक छ. कृपया स्थिति ठीक गर्नको लागि साइनाप्टिक \"स्मार्ट स्तरवृद्धि\" " +#~ "अथवा \"एपिटि-गेट डिस्ट-स्तरवृद्धि\" प्रयोग गर्नुहोस" #~ msgid "Initializing and getting list of updates..." -#~ msgstr "अद्यावधिकहरुको इनिसियलाइज गर्दै र सुची प्राप्त गर्दै" \ No newline at end of file +#~ msgstr "अद्यावधिकहरुको इनिसियलाइज गर्दै र सुची प्राप्त गर्दै" diff --git a/po/nl.po b/po/nl.po index d43312ff..d7f74737 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Tino Meinen \n" "Language-Team: Nederlands \n" @@ -54,13 +54,15 @@ msgstr "Na één maand" msgid "After %s days" msgstr "Na %s dagen" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "%s updates" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Hoofdserver" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "Fout bij het verwijderen van de sleutel" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "De door u geselecteerde sleutel kon niet verwijderd worden. Gelieve dit als " "fout te melden." @@ -168,6 +170,7 @@ msgstr "Kan de vereiste meta-pakketten niet upgraden" msgid "A essential package would have to be removed" msgstr "Een essentieel pakket zou verwijderd worden" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kan de vereisten voor de upgrade niet berekenen" @@ -184,6 +187,7 @@ msgstr "" "Meld deze fout voor het pakket ‘update-manager’ in een foutrapportage en " "voeg daarbij de bestanden die zich in /var/log/dist-upgrade/ bevinden." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Fout bij het bepalen van de echtheid van sommige pakketten" @@ -212,6 +216,7 @@ msgstr "" "Het was niet mogelijk om een vereist pakket te installeren. Gelieve dit als " "fout te rapporteren. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan het meta-pakket niet raden" @@ -230,11 +235,11 @@ msgstr "" " Installeer eerst één van de bovenstaande pakketten met Synaptic of apt-get " "voordat u verder gaat." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Toevoegen van de cd is mislukt" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -249,15 +254,15 @@ msgstr "" "De foutmelding was:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Tijdelijke opslag inlezen" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Bestanden van het netwerk ophalen voor de upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -270,11 +275,11 @@ msgstr "" "is goedkoop, kunt u hier het beste op ‘Ja’ klikken. Wanneer netwerken duur " "is voor u kunt u beter ‘Nee’ kiezen." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Geen geldige mirror-server gevonden" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -294,11 +299,12 @@ msgstr "" "zal overal '%s' worden vervangen door '%s'.\n" "Wanneer u 'Nee' kiest, zal de update worden geannuleerd." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "De standaard bronnenlijst genereren?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -312,11 +318,11 @@ msgstr "" "Moeten de standaardregels voor '%s' worden toegevoegd? Wanneer u 'Nee' " "kiest, zal de update worden geannuleerd." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "De informatie over de pakketbronnen is ongeldig" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -324,11 +330,11 @@ msgstr "" "Het upgraden van de informatie over de pakketbronnen heeft het bestand " "ongeldig gemaakt. Rapporteer dit als een fout." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Pakketbronnen van derden uitgeschakeld" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " @@ -338,11 +344,11 @@ msgstr "" "kunt ze na de upgrade weer inschakelen met het programma ‘software-" "eigenschappen’ of met ‘synaptic’." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Fout tijdens het updaten" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -350,11 +356,11 @@ msgstr "" "Tijdens het updaten is er iets misgegaan. Dit komt meestal door " "netwerkproblemen. Controleer uw netwerkverbinding en probeer opnieuw." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Niet genoeg vrije schijfruimte" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -365,15 +371,16 @@ msgstr "" "vrijgemaakt. Leeg uw prullenbak en verwijder de tijdelijke pakketten van " "vorige installaties via 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Wilt u beginnen met de upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Kon de upgrades niet installeren" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -388,11 +395,11 @@ msgstr "" "Rapporteer deze fout voor het pakket 'update-manager' en voeg hierbij de " "bestanden die zich in /var/log/dist-upgrade/ bevinden." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Kon de upgrades niet downloaden" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -400,11 +407,11 @@ msgstr "" "De upgrade wordt nu afgebroken. Controleer uw internetverbinding of het " "installatiemedium en probeer opnieuw. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Ondersteuning voor bepaalde toepassingen is beëindigd." -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -419,23 +426,23 @@ msgstr "" "geactiveerd heeft zal bij de volgende stap gevraagd worden om deze pakketten " "te verwijderen." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Overbodige pakketten verwijderen?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Deze stap overslaan" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Verwijderen" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Fout bij het toepassen" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -443,45 +450,47 @@ msgstr "" "Tijdens het opruimen deed zich een probleem voor. Zie onderstaand bericht " "voor meer informatie. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "De oorspronkelijke toestand wordt hersteld" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Backport van ‘%s’ ophalen" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Pakkettenbeheer controleren" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Voorbereiden van de upgrade is mislukt" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -"Het voorbereiden van het systeem voor de upgrade is mislukt. \n" -" \n" +"Het voorbereiden van het systeem voor de upgrade is mislukt.\r\n" +" \r\n" "Meld deze fout voor het pakket ‘update-manager’ in een foutrapportage en " "voeg daarbij de bestanden die zich in /var/log/dist-upgrade/ bevinden." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Updaten van de informatie over de pakketbronnen" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Ongeldige pakketinformatie" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -493,25 +502,26 @@ msgstr "" "Nu uw pakkettenlijst bijgewerkt is, kan het essentiële pakket ‘%s’ niet meer " "gevonden worden.\n" "Dit is een ernstige fout, die gemeld moet worden. Rapporteer deze fout voor " -"het pakket ‘update-manager’ en voeg daarbij de bestanden die zich in " -"/var/log/dist-upgrade/ bevinden." +"het pakket ‘update-manager’ en voeg daarbij de bestanden die zich in /var/" +"log/dist-upgrade/ bevinden." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Vragen om bevestiging" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Bezig met upgraden" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Zoeken naar overbodige software" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Systeemupgrade is voltooid." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -522,7 +532,7 @@ msgid "Fetching is complete" msgstr "Het downloaden is voltooid" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Downloaden van bestand %li uit %li met %s/s" @@ -533,12 +543,13 @@ msgid "About %s remaining" msgstr "Ongeveer %s resterend" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Downloaden van bestand %li uit %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Wijzigingen worden doorgevoerd" @@ -557,6 +568,7 @@ msgstr "" "manager’ en voeg hierbij de bestanden die zich in /var/log/dist-upgrade/ " "bevinden." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -584,18 +596,19 @@ msgstr "Er is een ernstige fout ontstaan" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Meld dit als een fout en voeg de bestanden /var/log/dist-upgrade/main.log en " -"/var/log/dist-upgrade/apt.log bij uw foutrapport. De upgrade zal nu worden " -"afgebroken.\n" -"Uw oorspronkelijke sources.list is opgeslagen in " -"/etc/apt/sources.list.distUpgrade." +"Meld dit als een fout en voeg de bestanden /var/log/dist-upgrade/main.log " +"en /var/log/dist-upgrade/apt.log bij uw foutrapport. De upgrade zal nu " +"worden afgebroken.\n" +"Uw oorspronkelijke sources.list is opgeslagen in /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -618,7 +631,7 @@ msgstr[0] "%d pakket zal een upgrade krijgen" msgstr[1] "%d pakketten zullen een upgrade krijgen." #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -643,6 +656,7 @@ msgstr "" "Sluit alle openstaande toepassingen en documenten om dataverlies te " "voorkomen." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -692,6 +706,7 @@ msgid "%li seconds" msgstr "%li seconden" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -714,6 +729,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -825,6 +841,7 @@ msgstr "Kon de versie-informatie niet downloaden" msgid "Please check your internet connection." msgstr "Controleer uw internetverbinding." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Kon het upgrade-programma niet uitvoeren" @@ -928,14 +945,17 @@ msgstr "" "Kon de lijst met wijzigingen niet downloaden. \n" "Controleer uw internetverbinding." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Belangrijke veiligheidsupdates" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Aanbevolen updates" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Voorgestelde updates" @@ -948,6 +968,7 @@ msgstr "Backports" msgid "Distribution updates" msgstr "Distributie-updates" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Andere updates" @@ -970,6 +991,7 @@ msgstr "Alles _deselecteren" msgid "_Check All" msgstr "_Controleren" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1004,8 +1026,9 @@ msgstr "Van versie: %(old_version)s naar %(new_version)s" msgid "Version %s" msgstr "Versie %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 -#, fuzzy +#, fuzzy, python-format msgid "(Size: %s)" msgstr "(Grootte: %s)" @@ -1020,14 +1043,15 @@ msgid "" "information on upgrading." msgstr "" "U zult niet langer veiligheidsupdates of kritieke updates krijgen. Voer een " -"upgrade uit naar een nieuwere versie van Ubuntu Linux. Zie " -"http://www.ubuntu.com voor meer informatie over upgraden." +"upgrade uit naar een nieuwere versie van Ubuntu Linux. Zie http://www.ubuntu." +"com voor meer informatie over upgraden." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "De nieuwe distributie-versie ‘%s’ is beschikbaar" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Software-index is beschadigd" @@ -1042,19 +1066,23 @@ msgstr "" "Gebruik het pakkettenbeheerprogramma \"Synaptic\" of gebruik \"sudo apt-get " "install -f\" in een terminalvenster om eerst dit probleem te verhelpen." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Geen" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1070,8 +1098,8 @@ msgstr "" "U moet zelf controleren of er updates zijn\n" "\n" "Uw systeem controleert niet automatisch of er updates zijn. U kunt dit " -"configureren in Softwarebronnen op het tabblad Internet-" -"updates." +"configureren in Softwarebronnen op het tabblad Internet-updates." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1080,8 +1108,8 @@ msgstr "Houd uw systeem up-to-date" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Niet alle updates kunnen geïnstalleerd worden \n" -"↵ \n" +"Niet alle updates kunnen geïnstalleerd worden\r\n" +"↵\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1426,191 +1454,234 @@ msgstr "De venstergrootte" msgid "Configure the sources for installable software and updates" msgstr "Softwarekanalen en internet-updates configureren" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 ‘Edgy Eft’" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Door de gemeenschap beheerd" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Niet-vrije stuurprogramma's voor apparaten" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Beperkte software" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cd-rom met Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS ‘Dapper Drake’" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Door Canonical beheerde Open Source software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Door de gemeenschap beheerd (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Door de gemeenschap beheerde Open Source software" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Niet-vrije stuurprogramma's" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Niet-vrije stuurprogramma's voor apparaten " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Beperkte software (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" "Software die door auteursrechten of wettelijke regelingen beperkt wordt." +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cd-rom met Ubuntu 6.06 LTS ‘Dapper Drake’" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Updates die van een nieuwere distributie afkomstig zijn (backports)" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cd-rom met Ubuntu 5.10 ‘Breezy Badger’" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 veiligheidsupdates" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 updates" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 ‘Hoary Hedgehog’" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cd-rom met Ubuntu 5.04 ‘Hoary Hedgehog’" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Officieel ondersteund" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 veiligheidsupdates" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 updates" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 ‘Warty Warthog’" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Door de gemeenschap beheerd (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Niet-vrij (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cd-rom met Ubuntu 4.10 ‘Warty Warthog’" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Niet meer officieel ondersteund" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Beperkte auteursrechten" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 veiligheidsupdates" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 updates" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" veiligheidsupdates" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (onstabiel)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatibel met DFSG, maar met niet-vrije afhankelijkheden" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software niet compatibel met DFSG" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Downloaden van bestand %li uit %li, snelheid onbekend" @@ -1634,8 +1705,8 @@ msgstr "Software niet compatibel met DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Bezig met upgraden naar Ubuntu 6.06 " -#~ "LTS" +#~ "Bezig met upgraden naar Ubuntu " +#~ "6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1656,8 +1727,8 @@ msgstr "Software niet compatibel met DFSG" #~ msgstr "" #~ "Uw system wordt gecontroleerd\n" #~ "\n" -#~ "Software-updates repareren fouten, verhelpen veiligheidsproblemen en leveren " -#~ "nieuwe mogelijkheden." +#~ "Software-updates repareren fouten, verhelpen veiligheidsproblemen en " +#~ "leveren nieuwe mogelijkheden." #, fuzzy #~ msgid "Oficially supported" @@ -1665,18 +1736,18 @@ msgstr "Software niet compatibel met DFSG" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Enkele updates vereisen dat andere softwarepaketten verwijderd worden. " -#~ "Gebruik de functie \"Pakketten bijwerken\" van het pakkettenbeheerprogramma " -#~ "\"Synaptic\" of gebruik: \"sudo apt-get dist-upgrade\" in een " -#~ "terminalvenster om uw systeem compleet bij te werken met de laatste updates." +#~ "Gebruik de functie \"Pakketten bijwerken\" van het " +#~ "pakkettenbeheerprogramma \"Synaptic\" of gebruik: \"sudo apt-get dist-" +#~ "upgrade\" in een terminalvenster om uw systeem compleet bij te werken met " +#~ "de laatste updates." #~ msgid "The following updates will be skipped:" #~ msgstr "De volgende updates worden overgeslagen:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Ongeveer %li seconden resterend" @@ -1740,7 +1811,7 @@ msgstr "Software niet compatibel met DFSG" #~ msgid "Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Ubuntu 6.06 LTS \n" +#~ "Ubuntu 6.06 LTS\r\n" #~ "Ubuntu 6.06 updates" #~ msgid "Ubuntu 6.06 LTS Security Updates" @@ -1750,4 +1821,4 @@ msgstr "Software niet compatibel met DFSG" #~ msgstr "Ubuntu 6.06 LTS updates" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS backports" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS backports" diff --git a/po/nn.po b/po/nn.po index dc1d3472..5284803f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Willy André Bergstrøm \n" "Language-Team: Norwegian Nynorsk \n" @@ -55,6 +55,7 @@ msgstr "Etter ein månad" msgid "After %s days" msgstr "Etter %s dagar" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,8 +126,7 @@ msgid "Error removing the key" msgstr "Kunne ikkje fjerne nykjelen" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Nykjelen du valde kan ikkje fjernast. Ver venleg å rapportere denne feilen." @@ -164,6 +166,7 @@ msgstr "Kan ikkje oppgradere naudsynte meta-pakkar" msgid "A essential package would have to be removed" msgstr "Ein naudsynt pakke vil måtte fjernast" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunne ikkje forberede oppgraderinga" @@ -176,6 +179,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Kunne ikkje autentisere somme pakkar" @@ -203,6 +207,7 @@ msgstr "" "Ein naudsynt pakke kunne ikkje installerast. Ver venleg og rapporter denne " "feilen. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan ikkje gjette på meta-pakke" @@ -216,11 +221,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -230,15 +235,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Les mellomlager" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -246,11 +251,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Fann ikkje noko gyldig spegl" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -269,11 +274,12 @@ msgstr "" "vil det oppdatere alle forekomstar av '%s' til '%s'.\n" "Om du veljer \"Nei\" vil oppgraderinga verte avbroten." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Vil du opprette standardkjelder?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -281,17 +287,17 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Inga gyldig oppføring for \"%s\" vart funne under gjennomsøking av " -"\"sources.list\"-fila di.\n" +"Inga gyldig oppføring for \"%s\" vart funne under gjennomsøking av \"sources." +"list\"-fila di.\n" "\n" "Vil du legge till standard oppføring for \"%s\"? Om du vel \"Nei\" vil " "oppdateringa verte avbroten." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Ugyldig arkivinformasjon" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -299,22 +305,22 @@ msgstr "" "Oppgraderinga av arkivinformasjonen resulterte i ei ugyldig fil. Rapporter " "dette som ein feil." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Tredjepartskjelder er deaktivert" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Feil under oppdatering" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -322,11 +328,11 @@ msgstr "" "Eit problem oppsto under oppdateringa. Dette er vanlegvis ei form for " "nettverksproblem. Sjekk nettverkskoblinga di og prøv igjen." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Ikkje nok ledig diskplass" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -334,15 +340,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -351,21 +358,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -374,63 +381,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -440,22 +449,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -483,6 +493,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -498,6 +509,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -521,13 +533,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -567,6 +580,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -614,6 +628,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -633,6 +648,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -739,6 +755,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -828,14 +845,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -848,6 +868,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -869,6 +890,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -903,6 +925,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -924,6 +947,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -935,19 +959,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1273,184 +1301,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/no.po b/po/no.po index 2bbaac2b..0459ea47 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2005-06-08 23:10+0200\n" "Last-Translator: Terance Edward Sola \n" "Language-Team: Norwegian Bokmal \n" @@ -219,11 +219,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -233,15 +233,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -249,11 +249,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -266,11 +266,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:266 +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -279,43 +279,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 #, fuzzy msgid "Error during update" msgstr "Feil under fjerning av nøkkel" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -324,15 +324,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,21 +341,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -364,52 +364,52 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:576 +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Checking package manager" msgstr "En annen pakkehåndterer kjører" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Laster ned endringer" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -418,15 +418,15 @@ msgid "" msgstr "" "Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -436,21 +436,21 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 #, fuzzy msgid "Asking for confirmation" msgstr "Undersøker systemkonfigurasjon" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 #, fuzzy msgid "Upgrading" msgstr "Oppgradering fullført" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" @@ -470,7 +470,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -500,28 +500,28 @@ msgid "" msgstr "" #. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -531,28 +531,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -560,40 +560,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Systemet er helt oppdatert!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, fuzzy, python-format msgid "Remove %s" msgstr "Detaljer" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, fuzzy, python-format msgid "Install %s" msgstr "_Installer" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, fuzzy, python-format msgid "Upgrade %s" msgstr "Oppgradering fullført" @@ -711,6 +711,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 #, fuzzy msgid "_Replace" msgstr "Oppdater" @@ -1081,10 +1082,15 @@ msgstr "Installerer oppdateringer..." #: ../data/glade/UpdateManager.glade.h:25 #, fuzzy +msgid "_Upgrade" +msgstr "Oppgradering fullført" + +#: ../data/glade/UpdateManager.glade.h:26 +#, fuzzy msgid "changes" msgstr "Endringer" -#: ../data/glade/UpdateManager.glade.h:26 +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" diff --git a/po/oc.po b/po/oc.po index eed871b2..564e980b 100644 --- a/po/oc.po +++ b/po/oc.po @@ -8,10 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:16+0000\n" -"Last-Translator: Yannig MARCHEGAY (Kokoyaya) " -"\n" +"Last-Translator: Yannig MARCHEGAY (Kokoyaya) \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,6 +56,7 @@ msgstr "Un mes aprèp" msgid "After %s days" msgstr "%s jorns aprèp" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s mesas a jorn" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,13 +126,12 @@ msgid "Error removing the key" msgstr "Error al moment de suprimir la clau" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Avem pas poscut suprimir la clau qu'avètz seleccionada. Raportatz l'anomalia." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -165,6 +167,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossible calcular la mesa a jorn" @@ -177,6 +180,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -199,6 +203,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -212,11 +217,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Impossible d'apondre lo CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -226,15 +231,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -242,11 +247,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -258,11 +263,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -271,42 +277,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Error al moment de metre a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Pas pro d'espaci liure" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +320,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Volètz començar la mesa a jorn ?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Impossible installar las mesas a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +338,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Impossible descargar las mesas a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,63 +361,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Suprimir los paquetatges obsolets ?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Suprimir" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -420,22 +429,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Demanda de confirmacion" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Mesa a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Recèrca de logicials obsolets" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "La mesa a jorn del sistèma es acabada." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -463,6 +473,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicacion dels cambis" @@ -478,6 +489,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -501,13 +513,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -530,7 +543,7 @@ msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -550,6 +563,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -597,6 +611,7 @@ msgid "%li seconds" msgstr "%li segondas" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -616,6 +631,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -723,6 +739,7 @@ msgstr "Impossible de telecargar las informacions de version" msgid "Please check your internet connection." msgstr "Verificatz vòstra connexion internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossible aviar l'esplech de mesa a jorn" @@ -812,14 +829,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -834,6 +854,7 @@ msgstr "Ubuntu 5.10 'Breezy Badger'" msgid "Distribution updates" msgstr "Mesas a jorn per internet" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -857,6 +878,7 @@ msgstr "" msgid "_Check All" msgstr "_Verificar" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -888,10 +910,11 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Version %s :" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -913,6 +936,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -924,19 +948,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1276,200 +1304,244 @@ msgstr "La talha de la fenèstra" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Pas liure (multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM que conten Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Pas liure (multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Pas liure (multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM que conten Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM que conten Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Pas liure (multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Mesas a jorn de securitat per Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (en tèst)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (instable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1495,4 +1567,4 @@ msgstr "" #~ msgstr "_Personalisar" #~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 6.06 LTS" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS" diff --git a/po/pa.po b/po/pa.po index 0e940c7d..cdedac54 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:16+0000\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -56,13 +56,15 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -160,6 +162,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -172,6 +175,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -194,6 +198,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -207,11 +212,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -221,15 +226,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -237,11 +242,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -253,11 +258,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -266,42 +272,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -309,15 +315,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -326,21 +333,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -349,63 +356,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -415,23 +424,24 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 #, fuzzy msgid "Upgrading" msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -459,6 +469,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -474,6 +485,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -497,13 +509,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -543,6 +556,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -590,6 +604,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -609,6 +624,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -719,6 +735,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -810,15 +827,18 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -833,6 +853,7 @@ msgstr "" msgid "Distribution updates" msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -855,13 +876,14 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." @@ -890,6 +912,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -911,6 +934,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -922,19 +946,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1277,184 +1305,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1507,4 +1580,4 @@ msgstr "" #, fuzzy #~ msgid "Sections:" -#~ msgstr "ਵੇਰਵਾ" \ No newline at end of file +#~ msgstr "ਵੇਰਵਾ" diff --git a/po/pl.po b/po/pl.po index 512fc57c..6e99e672 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-10 08:44+0000\n" "Last-Translator: Tomasz Dominikowski \n" "Language-Team: Polish \n" @@ -54,6 +54,7 @@ msgstr "Po miesiącu" msgid "After %s days" msgstr "Po %s dniach" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s aktualizacji" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Serwer główny" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -119,8 +122,7 @@ msgid "Error removing the key" msgstr "Błąd podczas usuwania klucza" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -163,6 +165,7 @@ msgstr "Nie można zaktualizować wymaganych meta-pakietów" msgid "A essential package would have to be removed" msgstr "Niezbędny pakiet musiałby zostać usunięty" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nie można przetworzyć aktualizacji" @@ -179,6 +182,7 @@ msgstr "" "Prosimy zgłosić błąd pakietu \"update-manager\" dołączając w zgłoszeniu " "pliki z folderu /var/log/dist-upgrade/ ." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Błąd podczas uwierzytelniania niektórych pakietów" @@ -202,9 +206,9 @@ msgstr "Nie można zainstalować \"%s\"" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "" -"Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd. " +msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nie można odnaleźć żadnego z wymaganych meta-pakietów" @@ -222,11 +226,11 @@ msgstr "" " Zainstaluj najpierw jeden z wymienionych pakietów używając programu " "synaptic lub apt-get." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Nie można dodać płyty CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -242,15 +246,15 @@ msgstr "" "Treść błędu jest następująca:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Odczytywanie bufora podręcznego" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Pobrać dane z sieci dla aktualizacji?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -262,11 +266,11 @@ msgstr "" "Jeśli posiadasz szybkie lub tanie łącze, powinieneś odpowiedzieć tutaj " "'Tak'. W innym przypadku wybierz 'Nie'." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Nie odnaleziono poprawnego serwera lustrzanego" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -281,15 +285,16 @@ msgstr "" "lustrzanego dla aktualizacji. To może się zdarzyć, jeśli używasz wewnętrzny " "serwer lustrzany lub informacje o serwerze są nieaktualne.\n" "\n" -"Czy chcesz przepisać plik \"sources.list\" mimo tego? Jeśli wybierzesz " -"\"Tak\" wpisy \"%s\" do \"%s\" zostaną zaktualizowane.\n" +"Czy chcesz przepisać plik \"sources.list\" mimo tego? Jeśli wybierzesz \"Tak" +"\" wpisy \"%s\" do \"%s\" zostaną zaktualizowane.\n" "Jeśli wybierzesz \"Nie\" aktualizacja zostanie anulowana." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Wygenerować domyślne źródła?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -297,17 +302,17 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Po zeskanowaniu \"sources.list\" nie odnaleziono poprawnego wpisu dla " -"\"%s\".\n" +"Po zeskanowaniu \"sources.list\" nie odnaleziono poprawnego wpisu dla \"%s" +"\".\n" "\n" "Czy mam dodać domyślne wpisy dla \"%s\"? Jeśli wybierzesz \"Nie\" " "aktualizacja zostanie anulowana." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Błędne informacje o repozytoriach" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -315,25 +320,25 @@ msgstr "" "W wyniku aktualizacji informacji o repozytoriach powstał błędny plik. Proszę " "zgłosić ten błąd." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Źródła stron niezależnych zostały wyłączone" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" "Niektóre kanały osób trzecich w pliku sources.list zostały wyłączone. Możesz " -"ponownie je włączyć po aktualizacji używając narzędzia \"software-" -"properties\" lub programu Synaptic." +"ponownie je włączyć po aktualizacji używając narzędzia \"software-properties" +"\" lub programu Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Błąd podczas aktualizacji" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -341,30 +346,31 @@ msgstr "" "Wystąpił problem podczas aktualizacji. Zazwyczaj wynika on z problemów z " "siecią, proszę sprawdzić połączenie sieciowe i spróbować ponownie." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Zbyt mało miejsca na dysku" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"Aktualizacja zostanie zatrzymana. Proszę zwolnić co najmniej %s miejsca na " -"%s. Opróżnij kosz i usuń tymczasowe pakiety z poprzednich instalacji " -"używając \"sudo apt-get clean\"." +"Aktualizacja zostanie zatrzymana. Proszę zwolnić co najmniej %s miejsca na %" +"s. Opróżnij kosz i usuń tymczasowe pakiety z poprzednich instalacji używając " +"\"sudo apt-get clean\"." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Czy chcesz rozpocząć aktualizację?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Instalacja aktualizacji zakończyła się niepowodzeniem." -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -378,11 +384,11 @@ msgstr "" "Prosimy zgłosić błąd pakietu \"update-manager\" dołączając w zgłoszeniu " "pliki z folderu /var/log/dist-upgrade/ ." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Pobranie aktualizacji było niemożliwe" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -390,11 +396,11 @@ msgstr "" "Aktualizacja została przerwana. Proszę sprawdzić połączenie sieciowe oraz " "dysk instalacyjny i spróbować ponownie. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Wsparcie dla niektórych aplikacji zostało zakończone" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -408,23 +414,23 @@ msgstr "" "Jeśli nie włączyłeś repozytoriów utrzymywanych przez społeczność (universe), " "zostanie zasugerowane ich usunięcie w następnym kroku." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Usunąć niepotrzebne pakiety?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Pomiń ten krok" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Usuń" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Błąd podczas zatwierdzania" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -432,44 +438,46 @@ msgstr "" "Wystąpił problem podczas oczyszczania. Więcej informacji znajduje się w " "poniższych wiadomościach. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Przywracanie pierwotnego stanu systemu" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Pobieranie backportu \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Sprawdzanie menedżera pakietów" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Przygotowanie aktualizacji nie powiodło się" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" "Przygotowanie systemu do aktualizacji nie powiodło się. Proszę zgłosić to " -"jako błąd pakietu \"update-manager\" i dołączyć do raportu pliki z " -"/var/log/dist-upgrade ." +"jako błąd pakietu \"update-manager\" i dołączyć do raportu pliki z /var/log/" +"dist-upgrade ." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Aktualizowanie informacji o repozytoriach" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Błędne informacje o pakietach" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -480,25 +488,26 @@ msgid "" msgstr "" "Po aktualizacji informacji o pakietach niezbędny pakiet \"%s\" nie może " "zostać odnaleziony.\n" -"To wskazuje na poważny problem, proszę zgłosić błąd pakietu \"update-" -"manager\" i dołączyć pliki zawarte w /var/log/dist-upgrade/ w raporcie." +"To wskazuje na poważny problem, proszę zgłosić błąd pakietu \"update-manager" +"\" i dołączyć pliki zawarte w /var/log/dist-upgrade/ w raporcie." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Pytanie o potwierdzenie" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Aktualizacja w toku" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Wyszukiwanie zdezaktualizowanego oprogramowania" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Aktualizacja systemu zakończona powodzeniem." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -526,6 +535,7 @@ msgstr "Pobieranie pliku %li z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Zatwierdzanie zmian" @@ -543,6 +553,7 @@ msgstr "" "Aktualizacja zostaje przerwana. Prosimy o wysłanie raportu o błędzie pakietu " "'update-manager' dołączając pliki w /var/log/dist-upgrade/." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -570,18 +581,19 @@ msgstr "Wystąpił błąd krytyczny" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Prosimy o wysłanie raportu o tym błędzie i dołączeniu plików /var/log/dist-" "upgrade/main.log i /var/log/dist-upgrade/apt.log w swoim raporcie. " "Aktualizacja zostaje przerwana.\n" -"Pierwotny plik sources.list został zapisany w " -"/etc/apt/sources.list.distUpgrade." +"Pierwotny plik sources.list został zapisany w /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -631,6 +643,7 @@ msgstr "" "Aby zapobiec utracie danych proszę zamknąć wszystkie otwarte aplikacje i " "dokumenty." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -678,6 +691,7 @@ msgid "%li seconds" msgstr "%li sekund" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -701,6 +715,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -812,6 +827,7 @@ msgstr "Pobranie informacji o wydaniu było niemożliwe" msgid "Please check your internet connection." msgstr "Proszę sprawdzić swoje połączenie internetowe." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nie można było uruchomić narzędzia aktualizacji" @@ -845,8 +861,7 @@ msgstr "Pobranie nie powiodło się" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "" -"Pobranie aktualizacji nie powiodło się. To może być problem sieciowy. " +msgstr "Pobranie aktualizacji nie powiodło się. To może być problem sieciowy. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -914,14 +929,17 @@ msgstr "" "Nie udało się pobrać listy zmian. \n" "Proszę sprawdzić swoje połączenie intenetowe." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Ważne aktualizacje bezpieczeństwa" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Aktualizacje polecane" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Aktualizacje proponowane" @@ -934,6 +952,7 @@ msgstr "Backporty" msgid "Distribution updates" msgstr "Aktualizacje dystrybucji" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Inne aktualizacje" @@ -955,6 +974,7 @@ msgstr "Odznacz wszystkie" msgid "_Check All" msgstr "Zaznacz wszystkie" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -990,6 +1010,7 @@ msgstr "Z wersji %(old_version)s do %(new_version)s" msgid "Version %s" msgstr "Wersja %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1014,6 +1035,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Nowe wydanie dystrybucji \"%s\" jest dostępne" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Spis oprogramowania jest uszkodzony" @@ -1028,19 +1050,23 @@ msgstr "" "Proszę użyć \"Synaptic Menedżer Pakietów\" lub wydać polecenie \"sudo apt-" "get install -f\" w terminalu, aby naprawić ten problem." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Brak" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1064,8 +1090,7 @@ msgstr "Utrzymuj system w pełni zaktualizowany" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "" -"Nie wszystkie aktualizacje mogą zostać zainstalowane" +msgstr "Nie wszystkie aktualizacje mogą zostać zainstalowane" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" @@ -1406,191 +1431,234 @@ msgstr "Rozmiar okna" msgid "Configure the sources for installable software and updates" msgstr "Konfiguruj źródła pakietów oprogramowania i aktualizacji" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Pod opieką społeczeństwa" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Własnościowe sterowniki dla urządzeń" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Ograniczone oprogramowanie" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CD-ROM z Ubuntu 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Oprogramowanie Open Source wspierane przez firmę Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Obsługiwane przez społeczność (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Oprogramowanie Open Source pod opieką społeczeństwa" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Sterowniki nie-wolnodostępne" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Własnościowe sterowniki dla urządzeń " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Oprogramowanie nie-wolnodostępne (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" "Oprogramowanie ograniczone prawami autorskimi lub problemami natury prawnej" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD-ROM z Ubuntu 6.06 LTS \"Dapper Drake\"" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Aktualizacje backportowane" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD-ROM z Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Aktualizacje dla Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Aktualizacje dla Ubuntu 5.10 (backporty)" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD-ROM z Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Wspierane oficjalnie" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Aktualizacje dla Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Aktualizacje dla Ubuntu 5.04 (backporty)" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu·4.10·\"Warty·Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Utrzymywane przez społeczność (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Nie-wolnodostępne (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD-ROM z Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Już nieobsługiwane" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "O ograniczonych prawach kopiowania" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Uaktualnienia bezpieczeństwa dla Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Aktualizacje dla Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Aktualizacje dla Ubuntu 4.10 (backporty)" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Aktualizacje bezpieczeństwa dla Debiana 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (wersja testowa)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (wersja unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Oprogramowanie kompatybilne z DFSG z zależnościami Non-Free" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Oprogramowanie niekompatybilne z DFSG." -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1601,21 +1669,22 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "" -#~ "Wystąpił nierozwiązywalny problem podczas przetwarzania aktualizacji. Proszę " -#~ "zgłosić to jako błąd. " +#~ "Wystąpił nierozwiązywalny problem podczas przetwarzania aktualizacji. " +#~ "Proszę zgłosić to jako błąd. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "System nie zawiera żadnego z pakietów: ubuntu-desktop, kubuntu-desktop lub " -#~ "edubuntu-desktop. Nie jest możliwe określenie używanej wersji Ubuntu.\n" +#~ "System nie zawiera żadnego z pakietów: ubuntu-desktop, kubuntu-desktop " +#~ "lub edubuntu-desktop. Nie jest możliwe określenie używanej wersji " +#~ "Ubuntu.\n" #~ " Przed kontynuowaniem proszę zainstalować jeden z powyższych pakietów." #~ msgid "" @@ -1628,8 +1697,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "lub za pomocą Synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." #~ msgstr "" #~ "Aktualizacja została przerwana. System może znajdować się w stanie " #~ "nienadającym się do użytku. Uruchamianie naprawiania systemu (dpkg --" @@ -1651,7 +1720,6 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "Jeśli nie masz włączonego \"universe\" w następnym kroku zostanie " #~ "zasugerowane ich usunięcie. " -#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1661,37 +1729,30 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "być odnaleziony.\n" #~ "To wskazuje na poważny problem, proszę zgłosić ten błąd." -#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "Około %li dni %li godzin %li minut pozostało" -#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "Około %li godzin %li minut pozostało" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Około %li minut pozostało" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Około %li sekund pozostało" #~ msgid "Download is complete" #~ msgstr "Pobieranie zostało zakończone." -#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Pobieranie pliku %li z %li z prędkością %s/s" -#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Pobieranie pliku %li z %li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "Aktualizacja została przerwana. Proszę zgłosić ten błąd." -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1700,42 +1761,40 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "\"%s\"?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "Proszę zgłosić ten błąd i w raporcie dołączyć pliki ~/dist-upgrade.log oraz " -#~ "~/dist-upgrade-apt.log. Aktualizacja została przerwana.\n" -#~ "Pierwotny plik sources.list został zapisany w " -#~ "/etc/apt/sources.list.distUpgrade." +#~ "Proszę zgłosić ten błąd i w raporcie dołączyć pliki ~/dist-upgrade.log " +#~ "oraz ~/dist-upgrade-apt.log. Aktualizacja została przerwana.\n" +#~ "Pierwotny plik sources.list został zapisany w /etc/apt/sources.list." +#~ "distUpgrade." -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s pakiet zostanie usunięty." #~ msgstr[1] "%s pakiety zostaną usunięte." #~ msgstr[2] "%s pakietów zostanie usuniętych." -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s nowy pakiet zostanie zainstalowany." #~ msgstr[1] "%s nowe pakiety zostaną zainstalowane." #~ msgstr[2] "%s nowy pakietów zostanie zainstalowane." -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s pakiet zostanie zaktualizowany." #~ msgstr[1] "%s pakiety zostaną zaktualizowane." #~ msgstr[2] "%s pakietów zostanie zaktualizowanych." -#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Konieczne pobranie ogółem %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgstr "" #~ "Aktualizacja może trwać wiele godzin i nie może zostać później anulowana." @@ -1757,17 +1816,15 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "Aktualizacja Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "" -#~ "Weryfikacja aktualizacji nie powiodła się. To może być problem sieciowy lub " -#~ "z serwerem. " +#~ "Weryfikacja aktualizacji nie powiodła się. To może być problem sieciowy " +#~ "lub z serwerem. " -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Pobieranie pliku %li z %li z prędkością %s/s" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Pobieranie pliku %li z %li z nieznaną prędkością" @@ -1801,13 +1858,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Niektóre aktualizacje wymagają dalszego usuwania oprogramowania. Aby " -#~ "ukończyć proces aktualizacji użyj opcji \"Zaznacz wszystko do aktualizacji\" " -#~ "w Mendżerze Pakietów Synaptic albo uruchom \"sudo apt-get dist-upgrade\" w " -#~ "terminalu." +#~ "ukończyć proces aktualizacji użyj opcji \"Zaznacz wszystko do aktualizacji" +#~ "\" w Mendżerze Pakietów Synaptic albo uruchom \"sudo apt-get dist-upgrade" +#~ "\" w terminalu." #~ msgid "The following updates will be skipped:" #~ msgstr "Następujące pakiety zostaną pominięte:" @@ -1821,17 +1878,18 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "Select _All" #~ msgstr "Zaznacz w_szystkie" -#, python-format #~ msgid "From version %s to %s" #~ msgstr "Z wersji %s do %s" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" -#~ "Wymagane jest ręczne sprawdzenie dostępności aktualizacji\n" +#~ "Wymagane jest ręczne sprawdzenie dostępności aktualizacji\n" #~ "\n" #~ "System nie sprawdza dostępności aktualizacji automatycznie. To ustawienie " #~ "można to zmienić w \"System\" -> \"Administracja\" -> \"Software " @@ -1845,8 +1903,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "" #~ "Sprawdzanie systemu\n" #~ "\n" -#~ "Aktualizacje oprogramowania mogą poprawić błędy, wyeliminować słabe punkty " -#~ "bezpieczeństwa i dostarczyć nowe funkcje." +#~ "Aktualizacje oprogramowania mogą poprawić błędy, wyeliminować słabe " +#~ "punkty bezpieczeństwa i dostarczyć nowe funkcje." #~ msgid "Cancel _Download" #~ msgstr "_Przerwij pobieranie" @@ -1854,8 +1912,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" @@ -1867,31 +1925,33 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "Aby kontynuować potrzebne jest działające połączenie internetowe." #~ msgid "" -#~ "Enter the complete APT line of the source that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the source that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a source, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Wpisz pełny wiersz APT opisujący kanał który chcesz dodać\n" +#~ "Wpisz pełny wiersz APT opisujący kanał który chcesz dodać\n" #~ "\n" -#~ "Wiersz APT zawiera typ, lokalizację i zawartość kanału, przykładowo \"deb " -#~ "http://ftp.debian.org sarge main\"." +#~ "Wiersz APT zawiera typ, lokalizację i zawartość kanału, przykładowo " +#~ "\"deb http://ftp.debian.org sarge main\"." #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." #~ msgstr "" -#~ "Jeśli automatycznie sprawdzanie dostępności aktualizacji jest wyłączone to " -#~ "koniecznie jest ręczne wczytanie listy kanałów. Ta opcja pozwala na ukrycie " -#~ "pokazywanego w tym przypadku.powiadamiania." +#~ "Jeśli automatycznie sprawdzanie dostępności aktualizacji jest wyłączone " +#~ "to koniecznie jest ręczne wczytanie listy kanałów. Ta opcja pozwala na " +#~ "ukrycie pokazywanego w tym przypadku.powiadamiania." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " #~ "description" #~ msgstr "" -#~ "Zapamiętuje stan obszaru z listą zmian i opisem poszczególnych aktualizacji" +#~ "Zapamiętuje stan obszaru z listą zmian i opisem poszczególnych " +#~ "aktualizacji" #~ msgid "" #~ "OpenSource software that is officially supported by Canonical Ltd. (main)" @@ -1904,7 +1964,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "Proprietary drivers for devices (restricted) " #~ msgstr "Własnościowe sterowniki dla urządzeń (restricted) " -#~ msgid "Software that is restricted by copyright or legal issues (multiverse)" +#~ msgid "" +#~ "Software that is restricted by copyright or legal issues (multiverse)" #~ msgstr "" #~ "Oprogramowanie ograniczone prawami kopiowania lub wątpliowściami prawnymi " #~ "(multiverse)" @@ -1981,8 +2042,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "Aktualizacje dla Ubuntu 6.06 LTS (Backporty)" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Podczas skanowania informacji o repozytoriach nie odnaleziono poprawnych " #~ "wpisów potrzebnych do aktualizacji.\n" @@ -2049,13 +2110,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Dostępne aktualizacje\n" #~ "\n" -#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować klikając " -#~ "przycisk Instaluj." +#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować " +#~ "klikając przycisk Instaluj." #~ msgid "Repository" #~ msgstr "Repozytorium" @@ -2075,20 +2136,21 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "" #~ "Klucze autentykacyjne\n" #~ "\n" -#~ "W tym oknie dialogowym można dodawać i usuwać klucze autentykacyjne. Klucz " -#~ "pozwala na sprawdzenie integralności oprogramowania które jest pobierane z " -#~ "sieci." +#~ "W tym oknie dialogowym można dodawać i usuwać klucze autentykacyjne. " +#~ "Klucz pozwala na sprawdzenie integralności oprogramowania które jest " +#~ "pobierane z sieci." #~ msgid "A_uthentication" #~ msgstr "A_utentykacja" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Dodaje plik z kluczem do listy zaufanych kluczy. Należy upewnić sie, że " -#~ "został otrzymany bezpiecznym kanałem oraz, że pochodzi z zaufanego źródła. " +#~ "został otrzymany bezpiecznym kanałem oraz, że pochodzi z zaufanego " +#~ "źródła. " #~ msgid "Automatically clean _temporary packages files" #~ msgstr "Usuwaj _tymczasowe pliki z pakietami" @@ -2110,11 +2172,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Przywraca domyślne klucze rozprowadzane wraz z dystrybucją. Nie wpływa to na " -#~ "klucze zainstalowane przez użytkownika." +#~ "Przywraca domyślne klucze rozprowadzane wraz z dystrybucją. Nie wpływa to " +#~ "na klucze zainstalowane przez użytkownika." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Maksymalny rozmiar pamięci podręcznej" @@ -2138,8 +2200,9 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "Oznacza to, że pewne zależności instalowanych pakietów nie są spełnione.Aby " -#~ "rozwiązać problem proszę skorzystać z programu \"Synaptic\" lub \"apt-get\"." +#~ "Oznacza to, że pewne zależności instalowanych pakietów nie są spełnione." +#~ "Aby rozwiązać problem proszę skorzystać z programu \"Synaptic\" lub \"apt-" +#~ "get\"." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "Nie można uaktualnić wszystkich pakietów" @@ -2147,12 +2210,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" #~ "Oznacza to, że do aktualizacji wymagane sa dodatkowe działania (takie jak " -#~ "dodanie lub usunięcie pakietów). Aby rozwiązać problem proszę skorzystać z " -#~ "funkcji \"sprytnej aktualizacji\" programu Synaptic lub wykonać polecenie " -#~ "\"apt-get dist-upgrade\"." +#~ "dodanie lub usunięcie pakietów). Aby rozwiązać problem proszę skorzystać " +#~ "z funkcji \"sprytnej aktualizacji\" programu Synaptic lub wykonać " +#~ "polecenie \"apt-get dist-upgrade\"." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "" @@ -2163,11 +2227,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgstr "Aktualizacje są teraz instalowane." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. Należy " -#~ "najpierw zamknąć aplikację która teraz działa." +#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. " +#~ "Należy najpierw zamknąć aplikację która teraz działa." #~ msgid "Updating package list..." #~ msgstr "Aktualizacja listy pakietów..." @@ -2177,13 +2241,14 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Proszę uaktualnić dystrybucję do nowszej wersji Ubuntu Linux. Obecna wersja " -#~ "nie będzie już otrzymywać uaktualnień bezpieczeństwa oraz innych krytycznych " -#~ "uaktualnień. Informacje o tym jak uaktualnić dystrybucję można znaleźć na " -#~ "stronie http://www.ubuntulinux.org (Witryna w języku angielskim)" +#~ "Proszę uaktualnić dystrybucję do nowszej wersji Ubuntu Linux. Obecna " +#~ "wersja nie będzie już otrzymywać uaktualnień bezpieczeństwa oraz innych " +#~ "krytycznych uaktualnień. Informacje o tym jak uaktualnić dystrybucję " +#~ "można znaleźć na stronie http://www.ubuntulinux.org (Witryna w języku " +#~ "angielskim)" #, fuzzy #~ msgid "There is a new release of Ubuntu available!" @@ -2194,11 +2259,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. Należy " -#~ "najpierw zamknąć aplikację która teraz działa." +#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. " +#~ "Należy najpierw zamknąć aplikację która teraz działa." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Inicjowanie i pobieranie listy aktualizacji..." @@ -2236,13 +2301,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Dostępne aktualizacje\n" #~ "\n" -#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować klikając " -#~ "przycisk Instaluj." +#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować " +#~ "klikając przycisk Instaluj." #~ msgid "CD disk" -#~ msgstr "Płyta CD" \ No newline at end of file +#~ msgstr "Płyta CD" diff --git a/po/pt.po b/po/pt.po index 815988d6..55ff5562 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 11:04+0000\n" "Last-Translator: Tiago Silva \n" "Language-Team: Ubuntu Portuguese Team \n" @@ -53,6 +53,7 @@ msgstr "Após um mês" msgid "After %s days" msgstr "Depois de %s dias" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -60,6 +61,7 @@ msgstr "actualizações do %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -69,6 +71,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "Erro ao remover a chave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "A chave que seleccionou não pôde ser removida. Por favor reporte este erro." @@ -165,6 +167,7 @@ msgstr "Não foi possível actualizar os meta-pacotes necessários" msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Impossível de calcular a actualização" @@ -181,6 +184,7 @@ msgstr "" "Por favor reporte este erro no pacote 'update-manager' e inclua os ficheiros " "contidos em /var/log/dist-upgrade/ no seu relatório de erro." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro ao autenticar alguns pacotes" @@ -207,6 +211,7 @@ msgid "" msgstr "" "Foi impossível instalar um pacote essencial. Por favor reporte este erro. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Impossível de descobrir meta-pacote" @@ -225,11 +230,11 @@ msgstr "" " Por favor instale um dos pacotes acima mencionados usando o synaptic ou apt-" "get antes de continuar." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Falha ao adicionar o CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -244,15 +249,15 @@ msgstr "" "A mensagem de erro foi:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "A ler a cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Obter dados para a actualização a partir da rede?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +269,11 @@ msgstr "" "Se o seu acesso à internet for rápido ou barato deve responder 'Sim'. Se a " "sua ligação é cara escolha 'Não'." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Nenhum repositório válido encontrada" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -288,11 +293,12 @@ msgstr "" "Se escolher 'Sim' ele vai actualizar todos os '%s' para '%s' pacotes.↵\n" "Se escolher \"não\" a actualização irá ser cancelada." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Gerar as fontes padrão?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -306,11 +312,11 @@ msgstr "" "Deverão ser adicionadas entradas para '%s'? Se seleccionar 'Não' a " "actualização será cancelada." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Informação de repositório inválida" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -318,11 +324,11 @@ msgstr "" "A actualização da informação de repositório resultou num ficheiro inválido. " "Por favor reporte este erro." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Fontes de terceiros desactivadas" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " @@ -332,11 +338,11 @@ msgstr "" "reactivá-las depois da actualização com a ferramenta 'propriedades-software' " "ou com o synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Erro durante a actualização" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -345,30 +351,31 @@ msgstr "" "tipo de problema na rede, por favor verifique a sua ligação à rede e volte a " "tentar." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Não existe espaço livre em disco suficiente" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"A actualização abortará agora. Por favor liberte %s de espaço em disco em " -"%s. Esvazie o lixo e remova pacotes temporários de instalações anteriores " +"A actualização abortará agora. Por favor liberte %s de espaço em disco em %" +"s. Esvazie o lixo e remova pacotes temporários de instalações anteriores " "usando 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Deseja iniciar a actualização?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Impossível de instalar as actualizações" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -382,11 +389,11 @@ msgstr "" "Por favor relate este erro sobre o pacote 'update-manager' e inclua os " "ficheiros contidos em /var/log/dist-upgrade/ no relatório de erro." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Impossível de descarregar as actualizações" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -394,11 +401,11 @@ msgstr "" "A actualização abortará agora. Por favor verifique a sua ligação à internet " "ou media de instalação e volte a tentar. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "O suporte para algumas aplicações já terminou." -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -412,23 +419,23 @@ msgstr "" "Caso não tenha activado o software mantido pela comunidade (universe), irá " "ser sugerida a remoção destes pacotes no próximo passo." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Remover Pacotes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Saltar Este Passo" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Remover" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Erro ao submeter" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -436,26 +443,28 @@ msgstr "" "Ocorreu algum problema durante a limpeza. Por favor verifique a mensagem " "abaixo para mais informação. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "A restaurar o estado original do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "A obter backport de '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "A verificar gestor de pacotes" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "A preparação da actualização falhou" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -465,15 +474,15 @@ msgstr "" "reporte este erro no pacote 'update-manager' e inclua os ficheiros contidos " "em /var/log/dist-upgrade/ no relatório de erro." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "A Actualizar informação de repositórios" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Informação de pacotes inválida" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -488,22 +497,23 @@ msgstr "" "'update-manager' e inclua os ficheiros contidos em /var/log/dist-upgrade/ no " "relatório de erro." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "A pedir confirmação" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "A actualizar" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "À procura de software obsoleto" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "A actualização do sistema está completa." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -531,6 +541,7 @@ msgstr "A obter o ficheiro %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando alterações" @@ -546,9 +557,10 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" "A actualização será agora abortada. Por favor relate a ocorrência deste erro " -"no pacote 'update-manager' e inclua os ficheiros que se encontram em " -"/var/log/dist-upgrade/ no relatório de erro." +"no pacote 'update-manager' e inclua os ficheiros que se encontram em /var/" +"log/dist-upgrade/ no relatório de erro." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -576,18 +588,19 @@ msgstr "Ocorreu um erro fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Por favor relate este erro e inclua os ficheiros /var/log/dist-" -"upgrade/main.log e /var/log/dist-upgrade/apt.log no seu relatório de erro. A " -"actualização abortará agora.\n" -"O ficheiro original sources.list foi guardado em " -"/etc/apt/sources.list.distUpgrade." +"Por favor relate este erro e inclua os ficheiros /var/log/dist-upgrade/main." +"log e /var/log/dist-upgrade/apt.log no seu relatório de erro. A actualização " +"abortará agora.\n" +"O ficheiro original sources.list foi guardado em /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -634,6 +647,7 @@ msgstr "" "Para prevenir a perda de dados feche todas as aplicações e documentos " "abertos." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -683,6 +697,7 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -705,6 +720,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -815,6 +831,7 @@ msgstr "Impossível de descarregar as notas de lançamento" msgid "Please check your internet connection." msgstr "Por favor verifique a sua ligação à internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Impossível de executar a ferramenta de actualização" @@ -832,8 +849,7 @@ msgstr "A descarregar a ferramenta de actualização" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" -"A ferramenta de actualização guiá-lo-á pelo processo de actualização." +msgstr "A ferramenta de actualização guiá-lo-á pelo processo de actualização." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -916,14 +932,17 @@ msgstr "" "Falha ao descarregar a lista de alterações. \n" "Por favor verifique a sua ligação à Internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizações de segurança importantes" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizações recomendadas" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Actualizações propostas" @@ -936,6 +955,7 @@ msgstr "Backports" msgid "Distribution updates" msgstr "_Actualizações de Distribuição" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Outras actualizações" @@ -957,6 +977,7 @@ msgstr "_Desmarcar Todos" msgid "_Check All" msgstr "_Verificar Todos" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -991,6 +1012,7 @@ msgstr "Da versão: %(old_version)s para %(new_version)s" msgid "Version %s" msgstr "Versão %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1015,6 +1037,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Está disponível a nova versão '%s' da distribuição" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "O índice de software está quebrado" @@ -1029,19 +1052,23 @@ msgstr "" "gestor de pacotes \"Synaptic\" ou execute \"sudo apt-get install -f\" numa " "consola para corrigir este problema em primeiro lugar." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nenhum" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1067,8 +1094,8 @@ msgstr "Mantenha o seu sistema actualizado" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" msgstr "" -"Não é possível instalar todas as actualizações \n" -" \n" +"Não é possível instalar todas as actualizações\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1286,8 +1313,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"A informação acerca de software disponível está " -"desactualizada\n" +"A informação acerca de software disponível está desactualizada\n" "\n" "Tem de recarregar a informação sobre software disponível para instalar " "software e actualizações a partir de repositórios recentemente adicionados " @@ -1414,190 +1441,233 @@ msgstr "Tamanho da Janela" msgid "Configure the sources for installable software and updates" msgstr "Configurar os repositórios de software e actualizações instaláveis" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantido pela comunidade" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Drivers proprietários para dispositivos" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software Restrito" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom com o Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Software de Código Aberto suportado pela Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantido pela comunidade (universal)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Software de Código Fonte Aberto mantido pela comunidade" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Controladores não-livres" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Drivers proprietários para dispositivos " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software não-livre (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restringido por copyright ou questões legais" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom com o Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Actualizações dos repositórios \"backport\"" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom com o Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Actualizações de Segurança" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Actualizações" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom com o Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Suportado Oficialmente" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizações de Segurança do Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizações do Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backports do Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pela comunidade (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Não-livre (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom com Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Sem mais suporte oficial" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Direitos de autor restritos" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizações de Segurança do Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizações do Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backports do Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Actualizações de Segurança" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatível-DFSG com Dependências Não-Livres" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software compatível-DFSG" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "A descarregar ficheiro %li de %li a velocidade desconhecida" @@ -1620,7 +1690,8 @@ msgstr "Software compatível-DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "A actualizar para Ubuntu 6.10" +#~ "A actualizar para Ubuntu 6.10" #~ msgid "Important security updates of Ubuntu" #~ msgstr "Actualizações de segurança importantes do Ubuntu" @@ -1647,17 +1718,16 @@ msgstr "Software compatível-DFSG" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algumas actualizações requerem a remoção de software. Utilize a função " -#~ "\"Marcar Todas as Actualizações\" ou execute \"sudo apt-get dist-upgrade\" " -#~ "numa consola para actualizar completamente o seu sistema." +#~ "\"Marcar Todas as Actualizações\" ou execute \"sudo apt-get dist-upgrade" +#~ "\" numa consola para actualizar completamente o seu sistema." #~ msgid "The following updates will be skipped:" #~ msgstr "As seguintes actualizações serão ignoradas:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Cerca de %li segundos restantes" @@ -1678,12 +1748,14 @@ msgstr "Software compatível-DFSG" #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "" -#~ "Uma única ferramenta de gestão de software pode ser executada ao mesmo tempo" +#~ "Uma única ferramenta de gestão de software pode ser executada ao mesmo " +#~ "tempo" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Por favor feche a outra aplicação primeiro, por ex. 'aptitude' ou 'Synaptic'." +#~ "Por favor feche a outra aplicação primeiro, por ex. 'aptitude' ou " +#~ "'Synaptic'." #~ msgid "Channels" #~ msgstr "Repositórios" @@ -1733,8 +1805,8 @@ msgstr "Software compatível-DFSG" #~ msgstr "Ubuntu 6.06 LTS Backports" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Ao pesquisar o seu repositório de informação não foi encontrada nenhuma " #~ "entrada válida de actualização.\n" @@ -1753,15 +1825,15 @@ msgstr "Software compatível-DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "A efectuar download de " -#~ "alterações\n" +#~ "A efectuar download de alterações\n" #~ "\n" #~ "É necessário obter as alterações de um servidor central" #~ msgid "" #~ "There is not enough free space on your system to download the required " -#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get " -#~ "clean'" +#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" +#~ "get clean'" #~ msgstr "" #~ "Não existe espaço suficiente no seu sistema para descarregar os pacotes " #~ "necessários. Por favor liberte algum espaço antes de tentar novamente por " @@ -1774,8 +1846,8 @@ msgstr "Software compatível-DFSG" #~ "Some problem occured during the fetching of the packages. This is most " #~ "likely a network problem. Please check your network and try again. " #~ msgstr "" -#~ "Ocorreu algum problema ao descarregar pacotes. Trata-se provavelmente de um " -#~ "problema de rede. Por favor verifique a rede e tente novamente. " +#~ "Ocorreu algum problema ao descarregar pacotes. Trata-se provavelmente de " +#~ "um problema de rede. Por favor verifique a rede e tente novamente. " #~ msgid "" #~ "%s packages are going to be removed.\n" @@ -1800,8 +1872,8 @@ msgstr "Software compatível-DFSG" #~ msgstr "Tem a certeza que pretende cancelar?" #~ msgid "" -#~ "Canceling during a upgrade can leave the system in a unstable state. It is " -#~ "strongly adviced to continue the operation. " +#~ "Canceling during a upgrade can leave the system in a unstable state. It " +#~ "is strongly adviced to continue the operation. " #~ msgstr "" #~ "Cancelar durante uma actualização pode deixar o seu sistema num estado " #~ "instável. É fortemente aconselhado a prosseguir a operação. " @@ -1816,4 +1888,4 @@ msgstr "Software compatível-DFSG" #~ msgstr "Nunca exibir esta mensagem novamente" #~ msgid "CD" -#~ msgstr "CD" \ No newline at end of file +#~ msgstr "CD" diff --git a/po/pt_BR.po b/po/pt_BR.po index a71e37c0..c56c5abc 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: Andre Noel \n" "Language-Team: Ubuntu-BR \n" @@ -54,6 +54,7 @@ msgstr "Após um mês" msgid "After %s days" msgstr "Após %s dias" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "Atualizações do %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Servidor principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Erro removendo a chave" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "A chave selecionada não pode ser removida. Por favor reporte isto como um " "bug." @@ -167,6 +169,7 @@ msgstr "Não foi possível atualizar os meta-pacotes requeridos" msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Não foi possível processar a atualização" @@ -184,6 +187,7 @@ msgstr "" "Por favor reporte esse erro no pacote 'update-manager' e inclua os arquivos " "contidos em /var/log/dist-upgrade/ no relatório de erros." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Erro autenticando alguns pacotes" @@ -211,6 +215,7 @@ msgstr "" "Não foi possível instalar um pacote requerido. Por favor relate isto como um " "erro. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Não foi possível determinar o meta-pacote" @@ -229,11 +234,11 @@ msgstr "" " Por favor, instale um dos pacotes acima usando o synaptic ou apt-get antes " "de seguir adiante." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Falha ao adicionar o CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -248,15 +253,15 @@ msgstr "" "Mensagem de erro:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Lendo cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Buscar dados da rede para a atualização?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -268,11 +273,11 @@ msgstr "" "Se você possui acesso rápido ou barato à rede você deve responder 'Sim'. Se " "o acesso à rede é caro para você, escolha 'Não'." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Nenhum repositório válido encontrado" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -291,11 +296,12 @@ msgstr "" "'Sim' atualizará todas '%s' para '%s' entradas.\n" "Se você selecionar 'não' a atualização será cancelada." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Gerar fontes padrão?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -309,11 +315,11 @@ msgstr "" "Entradas padrão para '%s' devem ser adicionadas? Se você escolher 'Não' a " "atualização será cancelada." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Informação de repositório inválida" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -321,11 +327,11 @@ msgstr "" "A atualização das informações de repositórios resultou em um arquivo " "inválido. Por favor relate isso como um erro." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Fontes de terceiros desabilitadas" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -336,11 +342,11 @@ msgstr "" "pode reabilitá-las após a atualização com a ferramenta 'software-properties' " "ou com o synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Erro durante a atualização" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -349,11 +355,11 @@ msgstr "" "problemas de rede, por favor verifique a sua conexão de rede e tente " "novamente." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Não há espaço suficiente no disco" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -364,15 +370,16 @@ msgstr "" "de disco no %s. Esvazie sua lixeira e remova pacotes temporários de " "instalações anteriores usando 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Você quer iniciar a atualização?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Não foi possível instalar as atualizações" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -386,11 +393,11 @@ msgstr "" "Por favor, informe este erro no pacote 'update-manager' e inclua os arquivos " "contidos em /var/log/dist-upgrade/ no relatório de erros." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Não foi possível obter as atualizações" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -398,11 +405,11 @@ msgstr "" "A atualização será abortada agora. Por favor verifique sua conexão à " "Internet ou mídia de instalação e tente de novo. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "O suporte para algumas aplicações foi descontinuado" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -416,23 +423,23 @@ msgstr "" "Se você não tiver habilitado os softwares mantidos pela comunidade " "(universe), esses pacotes serão sugeridos para remoção no próximo passo." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Remover pacotes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Pular Este Passo" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Remover" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Erro ao aplicar as mudanças" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -440,26 +447,28 @@ msgstr "" "Alguns problemas ocorreram durante a limpeza. Por favor veja a mensagem " "abaixo para maiores informações. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Restaurando o estado original do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Verificando o gerenciador de pacotes" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Preparação para a atualização falhou" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -469,15 +478,15 @@ msgstr "" "um bug do pacote 'update-manager' e inclua os arquivos no /var/log/dist-" "upgrade/ no relatório do bug." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Atualizando informação do repositório" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Informação do pacote inválida" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -486,28 +495,29 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Depois que a sua informação do pacote foi atualizada, o pacote essencial " -"'%s' não pôde mais ser encontrado.\n" +"Depois que a sua informação do pacote foi atualizada, o pacote essencial '%" +"s' não pôde mais ser encontrado.\n" "Isso indica uma falha grave, por favor reporte isso como um erro no pacote " "do 'update-manager' e inclua os arquivos contidos em /var/log/dist-upgrade/ " "no relatório de erros." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Pedindo confirmação" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Atualizando" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Buscando programas obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "A atualização do sistema está completa." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -536,6 +546,7 @@ msgstr "Obtendo arquivo %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplicando mudanças" @@ -554,6 +565,7 @@ msgstr "" "'update-manager' e inclua os arquivos em /var/log/dist-upgrade/ no relatório " "de erros." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -581,17 +593,18 @@ msgstr "Ocorreu um erro fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Por favor relate isto como um bug e inclua os arquivos /var/log/dist-" -"upgrade.log e /var/log/dist-upgrade-apt.log em seu relatório. A atualização " -"será abortada agora.\n" +"Por favor relate isto como um bug e inclua os arquivos /var/log/dist-upgrade." +"log e /var/log/dist-upgrade-apt.log em seu relatório. A atualização será " +"abortada agora.\n" "Seu sources.list original foi salvo em /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -636,6 +649,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "Para evitar perda de dados, feche todas as aplicações e documentos." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -685,6 +699,7 @@ msgid "%li seconds" msgstr "%li segundos" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -708,6 +723,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -727,8 +743,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" -"Reinicie o seu sistema para finalizar a atualização" +msgstr "Reinicie o seu sistema para finalizar a atualização" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -819,6 +834,7 @@ msgstr "Não foi possível obter as notas de lançamento" msgid "Please check your internet connection." msgstr "Por favor, verifique sua conexão de internet." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Não foi possível executar a ferramenta de atualização" @@ -921,14 +937,17 @@ msgstr "" "Falha ao baixar a lista de mudanças. \n" "Por favor verifique sua conexão internet." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Principais Atualizações de Segurança" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Atualizações recomendadas" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Atualizações sugeridas" @@ -941,6 +960,7 @@ msgstr "Backports" msgid "Distribution updates" msgstr "Atualizações da distribuição" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Outras atualizações" @@ -962,6 +982,7 @@ msgstr "_Desmarcar Todos" msgid "_Check All" msgstr "_Marcar Todos" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -996,6 +1017,7 @@ msgstr "Da versão %(old_version)s para %(new_version)s" msgid "Version %s" msgstr "Versão %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1020,6 +1042,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Uma nova versão da distribuição '%s' está disponível" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "O index do software está quebrado" @@ -1034,19 +1057,23 @@ msgstr "" "Gerenciador de Pacotes \"Synaptic\" ou execute \"sudo apt-get install -f\" " "em um terminal para resolver esse problema primeiro." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nenhum" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1288,8 +1315,8 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"A informação sobre programas disponíveis está " -"desatualizada\n" +"A informação sobre programas disponíveis está desatualizada\n" "\n" "Para instalar programas e atualizações de fontes recentemente adicionadas ou " "alteradas, você tem que recarregar as informações sobre programas " @@ -1399,8 +1426,7 @@ msgstr "Exibir detalhes de uma atualização" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "" -"Armazena o tamanho da caixa de diálogo do gerenciador de atualizações" +msgstr "Armazena o tamanho da caixa de diálogo do gerenciador de atualizações" #: ../data/update-manager.schemas.in.h:7 msgid "" @@ -1417,190 +1443,233 @@ msgstr "O tamanho da janela" msgid "Configure the sources for installable software and updates" msgstr "Configurar os canais de software e atualizações via internet" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Mantido pela comunidade" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Controladores proprietários para dispositivos" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Software restrito" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom com Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Programa de Código Aberto mantido pela Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Mantido pela Comunidade (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Programa de Código Aberto mantido pela Comunidade" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Drivers Não-livres" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Controladores proprietários para dispositivos " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Programas restritos (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Software restrito por copyright ou problemas legais" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom com o Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Atualizações \"Backport\"" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom com o Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Atualizações de Segurança do Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Atualizações do Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Backports do Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom com o Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Suportado oficialmente" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Atualizações de Segurança do Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Atualizações do Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Backports do Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Mantido pela Comunidade (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Não-livres (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom com Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Não é mais suportado oficialmente" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restrito" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Atualizações de Segurança do Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Atualizações do Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Backports do Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Atualizações de Segurança do Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testando)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (instável)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Programa compatível com a DFSG mas com Dependências Não-Livres" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Programas não compatíveis com a DFSG" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1614,22 +1683,22 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "A unresolvable problem occured while calculating the upgrade.\n" #~ "\n" -#~ "Please report this bug against the 'update-manager' package and include the " -#~ "files in /var/log/dist-upgrade/ in the bugreport." +#~ "Please report this bug against the 'update-manager' package and include " +#~ "the files in /var/log/dist-upgrade/ in the bugreport." #~ msgstr "" -#~ "Um problema sem solução ocorreu durante o cálculo da atualização. Por favor " -#~ "relate isto como um erro." +#~ "Um problema sem solução ocorreu durante o cálculo da atualização. Por " +#~ "favor relate isto como um erro." #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" #~ "O seu sistema não possui um pacote ubuntu-desktop, kubuntu-desktop ou " -#~ "edubuntu-desktop e não foi possível detectar qual versão do Ubuntu você está " -#~ "executando.\n" +#~ "edubuntu-desktop e não foi possível detectar qual versão do Ubuntu você " +#~ "está executando.\n" #~ "Por favor instale um desses pacotes primeiro usando o Synaptic ou apt-get " #~ "antes de continuar." @@ -1638,9 +1707,9 @@ msgstr "Programas não compatíveis com a DFSG" #~ "enable them after the upgrade with the 'software-properties' tool or with " #~ "synaptic." #~ msgstr "" -#~ "Algumas entradas de terceiros de seu sources.list foram desabilitadas. Você " -#~ "poderá reabilitá-las depois de atualizar com a ferramenta 'propriedades do " -#~ "programa' ou com o synaptic." +#~ "Algumas entradas de terceiros de seu sources.list foram desabilitadas. " +#~ "Você poderá reabilitá-las depois de atualizar com a ferramenta " +#~ "'propriedades do programa' ou com o synaptic." #~ msgid "Some software no longer officially supported" #~ msgstr "Alguns softwares não são mais oficialmente suportado." @@ -1658,7 +1727,6 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Se você não tem o repositório 'universe' habilitado, estes pacotes serão " #~ "sugeridos à remoção no próximo passo. " -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1666,19 +1734,16 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Substituir arquivo de configuração\n" #~ "'%s' ?" -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s pacote será removido." #~ msgstr[1] "%s pacotes serão removidos." -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s novo pacote será instalado." #~ msgstr[1] "%s novos pacotes serão instalados." -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s pacote será atualizado." @@ -1690,10 +1755,9 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Your system has already been upgraded." #~ msgstr "Seu sistema já foi atualizado." -#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " -#~ "DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a " +#~ "1Mbit DSL connection" #~ msgstr "" #~ "Este download demorará cerca de %s com um modem 56k e cerca de %s com uma " #~ "conexão 1Mbit DSL." @@ -1701,27 +1765,26 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Atualizando para o Ubuntu 6.10" +#~ "Atualizando para o Ubuntu 6.10" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "" #~ "Falha na verificação da atualização. Pode haver um problema com a rede ou " #~ "com o servidor. " -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Obtendo arquivo %li de %li a %s/s" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Obtendo arquivo %li de %li a uma velocidade desconhecida" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" -#~ "A lista de alterações não está disponível ainda. Por favor, tente novamente " -#~ "mais tarde." +#~ "A lista de alterações não está disponível ainda. Por favor, tente " +#~ "novamente mais tarde." #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " @@ -1757,21 +1820,21 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Select _All" #~ msgstr "Selecion_ar Todos" -#, python-format #~ msgid "From version %s to %s" #~ msgstr "Da versão %s para %s" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "Você deve verificar por atualizações manualmente\n" #~ "\n" #~ "O seu sistema não procura por atualizações automaticamente. Você pode " -#~ "configurar essa opção em \"Sistema\" -> \"Administração\" -> \"Propriedades " -#~ "de Programas\"." +#~ "configurar essa opção em \"Sistema\" -> \"Administração\" -> " +#~ "\"Propriedades de Programas\"." #~ msgid "" #~ "Examining your system\n" @@ -1781,8 +1844,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "" #~ "Verificando as Atualizações Disponíveis\n" #~ "\n" -#~ "Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades de " -#~ "segurança, e prover novas funcionalidades para você." +#~ "Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades " +#~ "de segurança, e prover novas funcionalidades para você." #~ msgid "Cancel _Download" #~ msgstr "Cancelar _Download" @@ -1790,8 +1853,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" @@ -1803,8 +1866,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Você necessita uma conexão de internet para continuar." #~ msgid "" -#~ "Enter the complete APT line of the source that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the source that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a source, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1817,8 +1880,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." #~ msgstr "" #~ "Se a verificação automática de atualizações for desativada, você terá que " #~ "recarregar manualmente a lista de canais. Esta opção perminte que você " @@ -1845,18 +1908,17 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Algumas atualizações requerem a remoção de outros pacotes.Use a função " -#~ "\"Marcar Todas Atualizações\" do gerenciador de pacotes \"Synaptic\" ou rode " -#~ "\"sudo apt-get dist-upgrade\" em um terminal para atualizar seu sistema " -#~ "completamente." +#~ "\"Marcar Todas Atualizações\" do gerenciador de pacotes \"Synaptic\" ou " +#~ "rode \"sudo apt-get dist-upgrade\" em um terminal para atualizar seu " +#~ "sistema completamente." #~ msgid "The following updates will be skipped:" #~ msgstr "As seguintes atualizações serão puladas:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Aproximadamente %li segundos restando" @@ -1877,7 +1939,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Only one software management tool is allowed to run at the same time" #~ msgstr "" -#~ "Apenas uma ferramenta de gerenciamento de pacotes pode rodar ao mesmo tempo" +#~ "Apenas uma ferramenta de gerenciamento de pacotes pode rodar ao mesmo " +#~ "tempo" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." @@ -1936,8 +1999,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Backports do Ubuntu 6.06 LTS" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Enquanto analisava as informações de repositórios não foi encontrada uma " #~ "entrada válida para a atualização.\n" @@ -1988,12 +2051,12 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "There is not enough free space on your system to download the required " -#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get " -#~ "clean'" +#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" +#~ "get clean'" #~ msgstr "" #~ "Não há espaço suficiente no seu sistema para obter os pacotes requeridos. " -#~ "Por favor libere algum espaço antes de tentar novamente. Como: 'sudo apt-get " -#~ "clean'" +#~ "Por favor libere algum espaço antes de tentar novamente. Como: 'sudo apt-" +#~ "get clean'" #~ msgid "Error fetching the packages" #~ msgstr "Erro ao obter os pacotes" @@ -2003,8 +2066,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ "likely a network problem. Please check your network and try again. " #~ msgstr "" #~ "Alguns problemas ocorreram durante a obtenção dos pacotes. Isso é bem " -#~ "provável que seja por problemas de rede. Por favor verifique a sua conexão " -#~ "de rede e tente novamente. " +#~ "provável que seja por problemas de rede. Por favor verifique a sua " +#~ "conexão de rede e tente novamente. " #~ msgid "" #~ "%s packages are going to be removed.\n" @@ -2029,11 +2092,11 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Tem certeza que deseja cancelar?" #~ msgid "" -#~ "Canceling during a upgrade can leave the system in a unstable state. It is " -#~ "strongly adviced to continue the operation. " +#~ "Canceling during a upgrade can leave the system in a unstable state. It " +#~ "is strongly adviced to continue the operation. " #~ msgstr "" -#~ "Cancelar durante a atualização pode deixar o sistema em um estado instável. " -#~ "É fortemente recomendável que a operação continue. " +#~ "Cancelar durante a atualização pode deixar o sistema em um estado " +#~ "instável. É fortemente recomendável que a operação continue. " #, fuzzy #~ msgid "Sources" @@ -2056,13 +2119,13 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgid "Repository" #~ msgstr "Repository" @@ -2082,16 +2145,16 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "" #~ "Authentication keys\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes it " -#~ "possible to check verify the integrity of the software you download." +#~ "You can add and remove authentication keys in this dialogue. A key makes " +#~ "it possible to check verify the integrity of the software you download." #~ msgid "A_uthentication" #~ msgstr "A_uthentication" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " @@ -2116,11 +2179,11 @@ msgstr "Programas não compatíveis com a DFSG" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not change " -#~ "user-installed keys." +#~ "Restore the default keys shiped with the distribution. This will not " +#~ "change user-installed keys." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Set _maximum size for the package cache" @@ -2153,11 +2216,13 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Changes not found, the server may not be updated yet." @@ -2166,11 +2231,11 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "The updates are being applied." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgid "Updating package list..." #~ msgstr "Updating package list..." @@ -2180,33 +2245,33 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "There is a new release of Ubuntu available!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgid "Never show this message again" #~ msgstr "Never show this message again" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Initializing and getting list of updates..." @@ -2238,10 +2303,10 @@ msgstr "Programas não compatíveis com a DFSG" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." \ No newline at end of file +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." diff --git a/po/qu.po b/po/qu.po index ca3261c1..a3b18c03 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Rosetta Administrators \n" "Language-Team: Quechua \n" @@ -55,6 +55,7 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -158,6 +160,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -170,6 +173,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -192,6 +196,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -205,11 +210,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -219,15 +224,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -235,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -251,11 +256,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -264,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -307,15 +313,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -324,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -347,63 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -413,22 +422,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -456,6 +466,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -471,6 +482,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -494,13 +506,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -540,6 +553,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -587,6 +601,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -606,6 +621,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -712,6 +728,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -801,14 +818,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -821,6 +841,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -842,6 +863,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -876,6 +898,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -897,6 +920,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -908,19 +932,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1246,184 +1274,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/ro.po b/po/ro.po index 169a83c3..f679abc5 100644 --- a/po/ro.po +++ b/po/ro.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Sami POTIRCA \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: " -"nplurals=3;plural=(n==1?0:(n==0||((n%100)>0&&(n%100)<20))?1:2)\n" +"Plural-Forms: nplurals=3;plural=(n==1?0:(n==0||((n%100)>0&&(n%100)<20))?" +"1:2)\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "După o lună" msgid "After %s days" msgstr "După %s zile" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s actualizări" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "Server principal" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,12 +125,11 @@ msgid "Error removing the key" msgstr "Eroare la ştergerea cheii." #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Cheia selectată nu poate fi ştearsă. Raportaţi această eroare." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -167,6 +169,7 @@ msgstr "Este imposibilă actualizarea meta-pachetelor cerute" msgid "A essential package would have to be removed" msgstr "Un pachet esenţial ar trebui şters" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Imposibil de calculat actualizarea" @@ -179,6 +182,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "Error authenticating some packages" @@ -207,6 +211,7 @@ msgstr "" "Nu am reuşit să instalez pachetul cerut. Vă rugăm raportaţi acest lucru ca " "bug (eroare). " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Imposibl de ghicit meta-pachet" @@ -224,11 +229,11 @@ msgstr "" "program. Înainte de a continua vă rugăm să le remediaţi utilizând synaptic " "sau apt-get." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Adăugarea CD-ului a eşuat" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -243,15 +248,15 @@ msgstr "" "Mesajul de eroare a fost:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Citire cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Descarc date de la reţea pentru actualizare?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -263,11 +268,11 @@ msgstr "" "Dacă aveţi o conexiune rapidă sau ieftină ar trebui să răspundeti cu 'Da'. " "Dacă accesul la reţea este scump pentru dumneavoastră alegeţi 'Nu'." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Nicio oglindă validă găsită" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -285,11 +290,12 @@ msgstr "" "Doriţi să rescrieţi fişierul 'sources.list' oricum? Dacă selectaţi 'Da' se " "vor modifica toate intrările din '%s' în '%s'." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Generez surse implicite?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -303,11 +309,11 @@ msgstr "" "Ar trebui ca intrările implicite pentru '%s' să fie adăugate? Daca selectaţi " "'Nu' actualizarea va înceta." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Informaţii despre depozit nevalide" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -315,22 +321,22 @@ msgstr "" "Actualizând informaţiile despre deposit a rezultat într-un fişier nevalid. " "Vă rugăm să reportaţi acest lucru ca eroare." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Sursele terţe ar trebui dezactivate" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Eroare în timpul actualizării" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -338,11 +344,11 @@ msgstr "" "A apărut o problemă în timpul actualizării. De obicei este legată de reţea, " "vă rugăm să verificaţi conexiunea dumneavoastra şi să încercaţi din nou." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Spaţiu liber insuficient" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -353,15 +359,16 @@ msgstr "" "pe disc pe %s. Goliţi coşul de gunoi şi ştergeţi pachetele temporare de la " "instalările vechi folosind 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Vrei sa începi upgrade-ul?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Nu s-au putut instalat upgrade-urile" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -375,11 +382,11 @@ msgstr "" "Vă rugăm raportaţi această eroare la pachetul 'update-manager' şi includeţi " "fişierele din /var/log/dist-upgrade/ în raport." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Nu pot descărca actualizările" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -387,11 +394,11 @@ msgstr "" "Actualizarea se opreşte acum. Vă rugăm să verificaţi conexiunea la Internet " "sau sursa de instalare şi să încercaţi din nou. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -400,23 +407,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Şterg pachetele vechi?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Sari peste acest pas" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "Şter_ge" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Eroare în timpul salvării" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -424,43 +431,45 @@ msgstr "" "O problemă a apărut în timpul acţiunii de curăţenie. Vă rugăm vedeţi mesajul " "de mai jos pentru informaţii suplimentare. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 #, fuzzy msgid "Restoring original system state" msgstr "Se reface starea iniţială a sistemului" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Se verifică managerul de pachete" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Se pregăteşte actualizarea" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Actualizez informaţii depozit" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Informaţii pachet nevalide" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -469,27 +478,28 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"După ce informaţiile despre pachete au fost actualizate pachetul esenţial " -"'%s' nu mai poate fi găsit.\n" +"După ce informaţiile despre pachete au fost actualizate pachetul esenţial '%" +"s' nu mai poate fi găsit.\n" "Aceasta indică o eroare serioasă, vă rugăm raportaţi o eroare la pachetul " "'update-manager' şi includeţi fişierele din /var/log/dist-upgrade/ în raport." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Se aşteaptă confirmarea" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Se actualizează" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Caut software învechit" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Actualizarea sistemului este completă" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -517,6 +527,7 @@ msgstr "Se descarcă fişierul %li din %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Se aplică modificările" @@ -534,6 +545,7 @@ msgstr "" "Actualizarea se opreşte acum. Vă rugăm raportaţi o eroare la pachetul " "'update-manager' şi includeţi fişierele din /var/log/dist-upgrade/ în raport." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -557,18 +569,19 @@ msgstr "S-a produs o eroare fatală" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Vă rugăm raportaţi aceasta ca eroare şi includeţi fişierele /var/log/dist-" "upgrade/main.log şi /var/log/dist-upgrade/apt.log în raportul dumneavoastră. " "Actualizarea se orpeşte acum.\n" -"Fişierul iniţial sources.list a fost salvat în " -"/etc/apt/sources.list.distUpgrade." +"Fişierul iniţial sources.list a fost salvat în /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -618,6 +631,7 @@ msgstr "" "Pentru a preveni pierderea datelor închideţi toate aplicaţiile şi " "documentele." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -665,6 +679,7 @@ msgid "%li seconds" msgstr "%li secunde" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -686,6 +701,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -798,6 +814,7 @@ msgstr "Nu pot descărca notiţele de lansare" msgid "Please check your internet connection." msgstr "Verificaţi conexiunea internet" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nu pot rula utilitarul de actualizare" @@ -897,14 +914,17 @@ msgstr "" "Nu am putut descărca lista modificărilor. Vă rog să verificaţi dacă aveţi o " "conexiune internet activă." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Actualizări importante de securitate" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Actualizări recomandate" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Pachete propuse" @@ -919,6 +939,7 @@ msgstr "Actualizări de securitate Ubuntu 5.04" msgid "Distribution updates" msgstr "_Continuă Actualizarea" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Alte actualizări" @@ -941,6 +962,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -968,7 +990,7 @@ msgid "Checking for updates" msgstr "_Instalează actualizarile" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Versiunea nouă: %s (Mărime: %s)" @@ -977,6 +999,7 @@ msgstr "Versiunea nouă: %s (Mărime: %s)" msgid "Version %s" msgstr "Versiunea %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1001,6 +1024,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Noua versiune '%s' este disponibilă" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Indexul software este deteriorat" @@ -1015,19 +1039,23 @@ msgstr "" "managerul de pachete \"Synaptic\" sau rulaţi \"sudo apt-get install -f\" " "într-un terminal pentru a remedia această problemă." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Nimic" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1300,9 +1328,9 @@ msgstr "" "Introduceţi linia APT completă a locaţiei pe care doriţi să o " "adăugaţi\n" "\n" -"Linia APT conţine tipul, adresa şi conţinutul unei locaţii, de " -"exemplu\"deb http://ftp.debian.org sarge main\". Puteţi găsi o " -"descriere detaliată a sintaxei în documentaţie." +"Linia APT conţine tipul, adresa şi conţinutul unei locaţii, de exemplu" +"\"deb http://ftp.debian.org sarge main\". Puteţi găsi o descriere " +"detaliată a sintaxei în documentaţie." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1385,191 +1413,235 @@ msgstr "Dimensiunea ferestrei" msgid "Configure the sources for installable software and updates" msgstr "Configurează sursele pentru software instalabil şi actualizări" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Pachete întreţinute de comunitate (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Software în contribuţie" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cdrom cu Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Pachete întreţinute de comunitate (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Pachete întreţinute de comunitate (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Pachete întreţinute de comunitate (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Pachete non-libere" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Software restricţionat (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cdrom cu Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Actualizări portate înapoi" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cdrom cu Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Actualizări de Securitate Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Actualizări Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cdrom cu Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Pachete suportate oficial" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Actualizări de Securitate Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Actualizări Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Pachete întreţinute de comunitate (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Pachete non-libere (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cdrom cu Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Pachete suportate oficial" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Copyright restrictiv" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Actualizări de securitate Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Actualizări Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Actualizări de securitate Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Software compatibil DFSG cu dependenţe negratuite" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Software incompatibil DFSG" @@ -1687,13 +1759,13 @@ msgstr "Software incompatibil DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Actualizări disponibile\n" #~ "\n" -#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările apăsând " -#~ "pe butonul Instalează." +#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările " +#~ "apăsând pe butonul Instalează." #~ msgid "Repository" #~ msgstr "Locaţie" @@ -1713,8 +1785,8 @@ msgstr "Software incompatibil DFSG" #~ msgstr "" #~ "Chei autentificare\n" #~ "\n" -#~ "Din acest dialog puteţi adăuga sau şterge chei de autentificare. Rolul unei " -#~ "chei estede a permite verificarea integrităţii unui pachet software " +#~ "Din acest dialog puteţi adăuga sau şterge chei de autentificare. Rolul " +#~ "unei chei estede a permite verificarea integrităţii unui pachet software " #~ "descărcat." #~ msgid "A_uthentication" @@ -1722,8 +1794,8 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Adăugaţi o nouă cheie în keyring-ul de încredere. Asiguraţi-vă că aţi " #~ "obţinut cheia printr-un canal sigur şi că aveţi încredere în proprietarul " @@ -1740,8 +1812,8 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Restaurează cheile implicite furnizate împreună cu distribuţia. Această " #~ "acţiune nu va influenţa cheile instalate ca utilizator." @@ -1766,8 +1838,8 @@ msgstr "Software incompatibil DFSG" #~ msgstr "Actualizările sunt în curs de aplicare." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Puteţi rula doar un singur manager de pachete la un moment dat. Vă rog să " #~ "închideţi ceilalţi manageri mai întâi." @@ -1777,8 +1849,8 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Puteţi rula doar un singur manager de pachete la un moment dat. Vă rog să " #~ "închideţi ceilalţi manageri mai întâi." @@ -1801,13 +1873,13 @@ msgstr "Software incompatibil DFSG" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Actualizări disponibile\n" #~ "\n" -#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările apăsând " -#~ "pe butonul Instalează." +#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările " +#~ "apăsând pe butonul Instalează." #~ msgid "0" -#~ msgstr "0" \ No newline at end of file +#~ msgstr "0" diff --git a/po/ru.po b/po/ru.po index da731af8..b419d671 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:16+0000\n" "Last-Translator: Igor Zubarev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "Через месяц" msgid "After %s days" msgstr "Через %s дней" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "%s обновлений" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Основной сервер" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Ошибка при удалении ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Выбранный вами ключ нельзя удалить. Пожалуйста, отправьте отчет об ошибке." @@ -166,6 +168,7 @@ msgstr "Невозможно обновить требуемые мета-пак msgid "A essential package would have to be removed" msgstr "Будет удален необходимый пакет" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Невозможно подготовить обновление системы" @@ -182,6 +185,7 @@ msgstr "" "Пожалуйста, отправьте отчет об ошибке программы 'update-manager' и добавьте " "файлы в /var/log/dist-upgrade/ к отчету." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Ошибка при проверке подлинности некоторых пакетов" @@ -209,6 +213,7 @@ msgstr "" "Невозможно установить необходимый пакет. Пожалуйста, отправьте отчет об " "ошибке. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Невозможно подобрать мета-пакет" @@ -226,11 +231,11 @@ msgstr "" " Пожалуйста установите один из приведенных выше пакетов с помощью synaptic " "или apt-get." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Не удалось добавить CD" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -245,15 +250,15 @@ msgstr "" "Сообщение об ошибке:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Чтение кэша" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Получить из сети данные для обновления?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -265,11 +270,11 @@ msgstr "" "Если у вас быстрое и недорогое подключение к сети, то ответь 'Да'. Если " "подключение дорогое для вас, ответьте 'Нет'." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Не найдено действующее зеркало" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -288,11 +293,12 @@ msgstr "" "обновлены все записи '%s' на '%s'.\n" "Ответ 'Нет' отменит обновление." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Сгенерировать источники по умолчанию?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -300,16 +306,16 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"В результате просмотра 'sources.list' не найдена действующая запись для " -"'%s'.\n" +"В результате просмотра 'sources.list' не найдена действующая запись для '%" +"s'.\n" "\n" "Добавить записи по умолчанию для '%s'? Ответ 'Нет' прервет обновление." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Информация о репозитории неверна" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -317,11 +323,11 @@ msgstr "" "В результате обновления информации о репозиториях образовался неверный файл. " "Пожалуйста отправьте отчет об ошибке." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Источники третьих сторон отключены" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " @@ -331,11 +337,11 @@ msgstr "" "обновления вы можете снова включить их с помощью утилиты 'software-" "properties' или synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Ошибка при обновлении" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -343,11 +349,11 @@ msgstr "" "При обновлении возникла проблема. Обычно это бывает вызвано проблемами в " "сети, проверьте сетевые подключения и повторите попытку." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Недостаточно свободного места на диске" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -358,15 +364,16 @@ msgstr "" "%s. Очистите вашу корзину и удалите временные пакеты, оставшиеся от " "предыдущих установок с помощью команды 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Вы хотите начать обновление системы?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Невозможно установить обновления" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -380,11 +387,11 @@ msgstr "" "Пожалуйста, отправьте отчет об ошибке программы 'update-manager' и добавьте " "файлы в /var/log/dist-upgrade/ к отчету." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Невозможно загрузить обновления" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -392,11 +399,11 @@ msgstr "" "Обновление прервано. Проверьте соединение с Интернет или установочный диск и " "попробуйте снова. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Некоторые программы больше не поддерживаются" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -410,23 +417,23 @@ msgstr "" "Если у вас не подключен репозиторий сообщества (universe), на следующем шаге " "вам предложат удалить эти пакеты." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Удалить устаревшие пакеты?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "Пропустить этот шаг" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "Удалить" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Ошибка при фиксировании" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -434,44 +441,46 @@ msgstr "" "При очистке возникла проблема. Более полная информация приведена в сообщении " "ниже. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Восстановление первоначального состояния системы" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Загрузка '%s' из репозитария backports" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Проверка менеджера пакетов" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Подготовка к обновлению завершилась неудачей" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" "Подготовка системы к обновлению завершилась неудачей. Пожалуйста, отправьте " -"отчет об ошибке приложения 'update-manager' и приложите к отчету файлы в " -"/var/log/dist-upgrade/." +"отчет об ошибке приложения 'update-manager' и приложите к отчету файлы в /" +"var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Обновление информации о репозитории" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Неверная информация о пакете" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -484,22 +493,23 @@ msgstr "" "Это серьёзная проблема, пожалуйста, сообщите об ошибке пакета 'update-" "manager', включив в отчёт об ошибке файлы, лежащие в /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Запрос подтверждения" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Обновление" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Поиск устаревших программ" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Обновление системы завершено." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -527,6 +537,7 @@ msgstr "Загрузка файла %li из %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Применение изменений" @@ -544,6 +555,7 @@ msgstr "" "Обновление прервано. Пожалуйста сообщите об ошибке в пакете 'update-manager' " "и включите файлы, находящиеся в /var/log/dist-upgrade/ в сообщение об ошибке" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -571,17 +583,18 @@ msgstr "Произошла неисправимая ошибка" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Пожалуйста, отправьте отчет об ошибке и включите в него файлы /var/log/dist-" "upgrade.log и /var/log/dist-upgrade-apt.log. Обновление прервано.\n" -"Оригинальный файл sources.list был сохранен как " -"/etc/apt/sources.list.distUpgrade." +"Оригинальный файл sources.list был сохранен как /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -630,6 +643,7 @@ msgid "To prevent data loss close all open applications and documents." msgstr "" "Чтобы избежать потерь данных, закройте все открытые приложения и документы." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -678,6 +692,7 @@ msgid "%li seconds" msgstr "%li секунд" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -694,12 +709,12 @@ msgstr "Требуется перезагрузка" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "" -"Обновление завершено и требуется перезагрузка. Перезагрузиться сейчас?" +msgstr "Обновление завершено и требуется перезагрузка. Перезагрузиться сейчас?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -810,6 +825,7 @@ msgstr "Не могу загрузить сведения о релизе" msgid "Please check your internet connection." msgstr "Пожалуйста, проверьте соединение с интернет." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Невозможно запустить утилиту обновления" @@ -911,14 +927,17 @@ msgstr "" "Ошибка при загрузке списка изменений. \n" "Пожалуйста, проверьте ваше соединение с Интернет." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Важные обновления безопасности" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Рекомендованые обновления" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Предлагаемые обновления" @@ -931,6 +950,7 @@ msgstr "Бэкпорты" msgid "Distribution updates" msgstr "Обновления дистрибутива" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Прочие обновления" @@ -952,6 +972,7 @@ msgstr "Сбросить все" msgid "_Check All" msgstr "Проверить все" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -987,6 +1008,7 @@ msgstr "С версии %(old_version)s на %(new_version)s" msgid "Version %s" msgstr "Версия %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1011,6 +1033,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Доступен новый релиз дистрибутива '%s'" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Индекс программ поврежден" @@ -1025,19 +1048,23 @@ msgstr "" "используйте менеджер пакетов \"Synaptic\" или запустите в терминале \"sudo " "apt-get install -f\"." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Нет" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 Кб" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f Кб" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1403,207 +1430,251 @@ msgstr "Размер окна" msgid "Configure the sources for installable software and updates" msgstr "Настроить источники установки программ и обновлений" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Поддерживается сообществом" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Проприетарные драйвера устройств" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Несвободное ПО" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "CDROM с Ubuntu 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Open Source приложения, поддерживаемые Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Поддерживается сообществом (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Поддерживаемое сообществом свободное ПО" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Несвободные драйвера" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Проприетарные драйвера устройств " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Несвободное обеспечение (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Программы, ограниченные патентами или законами" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "CD с Ubuntu 6.06 LTS 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Обновления в бэкпортах" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "CD с Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Обновления безопасности Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Обновления Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 бэкпорты" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "CD с Ubuntu 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Официально поддерживается" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Обновления безопасности Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Обновления Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 бэкпорты" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Поддерживается сообществом (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Несвободное (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "CD с Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Официально больше не поддерживается" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Ограниченные авторские права" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Обновления безопасности Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Обновления Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 бэкпорты" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Обновления безопасности Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-совместимое ПО с зависимостями от несвободного ПО" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Не-DFSG-совместимое ПО" #~ msgid "" -#~ "You will loose all customizations, that have been made by yourself or by a " -#~ "script, if you replace the file by its latest version." +#~ "You will loose all customizations, that have been made by yourself or by " +#~ "a script, if you replace the file by its latest version." #~ msgstr "" #~ "Если вы замените файл его поздней версией, вы потеряете все изменения " #~ "сделанные вами или скриптами." -#, python-format #~ msgid "" -#~ "This download will take about %s with a 56k modem and about %s with a 1Mbit " -#~ "DSL connection" +#~ "This download will take about %s with a 56k modem and about %s with a " +#~ "1Mbit DSL connection" #~ msgstr "" #~ "Скачивание займёт примерно %s при 56к модеме и примерно %s при 1Мбит DSL-" #~ "подключении" #~ msgid "The list of changes is not available yet. Please try again later." #~ msgstr "" -#~ "На данный момент список изменений недоступен. Пожалуйста, попробуйте позднее." +#~ "На данный момент список изменений недоступен. Пожалуйста, попробуйте " +#~ "позднее." #~ msgid "" #~ "Failed to download the list of changes. Please check your Internet " @@ -1620,7 +1691,6 @@ msgstr "Не-DFSG-совместимое ПО" #~ "Программное обеспечение, ограниченное копирайтом или другими правовыми " #~ "проблемами" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Загрузка файла %li из %li с неизвестной скоростью" @@ -1671,17 +1741,17 @@ msgstr "Не-DFSG-совместимое ПО" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Некоторые обновления требуют удаления других приложений. Для полного " -#~ "обновления системы используйте функцию \"Пометить все обновления\" менеджера " -#~ "пакетов \"Synaptic\" или запустите в терминале \"sudo apt-get dist-upgrade\"." +#~ "обновления системы используйте функцию \"Пометить все обновления\" " +#~ "менеджера пакетов \"Synaptic\" или запустите в терминале \"sudo apt-get " +#~ "dist-upgrade\"." #~ msgid "The following updates will be skipped:" #~ msgstr "Следующие обновления будут пропущены:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Осталось приблизительно %li секунд" @@ -1757,4 +1827,4 @@ msgstr "Не-DFSG-совместимое ПО" #~ msgstr "Обновления Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 6.06 LTS Backports" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS Backports" diff --git a/po/rw.po b/po/rw.po index 6455a0e8..0f184568 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" @@ -63,13 +63,15 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "Kwinjiza porogaramu" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -79,6 +81,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -133,8 +136,7 @@ msgstr "i Urufunguzo" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -171,6 +173,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -184,6 +187,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -207,6 +211,7 @@ msgid "" "bug. " msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -220,11 +225,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -234,15 +239,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -250,11 +255,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -266,11 +271,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -279,43 +285,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 #, fuzzy msgid "Error during update" msgstr "i Urufunguzo" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -323,15 +329,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -340,21 +347,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -363,49 +370,51 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Checking package manager" msgstr "Muyobozi ni" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -413,15 +422,15 @@ msgid "" "upgrade/ in the bugreport." msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -431,23 +440,24 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 #, fuzzy msgid "Upgrading" msgstr "Byarangiye" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -475,6 +485,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -491,6 +502,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -514,13 +526,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -557,6 +570,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy @@ -605,6 +619,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -624,6 +639,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -735,6 +751,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -830,15 +847,18 @@ msgid "" msgstr "" "Kuri Gufungura Amahinduka Kugenzura... NIBA ni Gikora Interineti Ukwihuza" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "5" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -854,13 +874,14 @@ msgstr "5" msgid "Distribution updates" msgstr "Byarangiye" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" msgstr "Kwinjiza porogaramu" #: ../UpdateManager/UpdateManager.py:478 -#, fuzzy +#, fuzzy, python-format msgid "Version %s: \n" msgstr "Verisiyo \n" @@ -877,13 +898,14 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" msgstr "" #: ../UpdateManager/UpdateManager.py:633 -#, fuzzy +#, fuzzy, python-format msgid "You can install %s update" msgid_plural "You can install %s updates" msgstr[0] "Sisitemu ni Hejuru Kuri Itariki" @@ -907,10 +929,11 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Verisiyo" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -933,6 +956,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -944,19 +968,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1306,207 +1334,252 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "5" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Kohereza Nta gukoresha bisesuye" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "5" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Kigenga" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Kigenga" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:135 #, fuzzy msgid "Ubuntu 5.10 Security Updates" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "5" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "5" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 #, fuzzy msgid "Non-free (Multiverse)" msgstr "Kigenga" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 #, fuzzy msgid "Restricted copyright" msgstr "Uburenganzira bw'umuhimbyi" +#. Description #: ../data/channels/Ubuntu.info.in:218 #, fuzzy msgid "Ubuntu 4.10 Security Updates" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:223 #, fuzzy msgid "Ubuntu 4.10 Updates" msgstr "5" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "5" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "4. 10" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1637,8 +1710,8 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "> Ukoresha: Utubuto" @@ -1725,7 +1798,8 @@ msgstr "" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " +#~ "situation." #~ msgstr "" #~ "i Bya i Igikorwa Nka gukora iyinjizaporogaramu:%s Cyangwa ni Bya ngombwa " #~ "Gukoresha Cyangwa Kubona Kuri i" @@ -1740,8 +1814,8 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Gukoresha Porogaramu ku i Igihe Gufunga iyi Ikindi Porogaramu Itangira" @@ -1756,16 +1830,16 @@ msgstr "" #, fuzzy #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Kuri a Verisiyo Bya Verisiyo Oya Kubona Umutekano Cyangwa Ikindi Ibyangombwa " -#~ "HTTP www org kugirango Ibisobanuro" +#~ "Kuri a Verisiyo Bya Verisiyo Oya Kubona Umutekano Cyangwa Ikindi " +#~ "Ibyangombwa HTTP www org kugirango Ibisobanuro" #, fuzzy #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "A Gishya Na: i ni Bihari HTTP www org kugirango Amabwiriza" #, fuzzy @@ -1774,8 +1848,8 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" #~ "Gukoresha Porogaramu ku i Igihe Gufunga iyi Ikindi Porogaramu Itangira" @@ -1804,4 +1878,4 @@ msgstr "" #, fuzzy #~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "com" \ No newline at end of file +#~ msgstr "com" diff --git a/po/sk.po b/po/sk.po index e8f9c5da..653c6f01 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Peter Chabada \n" "Language-Team: Slovak \n" @@ -55,15 +55,17 @@ msgstr "Po mesiaci" msgid "After %s days" msgstr "Po %s dňoch" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy +#, fuzzy, python-format msgid "%s updates" msgstr "Nainštalovať _aktualizácie" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 -#, fuzzy +#, fuzzy, python-format msgid "%s (%s)" msgstr "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -123,12 +126,11 @@ msgid "Error removing the key" msgstr "Chyba pri odstraňovaní kľúča" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný kľúč nebolo možné odstrániť. Nahláste to ako chybu." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -166,6 +168,7 @@ msgstr "Nemôžem aktualizovať požadované meta-balíky" msgid "A essential package would have to be removed" msgstr "Musel by byť odstránený dôležitý balík" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Nemôžem vypočítať aktualizáciu" @@ -181,6 +184,7 @@ msgstr "" "Počas prípravy aktualizácie sa vyskytol neriešiteľný problém. Nahláste to " "ako chybu." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Chyba pri overovaní niektorých balíkov" @@ -206,6 +210,7 @@ msgid "" "bug. " msgstr "Požadovaný balík nebolo možné nainštalovať. Nahláste to ako chybu. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Nemôžem odhadnúť meta balík." @@ -224,12 +229,12 @@ msgstr "" "Pred pokračovaním nainštalujte jeden z vyššie uvedených balíkov pomocou " "Synapticu alebo apt-get." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, fuzzy msgid "Failed to add the CD" msgstr "Zlyhalo získavanie aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -239,15 +244,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Čítam vyrovnávaciu pamäť cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -255,11 +260,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Nebol nájdený vhodný server" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -278,11 +283,12 @@ msgstr "" "nahradené všetky '%s' záznamy '%s' záznamami.\n" "Pokiaľ zvolíte 'Nie', súbor nebude zmenený." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Vytvoriť štandardný zoznam zdrojov softvéru?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -290,17 +296,17 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Počas čítania súboru 'sources.list' nebol nájdený žiadny platný záznam pre " -"'%s'.\n" +"Počas čítania súboru 'sources.list' nebol nájdený žiadny platný záznam pre '%" +"s'.\n" "\n" "Majú byť pridané štandardné záznamy pre '%s'? Pokiaľ zvolíte 'Nie', súbor " "nebude zmenený." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Neplatná informácia o zdrojoch softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -308,11 +314,11 @@ msgstr "" "Aktualizácia informácií o zdrojoch softvéru skončila neplatným súborom. " "Nahláste to ako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Zdroje tretích strán sú zakázané" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 #, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" @@ -323,11 +329,11 @@ msgstr "" "Môžete ich povoliť po upgrade pomocou nástroja 'vlastnosti-softwaru' alebo " "pomocou synapticu." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Chyba počas aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -335,11 +341,11 @@ msgstr "" "Počas aktualizácie sa objavil problém, ktorý je zvyčajne spôsobený chybou " "sieťového pripojenia, preto skontrolujte vaše pripojenie a skúste znova." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Nedostatok voľného miesta na disku" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -350,15 +356,16 @@ msgstr "" "vyprázdnením svojho kôša, prípadne odstránením dočasných inštalačných " "súborov z predchádzajúcich inštalácií pomocou príkazu 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Chcete začať s aktualizáciou?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Nebolo možné nainštalovať aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -370,11 +377,11 @@ msgstr "" "Aktualizácia teraz skončí. Váš systém môže byť v nepoužiteľnom stave, preto " "bol spustený príkaz na zotavenie sa z tohto stavu (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Nebolo možné stiahnuť požadované balíky" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -382,11 +389,11 @@ msgstr "" "Aktualizácia bola neočakávane prerušená. Skontrolujte svoje internetové " "pripojenie alebo inštalačné médiá a skúste znova. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -401,23 +408,23 @@ msgstr "" "Pokiaľ nemáte zapnutý komunitou spravovaný zdroj softvéru 'universe', budú " "tieto balíky v ďalšom kroku navrhnuté na odstránenie." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Odstrániť zastarané balíky?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Preskočiť tento krok" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Odstrániť" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Chyba počas potvrdzovania" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -425,27 +432,29 @@ msgstr "" "Počas čistenia sa vyskytli problémy. Pre viac informácií si pozrite nižšie " "uvedené správy. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Obnovuje sa pôvodný stav systému" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Kontrola správcu balíkov" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Prebieha príprava aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -455,16 +464,16 @@ msgstr "" "Počas prípravy aktualizácie sa vyskytol neriešiteľný problém. Nahláste to " "ako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Aktualizácia informácií o zdrojoch softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Neplatná informácia o balíku" -#: ../DistUpgrade/DistUpgradeControler.py:721 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:726 +#, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " "not be found anymore.\n" @@ -472,26 +481,27 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Po aktualizácií informácií o balíkoch nie je možné nájsť dôležitý balík " -"'%s'.\n" +"Po aktualizácií informácií o balíkoch nie je možné nájsť dôležitý balík '%" +"s'.\n" "To znamená závažný problém. Nahláste to ako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Požaduje sa potvrdenie" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Prebieha aktualizácia" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Vyhľadávanie zastaraného softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Aktualizácia systému je dokončená." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -503,23 +513,24 @@ msgid "Fetching is complete" msgstr "Aktualizácia je dokončená" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Sťahovanie súboru %li z %li pri %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:253 -#, fuzzy +#, fuzzy, python-format msgid "About %s remaining" msgstr "Zostáva %li minút" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy +#, fuzzy, python-format msgid "Fetching file %li of %li" msgstr "Sťahujem %li súbor z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Aplikujem zmeny" @@ -535,8 +546,9 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 -#, fuzzy +#, fuzzy, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" @@ -561,20 +573,21 @@ msgstr "Nastala závažná chyba" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Nahláste to ako chybu a k svojmu hláseniu priložte súbory /var/log/dist-" "upgrade.log a /var/log/dist-upgrade-apt.log. Aktualizácia bude teraz " "prerušená.\n" -"Váš pôvodný súbor 'sources.list' bol uložený ako " -"/etc/apt/sources.list.distUpgrade." +"Váš pôvodný súbor 'sources.list' bol uložený ako /etc/apt/sources.list." +"distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Bude odstránený %s balík." @@ -582,7 +595,7 @@ msgstr[1] "Budú odstránené %s balíky." msgstr[2] "Bude odstránených %s balíkov." #: ../DistUpgrade/DistUpgradeViewGtk.py:506 -#, fuzzy +#, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Bude nainštalovaný %s nový balík." @@ -590,7 +603,7 @@ msgstr[1] "Budú nainštalované %s nové balíky." msgstr[2] "Bude nainštalovaných %s nových balíkov." #: ../DistUpgrade/DistUpgradeViewGtk.py:512 -#, fuzzy +#, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Bude aktualizovaný %s balík." @@ -598,7 +611,7 @@ msgstr[1] "Budú aktualizované %s balíky." msgstr[2] "Bude aktualizovaných %s balíkov." #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -613,14 +626,14 @@ msgstr "" msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "" -"Aktualizácia môže trvať niekoľko hodín a nemôže byť neskôr prerušená." +msgstr "Aktualizácia môže trvať niekoľko hodín a nemôže byť neskôr prerušená." #: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pre zamedzenie straty dát, zavrite všetky otvorené programy a dokumenty." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -648,12 +661,12 @@ msgid "Upgrade %s" msgstr "Aktualizovať %s" #: ../DistUpgrade/DistUpgradeView.py:27 -#, fuzzy +#, fuzzy, python-format msgid "%li days %li hours %li minutes" msgstr "Zostáva %li dní %li hodín %li minút" #: ../DistUpgrade/DistUpgradeView.py:29 -#, fuzzy +#, fuzzy, python-format msgid "%li hours %li minutes" msgstr "Zostáva %li hodín %li minút" @@ -668,6 +681,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -689,6 +703,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -802,6 +817,7 @@ msgstr "Nebolo možné stiahnuť poznámky k vydaniu" msgid "Please check your internet connection." msgstr "Skontrolujte si internetové pripojenie." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Nebolo možné spustiť aktualizačný program" @@ -875,12 +891,12 @@ msgstr "" "problémom alebo nedostupňosťou servera. " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Sťahovanie súboru %li z %li pri %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Sťahovanie súboru %li z %li pri %s/s" @@ -905,15 +921,18 @@ msgstr "" "Zlyhalo získavanie zoznamu zmien. Skontrolujte si svoje internetové " "pripojenie." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -929,6 +948,7 @@ msgstr "Ubuntu 5.10 - backporty" msgid "Distribution updates" msgstr "_Pokračovať v aktualizácii" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -953,6 +973,7 @@ msgstr "" msgid "_Check All" msgstr "_Skontrolovať" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -980,15 +1001,16 @@ msgid "Checking for updates" msgstr "Kontrolujem aktualizácie..." #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "Nová verzia: %s (veľkosť: %s)" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Verzia %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1006,14 +1028,15 @@ msgid "" msgstr "" "Nebudete mať k dispozícii žiadne nové bezpečnostné ani kritické " "aktualizácie. Prejdite preto na najnovšiu verziu distribúcie Ubuntu Linux. " -"Pre viac informácií o prechode na novšiu verziu si pozrite " -"http://www.ubuntu.com.\"" +"Pre viac informácií o prechode na novšiu verziu si pozrite http://www.ubuntu." +"com.\"" #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "K dispozícii je nové vydanie distribúcie '%s'" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Index softvéru je poškodený" @@ -1028,20 +1051,24 @@ msgstr "" "Na odstránenie tohto problému použite správcu balíkov 'Synaptic' alebo " "spustite 'sudo apt-get install -f' v termáli." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 #, fuzzy msgid "None" msgstr "Žiadna" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1323,11 +1350,11 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete " -"pridať\n" +"Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete pridať\n" "\n" -"APT riadok obsahuje typ, umiestnenie a súčasti zdrojov softvéru. Napr.: " -"\"deb·http://ftp.debian.org·sarge·main\"." +"APT riadok obsahuje typ, umiestnenie a súčasti zdrojov softvéru. Napr.: " +"\"deb·http://ftp.debian.org·sarge·main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1419,206 +1446,250 @@ msgstr "Veľkosť okna" msgid "Configure the sources for installable software and updates" msgstr "Nastaviť zdroje softvéru a internetové aktualizácie" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 5.10 - aktualizácie" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Udržiavané komunitou (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Softvér závislý na neslobornom softvéri" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Udržiavané komunitou (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Udržiavané komunitou (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Udržiavané komunitou (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Neslobodné (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Neslobodné (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 - aktualizácie" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 - backporty" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Disk s Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Disk s Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Oficiálne podporované" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.10 - bezpečnostné aktualizácie" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 - aktualizácie" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.10 - backporty" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Udržiavané komunitou (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Neslobodné (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Disk s Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Niektoré programy už nie sú viac oficiálne podporované" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "S obmedzujúcou licenciou" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 bezpečnostné aktualizácie" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 aktualizácie" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 5.10 - backporty" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" - bezpečnostné aktualizácie" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Softvér kompatibilný s DFSG bez závislostí na neslobodnom softvére" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Softvér nekompatibilný s DFSG" @@ -1627,7 +1698,6 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Softvér s obmedzených exportom pre USA" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Sťahovanie súboru %li z %li pri nezámej rýchlosti" @@ -1651,8 +1721,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Prebieha aktualizácia na Ubuntu 6.06 " -#~ "LTS" +#~ "Prebieha aktualizácia na Ubuntu " +#~ "6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1681,18 +1751,17 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "Niektoré aktualizácie vyžadujú odstránenie iných programov. Aby ste vykonali " -#~ "úplnú aktualizáciu použite funkciu \"Označiť všetky aktualizácie\" správcu " -#~ "balíkov \"Synaptic\" alebo spustite \"sudo apt-get dist-upgrade\" v " -#~ "termináli." +#~ "Niektoré aktualizácie vyžadujú odstránenie iných programov. Aby ste " +#~ "vykonali úplnú aktualizáciu použite funkciu \"Označiť všetky aktualizácie" +#~ "\" správcu balíkov \"Synaptic\" alebo spustite \"sudo apt-get dist-upgrade" +#~ "\" v termináli." #~ msgid "The following updates will be skipped:" #~ msgstr "Nasledujúce balíky nebudú aktualizované:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Zostáva %li sekúnd" @@ -1775,15 +1844,15 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Nebol nájdený žiadny platný záznam" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" -#~ "Vo vašich zdrojoch softvéru nebol nájdený žiadny záznam vhodný na použitie " -#~ "pre upgrade.\n" +#~ "Vo vašich zdrojoch softvéru nebol nájdený žiadny záznam vhodný na " +#~ "použitie pre upgrade.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery is now run (dpkg --configure -a)." #~ msgstr "" #~ "Upgrade neočakávane skončil. Váš systém môže byt v nestabilnom stave. Pre " #~ "opravu skúste teraz spustiť (dpkg --configure -a)." @@ -1792,8 +1861,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "Please report this as a bug and include the files ~/dist-upgrade.log and " #~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " #~ msgstr "" -#~ "Oznámte ju ako chybu a k vašej správe priložte súbory ~/dist-upgrade.log a " -#~ "~/dist-upgrade-apt.log. Upgrade teraz skončí. " +#~ "Oznámte ju ako chybu a k vašej správe priložte súbory ~/dist-upgrade.log " +#~ "a ~/dist-upgrade-apt.log. Upgrade teraz skončí. " #~ msgid "You can install one update" #~ msgid_plural "You can install %s updates" @@ -1808,14 +1877,14 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "You need to reload the package list from the servers for your changes to " #~ "take effect. Do you want to do this now?" #~ msgstr "" -#~ "Potrebujete znovunačítať zoznam dostupných balíčkov zo serverov uvedených vo " -#~ "vašich zdrojoch softvéru. Chcete to urobiť teraz?" +#~ "Potrebujete znovunačítať zoznam dostupných balíčkov zo serverov uvedených " +#~ "vo vašich zdrojoch softvéru. Chcete to urobiť teraz?" #~ msgid "" #~ "Analysing your system\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "Analyzuje sa váš systém\n" #~ "\n" @@ -1823,8 +1892,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "zraniteľnosti alebo poskytnúť nové vlastnosti." #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "Softvérové aktualizácie môžu opravovať chyby, odstraňovať bezpečnostné " #~ "zraniteľnosti alebo poskytnúť nové vlastnosti." @@ -1835,15 +1904,15 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "installed therefor" #~ msgstr "" #~ "Automaticky budú inštalované len bezpečnostné aktualizácie z oficiálnych " -#~ "serverov Ubuntu. Preto musí byť nainštalovaný softvérový balíček 'unattended-" -#~ "upgrades'." +#~ "serverov Ubuntu. Preto musí byť nainštalovaný softvérový balíček " +#~ "'unattended-upgrades'." #~ msgid "Sections" #~ msgstr "Sekcie:" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line contains the type, location and sections of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1851,8 +1920,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete " #~ "pridať\n" #~ "\n" -#~ "APT riadok obsahuje typ, umiestnenie a sekcie zdrojov softvéru. Napr.: " -#~ "\"deb·http://ftp.debian.org·sarge·main\"." +#~ "APT riadok obsahuje typ, umiestnenie a sekcie zdrojov softvéru. Napr.: " +#~ "\"deb·http://ftp.debian.org·sarge·main\"." #~ msgid "Sections:" #~ msgstr "Sekcie:" @@ -1884,8 +1953,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ "umožňuje overiť integritu stiahnutého softvéru." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Pridať nový kľúč do zväzku dôveryhodných kľúčov. Uistite sa, že ste kľúč " #~ "dostali bezpečnou cestou, a že môžete veriť jeho vydavateľovi. " @@ -1915,8 +1984,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Maximálna veľkosť archívu na disku (v MB):" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" #~ "Obnoví pôvodné kľúče dodávané s vašou distribúciou. Toto neovplyvní " #~ "používateľom nainštalovnané kľúče." @@ -1948,8 +2017,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Dostupné aktualizácie\n" #~ "\n" @@ -2030,7 +2099,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr[2] "Vybrali ste %s balíkov na aktualizáciu, veľkosť %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Vybrali ste %s z %s balíkov na aktualizáciu, veľkosť %s" #~ msgstr[1] "Vybrali ste %s z %s balíkov na aktualizáciu, veľkosť %s" #~ msgstr[2] "Vybrali ste %s z %s balíkov na aktualizáciu, veľkosť %s" @@ -2039,8 +2109,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Práve prebieha aktualizácia." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" #~ "Môžete mať spustenú najviac jednu aplikáciu na správu balíkov. Prosím, " #~ "najprv zavrite druhú aplikáciu." @@ -2053,8 +2123,8 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" #~ "Prejdite prosím, na novšiu verziu distribúcie Ubuntu Linux. Verzia, ktorú " #~ "používate nie je viac podporovaná. To znamená, že už nie sú k dispozícii " @@ -2065,12 +2135,12 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "Bola nájdená novšia verzia Ubuntu!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Je dostupná novšia verzia vašej distribúcie s kódovým označením \"%s\". Pre " -#~ "viac informácií o prechode na vyššiu verziu si pozrite " -#~ "http://www.ubuntulinux.org." +#~ "Je dostupná novšia verzia vašej distribúcie s kódovým označením \"%s\". " +#~ "Pre viac informácií o prechode na vyššiu verziu si pozrite http://www." +#~ "ubuntulinux.org." #~ msgid "Never show this message again" #~ msgstr "Už viac nezobrazovať toto upozornenie" @@ -2083,4 +2153,4 @@ msgstr "Softvér nekompatibilný s DFSG" #~ msgstr "A_utentifikácia" #~ msgid "Packages to install:" -#~ msgstr "Balíky na inštaláciu:" \ No newline at end of file +#~ msgstr "Balíky na inštaláciu:" diff --git a/po/sl.po b/po/sl.po index e02fc98a..baba6c98 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Tadej \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%" +"100==4 ? 2 : 3\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "Po enem mesecu" msgid "After %s days" msgstr "Po %s dnevih" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Napaka pri odstranitvi kluča" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Kluč, katerega ste izbrali, se ne more odstraniti. Prosim, javite to kot " "napako." @@ -153,7 +155,7 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Vaš sistem vsebuje pokvarjene pakete, ki se ne morejo obnoviti s to " -"programsko opremo. \n" +"programsko opremo.\r\n" "Prosim, da popravite te pakete z uporabo synaptic ali apt-get, preden " "nadaljujete." @@ -165,6 +167,7 @@ msgstr "Ne morem nadgraditi zahtevanih meta-paketov" msgid "A essential package would have to be removed" msgstr "Bistven paket se bo moral odstraniti" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Ne morem izračunati nadgradnje" @@ -177,6 +180,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Napaka pristnosti nekaterih paketov" @@ -192,7 +196,7 @@ msgstr "" "paketov." #: ../DistUpgrade/DistUpgradeCache.py:312 -#, fuzzy +#, fuzzy, python-format msgid "Can't install '%s'" msgstr "Ne morem namestiti '%s'" @@ -203,6 +207,7 @@ msgid "" msgstr "" "Nemogoče je bilo namestiti zahtevani paket. Prosim, javite to kot napaka. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Ne morem ugibati meta-paketa" @@ -216,11 +221,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -230,15 +235,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Berem zalogo" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -246,11 +251,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Najdena neveljavna zrcalnost" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -270,11 +275,12 @@ msgstr "" "izberete 'Yes', vam bo posodobilo vse vhode iz '%s' v '%s'.\n" "Če izberete 'no', se bo posodobitev prekinila." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Proizvedem pomanjkljive izvore?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -287,11 +293,11 @@ msgstr "" "Se naj dodajo pomanjkljivi vnosi za '%s'? Če izberete 'No', se bo " "posodabljanje prekinilo." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Neveljavna shranjena informacija" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -299,22 +305,22 @@ msgstr "" "Nadgradnja shranjene informacije je zaključena kot neveljavna datoteka. " "Prosim, javite to kot napaka." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Izvor tretje skupine izključen" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Napaka med posodobitvijo" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -322,11 +328,11 @@ msgstr "" "Med posodobitvijo je prišlo do napake. Ponavadi je to lahko omrežna napaka, " "prosim, da preverite vaše omrežje in poskusite znova." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Premalo prostora na disku" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -337,15 +343,16 @@ msgstr "" "prostora na %s. Izpraznite koš in odstranite začasne pakete prejšnjih " "namesitev z uporabo 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Želite pričeti z nadgradnjo?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Ne morem namestiti nadgradenj." -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -354,11 +361,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Ne morem sneti nadgradenj" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -366,11 +373,11 @@ msgstr "" "Nadgradnja sedaj končuje. Prosim, preverite internetno povezavo ali " "namestitveni medij in poizkusite znova. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -379,23 +386,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Odstranim neuporabne pakete?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Preskoči ta korak" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Odstrani" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Napaka med izvedbo" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -403,41 +410,43 @@ msgstr "" "Med čiščenjem je prišlo do problema. Prosim, poglejte sporočilo spodaj za " "več informacij. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Preverjam paketni upravitelj" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Posodabljam shranjeno informacijo" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Neveljavna paketna informacija" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -447,22 +456,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Sprašujem za potrditev" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Nadgrajevanje" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Nadgrajevanje sistema je dokončano" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -490,6 +500,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -505,6 +516,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -528,13 +540,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -580,6 +593,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -627,6 +641,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -646,6 +661,7 @@ msgstr "Nadgrajevanje je končano in potreben je ponoven zagon" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -752,6 +768,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -841,14 +858,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -861,6 +881,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -882,6 +903,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -918,6 +940,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -939,6 +962,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -950,19 +974,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1289,184 +1317,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/sq.po b/po/sq.po index f5a258aa..731d45af 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Alejdin Tirolli \n" "Language-Team: Albanian \n" @@ -55,6 +55,7 @@ msgstr "Pas një muaji" msgid "After %s days" msgstr "Pas %s ditësh" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s përmirësimet" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "Gabim gjatë largimit të çelësit" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Çelësi i zgjedhur nuk mund të largohet.Ju lutemi krijoni këtu një raport për " "gabimin." @@ -168,6 +170,7 @@ msgstr "Metapaketat e nevojshme nuk mund të aktualizohen." msgid "A essential package would have to be removed" msgstr "Një paketë themelore u deshtë të largohej" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Aktualizimi nuk mund të llogaritej" @@ -182,6 +185,7 @@ msgstr "" "Një problem i pazgjidhshëm ndodhi gjatë aktualizimit.Ju lutemi krijoni një " "raport për këtë gabim." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Gabim gjatë vërtetimit të origjinalitetit të disa paketave." @@ -209,6 +213,7 @@ msgstr "" "Një paketë i nevojshëm nuk mundi të instalohet.Ju lutemi raportoni këtë " "problem. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Can't guess meta-package" @@ -227,11 +232,11 @@ msgstr "" "Ju lutemi instaloni njërën nga paketat e theksuara nëpërmjet Synaptic ose " "apt-get, para se të vazhdoni." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Futja e CD dështoi" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -241,15 +246,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -257,11 +262,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -273,11 +278,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -286,42 +292,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -329,15 +335,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -346,21 +353,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -369,63 +376,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -435,22 +444,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -478,6 +488,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -493,6 +504,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -516,13 +528,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -562,6 +575,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -609,6 +623,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -628,6 +643,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -734,6 +750,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -823,14 +840,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -843,6 +863,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -864,6 +885,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -898,6 +920,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -919,6 +942,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -930,19 +954,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1268,184 +1296,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/sr.po b/po/sr.po index 260a66e0..b5f6a382 100644 --- a/po/sr.po +++ b/po/sr.po @@ -8,15 +8,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Vladimir Samardzic \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -56,6 +56,7 @@ msgstr "Posle jednog meseca" msgid "After %s days" msgstr "Posle %s dana" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,8 +127,7 @@ msgstr "Грешка у уклањању кључа" #: ../SoftwareProperties/SoftwareProperties.py:993 #, fuzzy -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Кључ који сте изабрали није могуће уклонити. Молим вас пријавите ово као " "грешку." @@ -171,6 +173,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -183,6 +186,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -205,6 +209,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -218,11 +223,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -232,15 +237,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -248,11 +253,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -264,11 +269,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -277,62 +283,63 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 #, fuzzy msgid "Not enough free disk space" msgstr "Нема довољно места на диску" -#: ../DistUpgrade/DistUpgradeControler.py:369 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:374 +#, fuzzy, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"Надоградња је прекинута. Молим вас ослободите најмање %s простора на диску " -"%s. Испразните канту за отпаtке и уклоните привремене пакете предходних " +"Надоградња је прекинута. Молим вас ослободите најмање %s простора на диску %" +"s. Испразните канту за отпаtке и уклоните привремене пакете предходних " "инсталација користећи команду 'sudo apt-get clean'." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,21 +348,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -364,63 +371,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Прескочи овај корак" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Уклони" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -430,23 +439,24 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 #, fuzzy msgid "System upgrade is complete." msgstr "Унапређење система је завршено" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -474,6 +484,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -489,6 +500,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -513,13 +525,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -564,6 +577,7 @@ msgid "To prevent data loss close all open applications and documents." msgstr "" "Да би спречили губитак података затворите све активне програме и документа." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -611,6 +625,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -631,6 +646,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -738,6 +754,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -827,14 +844,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -847,6 +867,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -868,6 +889,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -903,6 +925,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -924,6 +947,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -935,19 +959,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1274,184 +1302,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/sv.po b/po/sv.po index e3ede40a..a690f9f9 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 05:06+0000\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -56,6 +56,7 @@ msgstr "Efter en månad" msgid "After %s days" msgstr "Efter %s dagar" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "Uppdateringar för %s" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Huvudserver" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -122,8 +125,7 @@ msgid "Error removing the key" msgstr "Fel vid borttagning av nyckeln" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Nyckeln du valde kan inte tas bort. Rapportera detta som ett fel." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -166,6 +168,7 @@ msgstr "Kan inte uppdatera de obligatoriska meta-paketen" msgid "A essential package would have to be removed" msgstr "Ett grundläggande paket skulle behöva tas bort" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Kunde inte beräkna uppgraderingen" @@ -182,6 +185,7 @@ msgstr "" "Rapportera det här felet mot paketet \"update-manager\" och inkludera " "filerna i /var/log/dist-upgrade/ i felrapporten." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Det gick inte att autentisiera vissa paket" @@ -209,6 +213,7 @@ msgstr "" "Det var inte möjligt att installera ett nödvändigt paket. Rapportera detta " "som ett fel. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Kan inte gissa meta-paket" @@ -227,11 +232,11 @@ msgstr "" " Installera först ett av paketen ovan med Synaptic eller apt-get innan du " "fortsätter." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "Misslyckades med att lägga till cd-skivan" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -246,15 +251,15 @@ msgstr "" "Felmeddelandet var:\n" "\"%s\"" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Läser cache" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Hämta uppgraderingsdata från nätverket?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -268,11 +273,11 @@ msgstr "" "Om du har en snabb nätverksanslutning bör du svara \"Ja\" här. Om nätverket " "är långsamt kan du svara \"Nej\"." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Hittade ingen giltig serverspegel" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -291,11 +296,12 @@ msgstr "" "här kommer det att uppdatera alla \"%s\" till \"%s\".\n" "Om du väljer \"Nej\" kommer uppdateringen avbrytas." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Generera standardkällor?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -308,11 +314,11 @@ msgstr "" "Ska standardposter för \"%s\" läggas till? Om du väljer \"Nej\" kommer " "uppdateringen avbrytas." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Förrådsinformationen är ogiltig" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -320,11 +326,11 @@ msgstr "" "Uppdatering av förrådsinformationen orsakade en ogiltig fil. Rapportera " "detta som ett fel." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Tredjepartskällor inaktiverade" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " @@ -334,11 +340,11 @@ msgstr "" "återaktivera dem efter uppgraderingen med verktyget \"software-properties\" " "eller med Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Fel vid uppdatering" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -347,11 +353,11 @@ msgstr "" "av nätverksproblem, var god kontrollera din nätverksanslutning och försök " "igen." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Inte tillräckligt med ledigt diskutrymme" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -362,15 +368,16 @@ msgstr "" "papperskorg och ta bort temporära paket från tidigare installationer genom " "att använda \"sudo apt-get clean\"." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Vill du starta uppgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Det gick inte att installera uppgraderingarna" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -381,14 +388,14 @@ msgstr "" "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart tillstånd. " "En återhämtning kördes (dpkg --configure -a).\n" "\n" -"Rapportera detta fel mot paketet \"update-manager\" och bifoga filerna i " -"/var/log/dist-upgrade/ i felrapporten." +"Rapportera detta fel mot paketet \"update-manager\" och bifoga filerna i /" +"var/log/dist-upgrade/ i felrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Det gick inte att hämta uppgraderingarna" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -396,11 +403,11 @@ msgstr "" "Uppgraderingen avbryts nu. Var god kontrollera din Internetanslutning eller " "ditt installationsmedia, och försök igen. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Stöd för vissa program har upphört" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -414,23 +421,23 @@ msgstr "" "Om du inte har aktiverat gemenskapsunderhållen programvara (universe), " "kommer dessa paket att föreslås för borttagning i nästa steg." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Ta bort föråldrade paket?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_Hoppa över det här steget" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Ta bort" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "Fel inträffade vid verkställandet" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -438,44 +445,46 @@ msgstr "" "Något fel inträffade vid upprensningen. Se meddelandet nedan för mer " "information. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Återställer ursprungligt systemtillstånd" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "Hämtar bakåtportering av \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Kontrollerar pakethanterare" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "Förberedelse av uppgradering misslyckades" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" "Förberedelse av systemet för uppgraderingen misslyckades. Rapportera det här " -"som ett fel mot paketet \"update-manager\" och inkludera filerna i " -"/var/log/dist-upgrade/ i felrapporten." +"som ett fel mot paketet \"update-manager\" och inkludera filerna i /var/log/" +"dist-upgrade/ i felrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Uppdaterar förrådsinformation" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Ogiltig paketinformation" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -490,22 +499,23 @@ msgstr "" "fel mot paketet \"update-manager\" och bifoga filerna i /var/log/dist-" "upgrade/ i felrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Ber om bekräftelse" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Uppgraderar" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Söker efter föråldrad programvara" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Systemuppdateringen är klar." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -533,6 +543,7 @@ msgstr "Hämtar fil %li av %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Verkställer ändringar" @@ -547,9 +558,10 @@ msgid "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Uppgraderingen avbryter nu. Rapportera detta fel mot paketet \"update-" -"manager\" och bifoga filerna i /var/log/dist-upgrade/ i felrapporten." +"Uppgraderingen avbryter nu. Rapportera detta fel mot paketet \"update-manager" +"\" och bifoga filerna i /var/log/dist-upgrade/ i felrapporten." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -577,17 +589,18 @@ msgstr "Ett ödesdigert fel uppstod" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Rapportera detta som ett fel och bifoga filerna /var/log/dist-" -"upgrade/main.log och /var/log/dist-upgrade/apt.log i din rapport. " -"Uppgraderingen avbryts nu.\n" +"Rapportera detta som ett fel och bifoga filerna /var/log/dist-upgrade/main." +"log och /var/log/dist-upgrade/apt.log i din rapport. Uppgraderingen avbryts " +"nu.\n" "Din ursprungliga sources.list sparades som /etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -632,6 +645,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "Stäng alla öppna program och dokument för att förhindra dataförlust." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -681,6 +695,7 @@ msgid "%li seconds" msgstr "%li sekunder" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -703,6 +718,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -814,6 +830,7 @@ msgstr "Det gick inte att hämta versionsfaktan" msgid "Please check your internet connection." msgstr "Kontrollera din Internetanslutning." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Det gick inte att köra uppgraderingsverktyget" @@ -917,14 +934,17 @@ msgstr "" "Misslyckades med att hämta listan över ändringar. \n" "Kontrollera din Internetanslutning." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Viktiga säkerhetsuppdateringar" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Rekommenderade uppdateringar" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Föreslagna uppdateringar" @@ -937,6 +957,7 @@ msgstr "Bakåtporteringar" msgid "Distribution updates" msgstr "Uppdateringar för utgåva" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Övriga uppdateringar" @@ -958,6 +979,7 @@ msgstr "_Avmarkera allt" msgid "_Check All" msgstr "_Kontrollera alla" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -992,6 +1014,7 @@ msgstr "Från version %(old_version)s till %(new_version)s" msgid "Version %s" msgstr "Version %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1016,6 +1039,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Ny distributionsutgåva \"%s\" finns tillgänglig" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Programindexet är trasigt" @@ -1030,19 +1054,23 @@ msgstr "" "pakethanteraren \"Synaptic\" eller kör \"sudo apt-get install -f\" i en " "terminal för att rätta till det här problemet först." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ingen" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1407,193 +1435,235 @@ msgstr "Fönsterstorleken" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" -msgstr "" -"Konfigurera källorna för installerbara programvaror och uppdateringar" +msgstr "Konfigurera källorna för installerbara programvaror och uppdateringar" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Gemenskapsunderhållen" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Properitära drivrutiner för enheter" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Inskränkt programvara" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Cd-rom med Ubuntu 6.10 \"Edgy Eft\"" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Öppen källkodsprogramvara som stöds av Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Gemenskapsunderhållen (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Öppen källkodsprogramvara underhållen av gemenskapen" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Ickefria drivrutiner" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Properitära drivrutiner för enheter " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Inskränkt programvara (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Programvara begränsad av upphovsrätt eller juridiska avtal" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Cd-rom med Ubuntu 6.06 LTS \"Dapper Drake\"" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Bakåtporterade uppdateringar" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Cd-rom med Ubuntu 5.10 \"Breezy Badger\"" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Säkerhetsuppdateringar" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Uppdateringar" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Bakåtportar" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Cd-rom med Ubuntu 5.04 \"Hoary Hedgehog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Stöds officiellt" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Säkerhetsuppdateringar för Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Uppdateringar för Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Bakåtporteringar för Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Gemenskapsunderhållen (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Ickefri (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Cd-rom med Ubuntu 4.10 \"Warty Warthog\"" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Stöds inte längre officiellt" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Begränsad upphovsrätt" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Säkerhetsuppdateringar för Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Uppdateringar för Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Bakåtporteringar för Ubuntu 4.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Säkerhetsuppdateringar" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testing)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://ftp.se.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (unstable)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "DFSG-kompatibel programvara med icke-fria beroenden" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "Icke-DFSG-kompatibel programvara" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1604,22 +1674,22 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "" #~ "Ett problem uppstod som inte gick att lösa när uppgraderingen beräknades. " #~ "Rapportera detta som ett fel. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "Ditt system innehåller varken ubuntu-desktop, kubuntu-desktop eller edubuntu-" -#~ "desktop och det gick inte att identifiera vilken version av Ubuntu du " -#~ "använder.\n" +#~ "Ditt system innehåller varken ubuntu-desktop, kubuntu-desktop eller " +#~ "edubuntu-desktop och det gick inte att identifiera vilken version av " +#~ "Ubuntu du använder.\n" #~ " Installera ett av dessa paket först med synaptic eller apt-get innan du " #~ "fortsätter." @@ -1629,15 +1699,15 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "synaptic." #~ msgstr "" #~ "Vissa tredjepartskällor i din sources.list blev inaktiverade. Du kan " -#~ "återaktivera dem efter uppgraderingen med verktyget \"software-properties\" " -#~ "eller med synaptic." +#~ "återaktivera dem efter uppgraderingen med verktyget \"software-properties" +#~ "\" eller med synaptic." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." #~ msgstr "" -#~ "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart tillstånd. " -#~ "En återhämtning kördes (dpkg --configure -a)." +#~ "Uppgraderingen avbryts nu. Ditt system kan vara i ett oanvändbart " +#~ "tillstånd. En återhämtning kördes (dpkg --configure -a)." #~ msgid "Some software no longer officially supported" #~ msgstr "Viss programvara stöds inte officiellt längre" @@ -1649,14 +1719,13 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "If you don't have 'universe' enabled these packages will be suggested for " #~ "removal in the next step. " #~ msgstr "" -#~ "Dessa installerade paket har inte längre officiellt stöd, och är nu enbart " -#~ "gemenskapsunderhållna (\"universe\").Om du inte har \"universe\" aktiverat " -#~ "kommer dessa paket föreslås för borttagning i nästa steg. " +#~ "Dessa installerade paket har inte längre officiellt stöd, och är nu " +#~ "enbart gemenskapsunderhållna (\"universe\").Om du inte har \"universe\" " +#~ "aktiverat kommer dessa paket föreslås för borttagning i nästa steg. " #~ msgid "Restoring originale system state" #~ msgstr "Återställer ursprunglig systemstatus" -#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1666,37 +1735,30 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "nödvändiga paketet \"%s\" längre.\n" #~ "Det här tyder på ett allvarligt fel, rapportera detta som ett fel." -#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "Ungefär %li dagar, %li timmar och %li minuter återstår" -#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "Ungefär %li timmar och %li minuter återstår" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Ungefär %li minuter återstår" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Ungefär %li sekunder återstår" #~ msgid "Download is complete" #~ msgstr "Hämtningen är färdig" -#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Hämtar fil %li av %li i %s/s" -#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "Hämtar fil %li av %li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "Uppdateringen avbryts nu. Rapportera detta som ett fel." -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1705,38 +1767,38 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "\"%s\"?" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "Rapportera detta som ett fel och inkludera filerna /var/log/dist-upgrade.log " -#~ "och /var/log/dist-upgrade-apt.log i din rapport. Uppgraderingen avbryts nu.\n" -#~ "Din ursprungliga sources.list sparades i /etc/apt/sources.list.distUpgrade." +#~ "Rapportera detta som ett fel och inkludera filerna /var/log/dist-upgrade." +#~ "log och /var/log/dist-upgrade-apt.log i din rapport. Uppgraderingen " +#~ "avbryts nu.\n" +#~ "Din ursprungliga sources.list sparades i /etc/apt/sources.list." +#~ "distUpgrade." -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s paket kommer att tas bort." #~ msgstr[1] "%s paket kommer att tas bort." -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s nytt paket kommer att installeras." #~ msgstr[1] "%s nya paket kommer att installeras." -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s paket kommer att uppgraderas." #~ msgstr[1] "%s paket kommer att uppgraderas." -#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Du behöver hämta totalt %s." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgstr "" #~ "Uppgraderingen kan ta flera timmar och kan inte avbrytas under tiden." @@ -1749,8 +1811,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "Upgrading to Ubuntu 6.06 LTS" #~ msgstr "" -#~ "Uppgraderar till Ubuntu 6.06 " -#~ "LTS" +#~ "Uppgraderar till Ubuntu 6.06 LTS" #~ msgid "Downloading and installing the upgrades" #~ msgstr "Hämtar och installerar uppgraderingarna" @@ -1759,17 +1821,15 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Uppgraderar Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "" -#~ "Verifieringen av uppgraderingen misslyckades. Det kan vara ett problem med " -#~ "nätverket eller med servern. " +#~ "Verifieringen av uppgraderingen misslyckades. Det kan vara ett problem " +#~ "med nätverket eller med servern. " -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Hämtar fil %li av %li i %s/s" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Hämtar fil %li av %li med okänd hastighet" @@ -1788,13 +1848,13 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Vissa uppdateringar kräver att andra program avinstalleras. Använd " -#~ "funktionen \"Markera alla uppgraderingar\" i pakethanteraren Synaptic eller " -#~ "kör \"sudo apt-get dist-upgrade\" i en terminal för att uppdatera ditt " -#~ "system helt och hållet." +#~ "funktionen \"Markera alla uppgraderingar\" i pakethanteraren Synaptic " +#~ "eller kör \"sudo apt-get dist-upgrade\" i en terminal för att uppdatera " +#~ "ditt system helt och hållet." #~ msgid "The following updates will be skipped:" #~ msgstr "Följande uppdateringar kommer att hoppas över:" @@ -1808,7 +1868,6 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "Show details" #~ msgstr "Visa detaljer" -#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "Ny version: %s (storlek: %s)" @@ -1823,13 +1882,14 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "Du måste leta efter uppdateringar manuellt\n" #~ "\n" -#~ "Ditt system letar inte efter uppdateringar automatiskt. Du kan konfigurera " -#~ "detta beteende i \"System\" -> \"Administration\" -> " +#~ "Ditt system letar inte efter uppdateringar automatiskt. Du kan " +#~ "konfigurera detta beteende i \"System\" -> \"Administration\" -> " #~ "\"Programvaruinställningar\"." #~ msgid "" @@ -1870,8 +1930,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" @@ -1889,16 +1949,17 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Komponenter" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Skriv in hela APT-raden till kanalen du vill lägga till\n" +#~ "Skriv in hela APT-raden till kanalen du vill lägga till\n" #~ "\n" -#~ "APT-raden innehåller typ, plats och komponenter för en kanal, till exempel " -#~ "\"deb http://ftp.debian.org sarge main\"." +#~ "APT-raden innehåller typ, plats och komponenter för en kanal, till " +#~ "exempel \"deb http://ftp.debian.org sarge main\"." #~ msgid "Add Channel" #~ msgstr "Lägg till kanal" @@ -1916,12 +1977,12 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." #~ msgstr "" #~ "Om automatisk kontroll av uppdateringar är inaktiverad behöver du läsa om " -#~ "kanallistan manuellt. Det här alternativet möjliggör att dölja påminnelser " -#~ "som visas i det här läget." +#~ "kanallistan manuellt. Det här alternativet möjliggör att dölja " +#~ "påminnelser som visas i det här läget." #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " @@ -1953,12 +2014,12 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "The upgrade aborts now. Please free at least %s of disk space. Empty your " -#~ "trash and remove temporary packages of former installations using 'sudo apt-" -#~ "get clean'." +#~ "trash and remove temporary packages of former installations using 'sudo " +#~ "apt-get clean'." #~ msgstr "" #~ "Uppdateringen avbryter nu. Vänligen frigör minst %s diskutrymme. Töm din " -#~ "papperskorg och ta bort temporära paket från tidigare installationer genom " -#~ "att köra \"sudo apt-get clean\"." +#~ "papperskorg och ta bort temporära paket från tidigare installationer " +#~ "genom att köra \"sudo apt-get clean\"." #~ msgid "%s remaining" #~ msgstr "%s återstår" @@ -1967,15 +2028,15 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Ingen giltig källa funnen" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "" #~ "Ingen giltig källa för uppdatering hittades när din förrådsinformation " #~ "söktes igenom.\n" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "is now run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery is now run (dpkg --configure -a)." #~ msgstr "" #~ "Uppdateringen avbryts nu. Ditt system kan vara i ett oanvändbart läge. En " #~ "återställning körs nu (dpkg --configure -a)." @@ -1985,8 +2046,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "~/dist-upgrade-apt.log in your report. The upgrade aborts now. " #~ msgstr "" #~ "Var vänlig rapportera detta som en bugg och inkludera filerna ~/dist-" -#~ "upgrade.log och ~/dist-upgrade-apt.log i din rapport. Uppdateringen avbryts " -#~ "nu. " +#~ "upgrade.log och ~/dist-upgrade-apt.log i din rapport. Uppdateringen " +#~ "avbryts nu. " #~ msgid "You can install one update" #~ msgid_plural "You can install %s updates" @@ -2006,17 +2067,17 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "" #~ "Analysing your system\n" #~ "\n" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "Analyserar ditt system\n" #~ "\n" -#~ "Programvaruuppdateringar kan åtgärda fel, eliminera säkerhetshål och ge dig " -#~ "nya funktioner." +#~ "Programvaruuppdateringar kan åtgärda fel, eliminera säkerhetshål och ge " +#~ "dig nya funktioner." #~ msgid "" -#~ "Software updates can correct errors, eliminate security vulnerabilities, and " -#~ "provide new features to you." +#~ "Software updates can correct errors, eliminate security vulnerabilities, " +#~ "and provide new features to you." #~ msgstr "" #~ "Programuppdateringar kan åtgärda fel, eliminera säkerhetshål och ge dina " #~ "program nya funktioner." @@ -2026,22 +2087,22 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "automatically. The software package \"unattended-upgrades\" needs to be " #~ "installed therefor" #~ msgstr "" -#~ "Endast säkerhetsuppdateringar från de officiella Ubuntu-servrarna kommer att " -#~ "installeras automatiskt. Programpaketet \"unattended-upgrades\" behöver " -#~ "därför installeras" +#~ "Endast säkerhetsuppdateringar från de officiella Ubuntu-servrarna kommer " +#~ "att installeras automatiskt. Programpaketet \"unattended-upgrades\" " +#~ "behöver därför installeras" #~ msgid "Sections" #~ msgstr "Avdelningar:" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line contains the type, location and sections of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Skriv in den kompletta APT-raden för kanalen du vill lägga " -#~ "till\n" +#~ "Skriv in den kompletta APT-raden för kanalen du vill lägga till\n" #~ "\n" #~ "APT-raden innehåller typ, plats och avdelningar för kanalen, till exempel " #~ "\"deb http://ftp.debian.org sarge main\"." @@ -2077,8 +2138,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "Need to get the changes from the central server" #~ msgstr "" #~ "Nätverksinställningar\n" -#~ "Använd detta verktyg för att konfigurera det sätt som ditt system kommer åt " -#~ "andra datorer" +#~ "Använd detta verktyg för att konfigurera det sätt som ditt system kommer " +#~ "åt andra datorer" #~ msgid "Show available updates and choose which to install" #~ msgstr "Visa tillgängliga uppdateringar och välj vilka som ska installeras" @@ -2159,7 +2220,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Det går inte att uppgradera alla paket." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Ändringar kunde inte hittas, servern har kanske inte uppdaterats än." +#~ msgstr "" +#~ "Ändringar kunde inte hittas, servern har kanske inte uppdaterats än." #~ msgid "The updates are being applied." #~ msgstr "Uppdateringarna verkställs." @@ -2168,11 +2230,11 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Uppgradering slutförd" #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det andra " -#~ "programmet först." +#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det " +#~ "andra programmet först." #, fuzzy #~ msgid "Updating package list..." @@ -2194,11 +2256,11 @@ msgstr "Icke-DFSG-kompatibel programvara" #, fuzzy #~ msgid "" -#~ "This usually means that another package management application (like apt-get " -#~ "or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-" +#~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det andra " -#~ "programmet först." +#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det " +#~ "andra programmet först." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Initierar och hämtar lista med uppdateringar..." @@ -2354,16 +2416,18 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "Försäkra dig om att du angav e-postadressen och aktiveringskoden korrekt" #~ msgid "" -#~ "Unable to show help because the help files were missing. Please report this " -#~ "to your vendor." +#~ "Unable to show help because the help files were missing. Please report " +#~ "this to your vendor." #~ msgstr "" -#~ "Kan inte visa hjälp eftersom hjälpfilerna saknas. Rapportera detta till din " -#~ "leverantör." +#~ "Kan inte visa hjälp eftersom hjälpfilerna saknas. Rapportera detta till " +#~ "din leverantör." #~ msgid "" -#~ "Unable to show help because there are no applications available to view help." +#~ "Unable to show help because there are no applications available to view " +#~ "help." #~ msgstr "" -#~ "Kan inte visa hjälp eftersom inga program för att visa hjälp är tillgängliga." +#~ "Kan inte visa hjälp eftersom inga program för att visa hjälp är " +#~ "tillgängliga." #~ msgid "Are you sure you want to open %d package information windows?" #~ msgstr "Är du säker på att du vill öppna %d fönster med paketinformation?" @@ -2604,10 +2668,11 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Löser beroenden" #~ msgid "" -#~ "You must agree to the licenses covering this software before installing it." +#~ "You must agree to the licenses covering this software before installing " +#~ "it." #~ msgstr "" -#~ "Du måste acceptera villkoren i licenserna som rör denna programvara innan du " -#~ "kan installera den." +#~ "Du måste acceptera villkoren i licenserna som rör denna programvara innan " +#~ "du kan installera den." #~ msgid "I Agree" #~ msgstr "Jag accepterar" @@ -3108,8 +3173,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Kanalprenumerationer på kanal %s" #~ msgid "" -#~ "You do not have permission to subscribe or unsubscribe from channels. You " -#~ "will be unable to make any changes to the subscriptions." +#~ "You do not have permission to subscribe or unsubscribe from channels. " +#~ "You will be unable to make any changes to the subscriptions." #~ msgstr "" #~ "Du har inte rättighet att prenumerera eller säga upp prenumerationer på " #~ "kanaler. Du kommer inte att kunna göra ändringar i prenumerationer." @@ -3130,8 +3195,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Privilegium" #~ msgid "" -#~ "If you remove superuser privileges from yourself, you will be unable to re-" -#~ "add them.\n" +#~ "If you remove superuser privileges from yourself, you will be unable to " +#~ "re-add them.\n" #~ "\n" #~ "Are you sure you want to do this?" #~ msgstr "" @@ -3253,8 +3318,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Information" #~ msgid "" -#~ "Unable to show help because it was not found or because you don't have any " -#~ "help viewers available." +#~ "Unable to show help because it was not found or because you don't have " +#~ "any help viewers available." #~ msgstr "" #~ "Kan inte visa hjälp eftersom den inte hittades eller eftersom du inte har " #~ "några hjälpvisare tillgängliga." @@ -3364,8 +3429,10 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "Executive Summary" #~ msgstr "Sammanfattning" -#~ msgid "Update packages individually (NOTE: This is an unsupported operation)" -#~ msgstr "Uppdatera paket individuellt (OBSERVERA: Denna operation stöds inte)" +#~ msgid "" +#~ "Update packages individually (NOTE: This is an unsupported operation)" +#~ msgstr "" +#~ "Uppdatera paket individuellt (OBSERVERA: Denna operation stöds inte)" #~ msgid "Actual widget tag" #~ msgstr "Riktig widgettagg" @@ -3509,7 +3576,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Städar upp..." #~ msgid "" -#~ "The packages you requested are being downloaded and installed on your system." +#~ "The packages you requested are being downloaded and installed on your " +#~ "system." #~ msgstr "" #~ "Paketen du begärde håller på att hämtas och installeras på ditt system." @@ -3615,9 +3683,9 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "packages. You must free up some disk space before you can continue. Some " #~ "options include:" #~ msgstr "" -#~ "Du har inte tillräckligt med diskutrymme för att kunna hämta de " -#~ "begärda paketen. Du måste skapa ledigt utrymme innan du kan fortsätta. Det " -#~ "finns en del alternativ:" +#~ "Du har inte tillräckligt med diskutrymme för att kunna hämta " +#~ "de begärda paketen. Du måste skapa ledigt utrymme innan du kan fortsätta. " +#~ "Det finns en del alternativ:" #~ msgid "Removing some packages from your system" #~ msgstr "Tar bort en del paket från ditt system" @@ -3629,13 +3697,14 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Töm din cache." #~ msgid "" -#~ "Warning! There may not be sufficient disk space " -#~ "to install this package, and installation of this package may fail. You " -#~ "should free up some disk space before continuing." +#~ "Warning! There may not be sufficient disk " +#~ "space to install this package, and installation of this package may fail. " +#~ "You should free up some disk space before continuing." #~ msgstr "" #~ "Varning! Det kan finnas otillräckligt med " -#~ "diskutrymme för att installera detta paket, och installation av detta paket " -#~ "kan misslyckas. Du bör skapa en del ledigt diskutrymme innan du fortsätter." +#~ "diskutrymme för att installera detta paket, och installation av detta " +#~ "paket kan misslyckas. Du bör skapa en del ledigt diskutrymme innan du " +#~ "fortsätter." #~ msgid "1 Package" #~ msgstr "1 paket" @@ -3653,24 +3722,25 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "nödvändiga installationer" #~ msgid "Please wait, loading page..." -#~ msgstr "Var vänlig vänta, läser in sidan..." +#~ msgstr "" +#~ "Var vänlig vänta, läser in sidan..." #~ msgid "" #~ "You have no packages from this channel currently installed on your system." #~ msgstr "" -#~ "Du har för närvarande inte några paket från denna kanal installerade på ditt " -#~ "system." +#~ "Du har för närvarande inte några paket från denna kanal installerade på " +#~ "ditt system." #~ msgid "" -#~ "You can visit the channel's about page to " -#~ "get more information about what software is available, or you can go " +#~ "You can visit the channel's about page " +#~ "to get more information about what software is available, or you can go " #~ "directly to the install page to " #~ "install software." #~ msgstr "" -#~ "Du kan besöka kanalens om-sida för att få " -#~ "mer information om vilken programvara som är tillgänglig, eller gå direkt " -#~ "till installationssidan för att " -#~ "installera program." +#~ "Du kan besöka kanalens om-sida för att " +#~ "få mer information om vilken programvara som är tillgänglig, eller gå " +#~ "direkt till installationssidan för " +#~ "att installera program." #~ msgid "View the about page." #~ msgstr "Visa om-sidan." @@ -3682,8 +3752,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Gå tillbaka till sammanfattningen." #~ msgid "" -#~ "You don't have any packages installed from this channel. The following pre-" -#~ "defined sets of packages are available, or you may select individual " +#~ "You don't have any packages installed from this channel. The following " +#~ "pre-defined sets of packages are available, or you may select individual " #~ "packages from the Install page." #~ msgstr "" #~ "Du har inga paket installerade från denna kanal. Följande fördefinierade " @@ -3691,37 +3761,37 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "href=updater:available_page>installationssidan." #~ msgid "" -#~ "To install new software from this channel, visit the install page." +#~ "To install new software from this channel, visit the install page." #~ msgstr "" -#~ "För att installera ny programvara går du till installationssidan." +#~ "För att installera ny programvara går du till installationssidan." #~ msgid "" -#~ "To remove already installed software from this channel, visit the remove page." +#~ "To remove already installed software from this channel, visit the remove page." #~ msgstr "" -#~ "För att ta bort redan installerad programvara från denna kanal går du till " -#~ "borttagningssidan." +#~ "För att ta bort redan installerad programvara från denna kanal går du " +#~ "till borttagningssidan." #~ msgid "Unsubscribe from this channel." #~ msgstr "" -#~ "Säg upp prenumerationen på denna " -#~ "kanal." +#~ "Säg upp prenumerationen på " +#~ "denna kanal." #~ msgid "" -#~ "There is 1 update available in this channel, totalling %s of " -#~ "data to be downloaded." +#~ "There is 1 update available in this channel, totalling %s " +#~ "of data to be downloaded." #~ msgstr "" #~ "Det finns 1 uppdatering tillgänglig i denna kanal, som kräver att " #~ "%s data hämtas." #~ msgid "" -#~ "There are %s updates available in this channel, totalling %s " -#~ "of data to be downloaded." +#~ "There are %s updates available in this channel, totalling %s of data to be downloaded." #~ msgstr "" -#~ "Det finns %s uppdateringar tillgängliga i denna kanal, som kräver att " -#~ "%s data hämtas." +#~ "Det finns %s uppdateringar tillgängliga i denna kanal, som kräver " +#~ "att %s data hämtas." #~ msgid "Essential Updates" #~ msgstr "Nödvändiga uppdateringar" @@ -3753,34 +3823,36 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ "ditt system.

" #~ msgid "" -#~ "

You can go to the Update page to view " -#~ "available updates for your software in this channel, or return to the Summary to view all available updates.

" +#~ "

You can go to the Update page to " +#~ "view available updates for your software in this channel, or return to " +#~ "the Summary to view all available updates." +#~ "

" #~ msgstr "" -#~ "

Du kan gå till uppdateringssidan för " -#~ "att se de uppdateringar till din programvara som finns i denna kanal, eller " -#~ "gå tillbaka till sammanfattningen för att se " -#~ "alla tillgängliga uppdateringar.

" +#~ "

Du kan gå till uppdateringssidan " +#~ "för att se de uppdateringar till din programvara som finns i denna kanal, " +#~ "eller gå tillbaka till sammanfattningen " +#~ "för att se alla tillgängliga uppdateringar.

" #~ msgid "" #~ "

You can go to the Summary to view all " #~ "available updates for your system.

" #~ msgstr "" -#~ "

Du kan gå till sammanfattningen för att " -#~ "se alla uppdateringar som är tillgängliga för ditt system.

" +#~ "

Du kan gå till sammanfattningen för " +#~ "att se alla uppdateringar som är tillgängliga för ditt system.

" #~ msgid "" #~ "The following packages from this channel are available for " #~ "installation." #~ msgstr "" -#~ "Följande paket från denna kanal är tillgängliga för installation." +#~ "Följande paket från denna kanal är tillgängliga för " +#~ "installation." #~ msgid "" -#~ " Package names that are in gray indicate that " -#~ "a newer version of this package is already installed." +#~ " Package names that are in gray indicate " +#~ "that a newer version of this package is already installed." #~ msgstr "" -#~ " Paketnamn som är grå indikerar att en nyare " -#~ "version av detta paket redan är installerat." +#~ " Paketnamn som är grå indikerar att en " +#~ "nyare version av detta paket redan är installerat." #~ msgid "Name:" #~ msgstr "Namn:" @@ -3822,18 +3894,18 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Du prenumererar för närvarande på alla tillgängliga kanaler!" #~ msgid "" -#~ "There is one update available for your system, totalling %s of " -#~ "data to be downloaded." +#~ "There is one update available for your system, totalling %s " +#~ "of data to be downloaded." #~ msgstr "" -#~ "Det finns en uppdatering tillgänglig för ditt system, som kräver att " -#~ "%s data hämtas." +#~ "Det finns en uppdatering tillgänglig för ditt system, som kräver " +#~ "att %s data hämtas." #~ msgid "" -#~ "There are %s updates available for your system, totalling %s " -#~ "of data to be downloaded." +#~ "There are %s updates available for your system, totalling %s of data to be downloaded." #~ msgstr "" -#~ "Det finns %s uppdateringar tillgängliga för ditt system, som kräver " -#~ "att %s data hämtas." +#~ "Det finns %s uppdateringar tillgängliga för ditt system, som " +#~ "kräver att %s data hämtas." #~ msgid " Of these updates, one is urgent." #~ msgstr " Utav dessa uppdateringar är en brådskande." @@ -3851,7 +3923,8 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Synlig felsökningsnivå, går från 0 (ingenting) till 6 (allting)" #~ msgid "Log file debugging level, ranges from 0 (nothing) to 6 (everything)" -#~ msgstr "Felsökningsnivå för loggfil, går från 0 (ingenting) till 6 (allting)" +#~ msgstr "" +#~ "Felsökningsnivå för loggfil, går från 0 (ingenting) till 6 (allting)" #~ msgid "The XAuthority file (usually from GDM)" #~ msgstr "XAuthority-filen (vanligtvis från GDM)" @@ -3870,11 +3943,11 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgstr "Hämtar kanalgrafik..." #~ msgid "" -#~ "An error occurred trying to parse the channel list. You should ensure that " -#~ "you are running a supported distribution and try again later." +#~ "An error occurred trying to parse the channel list. You should ensure " +#~ "that you are running a supported distribution and try again later." #~ msgstr "" -#~ "Ett fel inträffade vid försök att tolka kanallistan. Du bör försäkra dig om " -#~ "att du använder en distribution som stöds och försöka igen senare." +#~ "Ett fel inträffade vid försök att tolka kanallistan. Du bör försäkra dig " +#~ "om att du använder en distribution som stöds och försöka igen senare." #~ msgid "Navigation" #~ msgstr "Navigering" @@ -4080,4 +4153,4 @@ msgstr "Icke-DFSG-kompatibel programvara" #~ msgid "translator-credits" #~ msgstr "" #~ "Christian Rose\n" -#~ "Skicka synpunkter på översättningen till sv@li.org" \ No newline at end of file +#~ "Skicka synpunkter på översättningen till sv@li.org" diff --git a/po/ta.po b/po/ta.po index 9e86e706..ae266cae 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Raghavan \n" "Language-Team: Tamil \n" @@ -55,6 +55,7 @@ msgstr "ஒரு மாதத்திற்க்கு பின்" msgid "After %s days" msgstr "%s நாட்களுக்கு பிறகு" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -120,8 +123,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -158,6 +160,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -170,6 +173,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -192,6 +196,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -205,11 +210,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -219,15 +224,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -235,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -251,11 +256,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -264,44 +270,44 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 #, fuzzy msgid "Error during update" msgstr "புதுப்பிக்கும் பொழுது பிழை ஏற்பட்டுள்ளது" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 #, fuzzy msgid "Not enough free disk space" msgstr "வட்டுவில்் போதுமான காலி இடம் இல்லை" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -309,15 +315,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -326,21 +333,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -349,63 +356,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -415,24 +424,25 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 #, fuzzy msgid "Asking for confirmation" msgstr "உறுதிப்படுத்த கேட்கிறது" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "மேம்படுத்துகிறது" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 #, fuzzy msgid "System upgrade is complete." msgstr "கணிணி மேம்பாடு முடிந்தது." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -460,6 +470,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -475,6 +486,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -499,13 +511,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -545,6 +558,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -592,6 +606,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -612,6 +627,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -718,6 +734,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -807,14 +824,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -827,6 +847,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -848,6 +869,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -882,6 +904,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -903,6 +926,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -914,19 +938,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1253,184 +1281,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "" \ No newline at end of file +msgstr "" diff --git a/po/th.po b/po/th.po index 3707d111..c1891198 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Roys Hengwatanakul \n" "Language-Team: Thai \n" @@ -54,6 +54,7 @@ msgstr "หลังจาก 1 เดือน" msgid "After %s days" msgstr "หลังจาก %s วัน" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s ปรับปรุง" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "เซิร์ฟเวอร์หลัก" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -119,8 +122,7 @@ msgid "Error removing the key" msgstr "มีปัญหาขณะลบกุจแจ" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "กุญแจที่คุณเลือกไม่สามารถลบออกได้ กรุณารายงานว่าเป็นปัญหา" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -151,8 +153,8 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ " -"กรุณาซ่อมโดยใช้โปรแกรม synaptic หรือ apt-get ก่อนดำเนินการต่อไป" +"ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ กรุณาซ่อมโดยใช้โปรแกรม synaptic " +"หรือ apt-get ก่อนดำเนินการต่อไป" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -162,6 +164,7 @@ msgstr "ไม่สามารถปรับปรุง meta แพกเก msgid "A essential package would have to be removed" msgstr "แพจเกจที่สำคัญจะถูกลบออก" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "ไม่สามารถคำนวนการปรับปรุงได้" @@ -178,6 +181,7 @@ msgstr "" "กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และแนบไฟล์ใน /var/log/dist-" "upgrade/ ในรายงานด้วย" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "ไม่ปัญหาในการยืนยันว่าเป็บของจริงสำหรับบางแพกเกจ" @@ -188,9 +192,8 @@ msgid "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"ไม่สามารถที่จะยืนยันความถูกต้องของแพกเกจบางอันได้ " -"นี่อาจจะเกี่ยวกับปัญหาในด้านเครือข่าย คุณอาจจะลองอีกครั้งภายหลังก็ได้ " -"กรุณาตรวจดูรายการของแพกเกจที่ไม่ผ่านการยืนยัน" +"ไม่สามารถที่จะยืนยันความถูกต้องของแพกเกจบางอันได้ นี่อาจจะเกี่ยวกับปัญหาในด้านเครือข่าย " +"คุณอาจจะลองอีกครั้งภายหลังก็ได้ กรุณาตรวจดูรายการของแพกเกจที่ไม่ผ่านการยืนยัน" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -203,6 +206,7 @@ msgid "" "bug. " msgstr "ไม่สามารถที่จะติดตั้งแพกเกจที่ต้องการได้ กรุณารายงานว่าเป็นปัญหา " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "ไม่สามารถเดาเมททาแพกเกจ(meta-package)ได้" @@ -217,14 +221,14 @@ msgid "" msgstr "" "ระบบของคุณไม่มีอูบันตูเดสก์ท็อป คูบันตูเดสก์ท็อป หรือ เอ็ดดูบันตูเดกส์ท็อป " "แพกเกจและไม่สามารถที่จะตรวจสอบได้ว่าคุณใช้อูบันตูรุ่นไหนอยู่\n" -" กรุณาติดตั้งแพกเกจข้างบนอย่างใดอย่างหนึ่งก่อนโดยใช้โปรแกรม synaptic " -"หรือโปรแกรม apt-get ก่อนดำเนินการต่อไป" +" กรุณาติดตั้งแพกเกจข้างบนอย่างใดอย่างหนึ่งก่อนโดยใช้โปรแกรม synaptic หรือโปรแกรม apt-get " +"ก่อนดำเนินการต่อไป" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "ไม่สามารถเพิ่มซีดีได้" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -233,37 +237,35 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"มีปัญหาในการเพิ่มซีดีการปรับปรุงรุ่นจะถูกยกเลิก " -"กรุณารายงานปัญหานี้ถ้าเป็นซีดีที่ถูกต้องของอูบันตู\n" +"มีปัญหาในการเพิ่มซีดีการปรับปรุงรุ่นจะถูกยกเลิก กรุณารายงานปัญหานี้ถ้าเป็นซีดีที่ถูกต้องของอูบันตู\n" "\n" "ปัญหาคือ : \n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "กำลังอ่านจากที่เก็บชั่วคราว" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "ดึงข้อมูลจากเครือข่ายสำหรับปรับปรุงรุ่นหรือไม่?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" -"การปรับปรุงรุ่นสามารถใช้เครือข่ายเพื่อตรวจเช็คว่ามีรุ่นล่าสุดหรือไม่ " -"่และดึงแพ็กเกจอื่นๆที่ไม่อยู่ในแผ่นซีดี\n" -"ถ้าคุณติดต่อเครือข่ายได้โดยไม่เสียค่าใช้จ่ายมาก และมีความเร็วสูงคุณควรจะตอบ " -"'ตกลง' ถ้าค่าใช้จ่ายในการใช้เครือข่ายแพงสำหรับคุณเลือก 'ไม่'" +"การปรับปรุงรุ่นสามารถใช้เครือข่ายเพื่อตรวจเช็คว่ามีรุ่นล่าสุดหรือไม่ ่และดึงแพ็กเกจอื่นๆที่ไม่อยู่ในแผ่นซีดี\n" +"ถ้าคุณติดต่อเครือข่ายได้โดยไม่เสียค่าใช้จ่ายมาก และมีความเร็วสูงคุณควรจะตอบ 'ตกลง' " +"ถ้าค่าใช้จ่ายในการใช้เครือข่ายแพงสำหรับคุณเลือก 'ไม่'" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "ไม่เจอเซิรฟ์เวอร์เสริม(mirror)" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -275,19 +277,18 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" "ไม่เจอรายการของเซิรฟ์เวอร์เสริมสำหรับปรับปรุงขณะที่ตรวจสอบแหล่งข้อมูลของคุณ " -"นี" -"่อาจจะเกิดขึ้นได้ถ้าคุณใช้เซิรฟ์เวอร์เสริมภายในหรือข้อมูลของเซิรฟ์เวอร์เสริม" -"ล้าสมัย\n" +"นี่อาจจะเกิดขึ้นได้ถ้าคุณใช้เซิรฟ์เวอร์เสริมภายในหรือข้อมูลของเซิรฟ์เวอร์เสริมล้าสมัย\n" "\n" -"คุณต้องการที่จะเขียนทับไฟล์ 'sources.list' ของคุณหรือไม่? ถ้าคุณเลือก " -"'Yes' ตรงนี้มันจะถูกปรับปรุงรายการทั้งหมดจาก '%s' to '%s' \n" +"คุณต้องการที่จะเขียนทับไฟล์ 'sources.list' ของคุณหรือไม่? ถ้าคุณเลือก 'Yes' " +"ตรงนี้มันจะถูกปรับปรุงรายการทั้งหมดจาก '%s' to '%s' \n" "ถ้าคุณเลือก 'no' การปรับปรุงจะถูกยกเลิก" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "สร้าง default sources?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -299,22 +300,21 @@ msgstr "" "\n" "ควรเพิ่มรายการสำหรับ '%s' หรือไม่?ถ้าคุณเลือก 'No' การปรับปรุงจะถูกยกเลิก" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "ข้อมูลเกี่ยวกับแหล่งเก็บข้อมูลใช้ไม่ได้" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." -msgstr "" -"การปรับปรุงข้อมูลของแหล่งข้อมูลทำให้ไฟล์เสียหาย กรุณารายงานว่าเป็นปัญหา" +msgstr "การปรับปรุงข้อมูลของแหล่งข้อมูลทำให้ไฟล์เสียหาย กรุณารายงานว่าเป็นปัญหา" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "แหล่งอื่นๆใช้ไม่ได้" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " @@ -324,11 +324,11 @@ msgstr "" "คุณสามารถเปลี่ยนให้ใช้ได้หลังการปรับปรุงด้วยเครื่องมือ 'software-properties' " "หรือด้วยโปรแกรม synaptic" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "เกิดข้อผิดพลาดขณะปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -336,11 +336,11 @@ msgstr "" "มีปัญหาเกิดขึ้นขณะทำการปรับปรุง โดยปกติแล้วจะเป็นปัญหาด้านเครือข่าย " "กรุณาตรวจสอบการสื่อสารในเครือข่ายของคุณแล้วลองใหม่อีกที" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "ไม่มีพื้นที่ว่างในดิสก์เพียงพอ" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -348,18 +348,18 @@ msgid "" "apt-get clean'." msgstr "" "การปรับปรุงถูกยกเลิกแล้ว กรุณาฟรีอย่างน้อย %s ของดิสก์พื้นที่บน %s " -"เทถังขยะทิ้งและลบแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-" -"get clean'" +"เทถังขยะทิ้งและลบแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-get clean'" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "คุณต้องการที่จะเริ่มการปรับปรุงหรือไม่?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "ไม่สามารถปรับปรุงได้" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -367,29 +367,29 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"การปรับปรุงถูกยกเลิก ระบบของคุณอาจจะอยู่ในสภาพที่ไม่มั่นคง " -"โปรแกรมกู้ระบบถูกเรียกใช้ (dpkg --configure -a)\n" +"การปรับปรุงถูกยกเลิก ระบบของคุณอาจจะอยู่ในสภาพที่ไม่มั่นคง โปรแกรมกู้ระบบถูกเรียกใช้ (dpkg --" +"configure -a)\n" "\n" "กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และแนบไฟล์ใน /var/log/dist-" "upgrade/ ในรายงานด้วย" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "ไม่สามารถดาวน์โหลดข้อมูลปรับปรุงรุ่น" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -"การปรับปรุงถูกยกเลิก กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณหรือ " -"installation mediaและลองอีกครั้ง " +"การปรับปรุงถูกยกเลิก กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณหรือ installation " +"mediaและลองอีกครั้ง " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "สนับสนุนสำหรับบางแอพพลิเคชันสิ้นสุดลง" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -397,73 +397,72 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"" -"แพกเกจเหล่านีไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้วและตอนนี้ได้รับสนับสนุนจาก" -"ชุมชน แต่เพียงอย่างเดียว\n" +"แพกเกจเหล่านีไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้วและตอนนี้ได้รับสนับสนุนจากชุมชน " +"แต่เพียงอย่างเดียว\n" "\n" "ถ้าคุณไม่ได้เลือกใช ้แพกเกจเหล่านี้จะถูกแนะนำให้ลบออกในขั้นต่อไป" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "ลบแพจเกจที่ล้าสมัยทิ้งหรือไม่?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "_ข้ามขั้นตอนนี้" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "เ_อาออก" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "เกิดข้อผิดพลาดขณะแก้ไขปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " -msgstr "" -"เกิดปัญหาขึ้นขณะทำการเก็บกวาด " -"กรุณาตรวจสอบข้อความข้างล่างสำหรับรายละเอียดเพิ่มเติม " +msgstr "เกิดปัญหาขึ้นขณะทำการเก็บกวาด กรุณาตรวจสอบข้อความข้างล่างสำหรับรายละเอียดเพิ่มเติม " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "คืนระบบสู่สถานะแรกเริ่ม" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "ดึงพอร์ตย้อนหลังของ '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "กำลังตรวจสอบโปรแกรมจัดการแพกเกจ" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "การเตรียมการปรับปรุงรุ่นมีปัญหา" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -"การเตรียมระบบสำหรับการปรับปรุงรุ่นมีปัญหา กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ " -"'update-manager' และแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" +"การเตรียมระบบสำหรับการปรับปรุงรุ่นมีปัญหา กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-" +"manager' และแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "ปรับปรุงข้อมูลของแหล่งข้อมูล" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "ข้อมูลของแพกเกจไม่ถูกต้อง" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -476,22 +475,23 @@ msgstr "" "นี่แสดงว่าเป็นปัญหาร้ายแรง กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' " "และแนบไฟล์ใน /var/log/dist-upgrade/ กับรายงานด้วย" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "_ถามการยืนยันจากคุณก่อน" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "กำลังปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "ค้นหาซอฟแวร์ที่ล้าสมัย" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "ปรับปรุงระบบเสร็จแล้ว" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -519,6 +519,7 @@ msgstr "กำลังดึงไฟล์ %li จาก %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "กำลังเปลี่ยนแปลง" @@ -533,9 +534,10 @@ msgid "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"การปรับปรุงรุ่นถูกยกเลิกแล้ว กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-" -"manager' และ กรุณาแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" +"การปรับปรุงรุ่นถูกยกเลิกแล้ว กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และ " +"กรุณาแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -549,10 +551,7 @@ msgstr "" msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." -msgstr "" -"" -"คุณจะสูญเสียข้อมูลปรับแต่งที่ได้ทำไว้ในไฟล์ปรับแต่งถ้าคุณเลือกที่จะเปลี่ยนไปใช" -"้ไฟล์รุ่นใหม่กว่านี้" +msgstr "คุณจะสูญเสียข้อมูลปรับแต่งที่ได้ทำไว้ในไฟล์ปรับแต่งถ้าคุณเลือกที่จะเปลี่ยนไปใช้ไฟล์รุ่นใหม่กว่านี้" #: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" @@ -564,17 +563,17 @@ msgstr "เกิดข้อผิดพลาดอย่างร้ายแ #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"กรุณารายงานปัญหานี้และแนบไฟล์ใน /var/log/dist-upgrade/main.log and " -"/var/log/dist-upgrade/apt.log มาในรายงานของคุณด้วย การปรับปรุงถูกยกเลิก\n" -"ไฟล์ sources.list อันเดิมของคุณถูกเก็บไว้ที่ " -"/etc/apt/sources.list.distUpgrade" +"กรุณารายงานปัญหานี้และแนบไฟล์ใน /var/log/dist-upgrade/main.log and /var/log/dist-" +"upgrade/apt.log มาในรายงานของคุณด้วย การปรับปรุงถูกยกเลิก\n" +"ไฟล์ sources.list อันเดิมของคุณถูกเก็บไว้ที่ /etc/apt/sources.list.distUpgrade" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -594,7 +593,7 @@ msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d แพกเกจจะถูกปรับปรุงรุ่น" #: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy +#, fuzzy, python-format msgid "" "\n" "\n" @@ -608,14 +607,13 @@ msgstr "" msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "" -"ดาวน์โหลดและติดตั้งอาจจะใช้เวลานานหลายชั่วโมง " -"และไม่สามารถที่จะยกเลิกได้หลังจากนี้ไป" +msgstr "ดาวน์โหลดและติดตั้งอาจจะใช้เวลานานหลายชั่วโมง และไม่สามารถที่จะยกเลิกได้หลังจากนี้ไป" #: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "เพื่อป้องกันข้อมูลสูญหายกรุณาออกจากทุกโปรแกรมและเอกสารที่เปิดอยู่" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -663,14 +661,15 @@ msgid "%li seconds" msgstr "%li วินาที" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" -"ดาวน์โหลดนี้จะใช้เวลาประมาณ %s ด้วยการสื่อสารแบบ 1Mbit DSL และประมาณ %s " -"ถ้าใช้ 56K โมเดม" +"ดาวน์โหลดนี้จะใช้เวลาประมาณ %s ด้วยการสื่อสารแบบ 1Mbit DSL และประมาณ %s ถ้าใช้ 56K " +"โมเดม" #: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" @@ -679,13 +678,12 @@ msgstr "ต้องเริ่มระบบใหม่" #: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "" -"การปรับปรุงเสร็จสิ้นแล้วและต้องการที่จะเริ่มระบบใหม่ " -"คุณต้องการที่จะทำเดี๋ยวนี้หรือเปล่า?" +msgstr "การปรับปรุงเสร็จสิ้นแล้วและต้องการที่จะเริ่มระบบใหม่ คุณต้องการที่จะทำเดี๋ยวนี้หรือเปล่า?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -700,8 +698,7 @@ msgid "" msgstr "" "ต้องการยกเลิกการปรับปรุงที่กำลังทำอยู่หรือไม่?\n" "\n" -"ระบบอาจจะไม่มั่นคงถ้าคุณยกเลิกการปรับปรุง " -"ขอแนะนำเป็นอย่างยิ่งให้คุณดำเนินการปรับปรุงต่อไป" +"ระบบอาจจะไม่มั่นคงถ้าคุณยกเลิกการปรับปรุง ขอแนะนำเป็นอย่างยิ่งให้คุณดำเนินการปรับปรุงต่อไป" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" @@ -796,6 +793,7 @@ msgstr "ไม่สามารถดาวน์โหลดบันทึก msgid "Please check your internet connection." msgstr "กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "ไม่สามารถเรียกใช้เครื่องมือปรับปรุง" @@ -837,9 +835,7 @@ msgstr "ไม่สามารถเอาออกมาได้" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"ไม่สามารถแกะข้อมูลปรับปรุงออกมาได้ " -"อาจจะเป็นปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " +msgstr "ไม่สามารถแกะข้อมูลปรับปรุงออกมาได้ อาจจะเป็นปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -849,8 +845,7 @@ msgstr "ไม่สามารถตรวจเช็คความถูก msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"ตรวจทานการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิร์ฟเวอร์ " +msgstr "ตรวจทานการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิร์ฟเวอร์ " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -860,15 +855,13 @@ msgstr "ไม่สามารถยืนยันว่าเป็นขอ msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "" -"ยืนยันการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " +msgstr "ยืนยันการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" -"กำลังดาวน์โหลดไฟล์ที่ %(current)li จากทั้งหมด %(total)li ด้วยความเร็ว " -"%(speed)s/s" +"กำลังดาวน์โหลดไฟล์ที่ %(current)li จากทั้งหมด %(total)li ด้วยความเร็ว %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 #, python-format @@ -895,14 +888,17 @@ msgstr "" "ไม่สามารถดาวน์โหลดรายการของการเปลี่ยนแปลง \n" "กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "ปรับปรุงด้านความปลอดภัยที่สำคัญ" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "การปรับปรุงที่แนะนำให้ทำ" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "การปรับปรุงที่เสนอให้ทำ" @@ -915,6 +911,7 @@ msgstr "พอร์ตย้อนหลัง" msgid "Distribution updates" msgstr "ปรับปรุงชุดเผยแพร่" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "_ปรับปรุงอื่นๆ" @@ -937,6 +934,7 @@ msgstr "ไ_ม่เลือกทั้งหมด" msgid "_Check All" msgstr "เ_ลือกทั้งหมด" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -970,6 +968,7 @@ msgstr "จากรุ่นเก่า: %(old_version)s ไปสู่รุ msgid "Version %s" msgstr "รุ่น %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -994,6 +993,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "มีชุดแจกจ่ายใหม่ '%s' " +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "ดัชนีของซอฟแวร์เสียหาย" @@ -1004,23 +1004,26 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"ไม่สามารถที่จะติดตั้งหรือลบออกซอฟแวร์ใดๆ กรุณาใช้โปรแกรมจัดการแพกเกจ " -"\"Synaptic\" หรือ คำสั่ง \"sudo apt-get install -f\" " -"ในเทอร์มินัลเพื่อที่จะแก้ปัญหานี้ก่อน" +"ไม่สามารถที่จะติดตั้งหรือลบออกซอฟแวร์ใดๆ กรุณาใช้โปรแกรมจัดการแพกเกจ \"Synaptic\" หรือ " +"คำสั่ง \"sudo apt-get install -f\" ในเทอร์มินัลเพื่อที่จะแก้ปัญหานี้ก่อน" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "ไม่มี" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1035,8 +1038,8 @@ msgid "" msgstr "" "คุณต้องตรวจหารายการปรับปรุงด้วยตนเอง\n" "\n" -"ระบบของคุณไม่ตรวจหารายการปรับปรุงโดยอัตโนมัตื " -"คุณสามารถปรับแต่งในแหล่งข้อมูลในแถบปรับปรุงทางอินเทอร์เน็ต" +"ระบบของคุณไม่ตรวจหารายการปรับปรุงโดยอัตโนมัตื คุณสามารถปรับแต่งในแหล่งข้อมูลในแถบปรับปรุงทางอินเทอร์เน็ต" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1083,8 +1086,8 @@ msgid "" msgstr "" "ดำเนินการปรับปรุงชุดเผยแพร่ ทำการติดตั้งปรับปรุงมากที่สุดเท่าที่จะทำได้ \n" "\n" -"นี่อาจจะมีเหตุมาจากการปรับปรุงที่ไม่เสร็จสิ้น " -"ซอฟต์แวร์แพ็กเกจที่ไม่สนับสนุนอย่างเป็นทางการ หรือใช้รุ่นที่ยังพัฒนาไม่เสร็จ" +"นี่อาจจะมีเหตุมาจากการปรับปรุงที่ไม่เสร็จสิ้น ซอฟต์แวร์แพ็กเกจที่ไม่สนับสนุนอย่างเป็นทางการ " +"หรือใช้รุ่นที่ยังพัฒนาไม่เสร็จ" #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" @@ -1098,8 +1101,7 @@ msgstr "ซอฟต์แวร์ปรับปรุง" msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "" -"ซอฟแวร์ปรับปรุงแก้ปัญหา,กำจัดจุดอ่อนด้านความปลอดภัยและเพิ่มความสามารถใหม่" +msgstr "ซอฟแวร์ปรับปรุงแก้ปัญหา,กำจัดจุดอ่อนด้านความปลอดภัยและเพิ่มความสามารถใหม่" #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1165,8 +1167,7 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"เพื่อที่จะเพิ่มประสพการณ์ให้แก่ผู้ใช้อูบันตู " -"กรุณาเข้าร่วนในการแข่งขันความนิยม ถ้าคุณร่วมด้วย " +"เพื่อที่จะเพิ่มประสพการณ์ให้แก่ผู้ใช้อูบันตู กรุณาเข้าร่วนในการแข่งขันความนิยม ถ้าคุณร่วมด้วย " "รายการของซอฟต์แวร์ที่ติดตั้งและความถี่ในการเรียกใช้งานจะถูกเก็บไว้ " "และส่งโดยไม่ระบุชื่อไปที่โครงการอูบันตูอาทิตย์ละครั้ง\n" "\n" @@ -1201,10 +1202,7 @@ msgstr "ปรัปรุงทางอินเทอร์เน็ต" msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" -msgstr "" -"" -"การปรับปรุงด้านความปลอดภัยจะติดตั้งโดยอัตโนมัติจากเซิรฟ์เวอร์ทางการของอูบันตูเ" -"ท่านั้น" +msgstr "การปรับปรุงด้านความปลอดภัยจะติดตั้งโดยอัตโนมัติจากเซิรฟ์เวอร์ทางการของอูบันตูเท่านั้น" #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" @@ -1295,11 +1293,10 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"กรุณาเติมให้ครบบรรทัด APT " -"ของแหล่งข้อมูลที่คุณต้องการจะเพิ่ม\n" +"กรุณาเติมให้ครบบรรทัด APT ของแหล่งข้อมูลที่คุณต้องการจะเพิ่ม\n" "\n" -"บรรทัด APT ประกอบด้วย ชนิด,สถานที่,ส่วนประกอบของแหล่งข้อมูล เช่น \"deb " -"http://ftp.debian.org sarge main\"" +"บรรทัด APT ประกอบด้วย ชนิด,สถานที่,ส่วนประกอบของแหล่งข้อมูล เช่น \"deb http://ftp." +"debian.org sarge main\"" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1342,9 +1339,7 @@ msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." msgstr "" -"" -"ตรวจหาโดยอัตโนมัติว่ารุ่นใหม่ของชุดเผยแพร่นี้มีหรือยังและสามารถใช้ปรับปรุงรุ่น" -"ได้(ถ้าเป็นไปได้)" +"ตรวจหาโดยอัตโนมัติว่ารุ่นใหม่ของชุดเผยแพร่นี้มีหรือยังและสามารถใช้ปรับปรุงรุ่นได้(ถ้าเป็นไปได้)" #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" @@ -1356,8 +1351,7 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"ถ้าการตรวจสอบสำหรับปรับปรุงโดยอัตโนมัติถูกปิดไว้ " -"คุณจะต้องโหลดช่องรายการใหม่เอง " +"ถ้าการตรวจสอบสำหรับปรับปรุงโดยอัตโนมัติถูกปิดไว้ คุณจะต้องโหลดช่องรายการใหม่เอง " "ตัวเลือกนี้ทำให้ซ่อนคำเตือนที่จะแสดงในกรณีนี้ได้" #: ../data/update-manager.schemas.in.h:4 @@ -1386,191 +1380,234 @@ msgstr "ขนาดของหน้าต่าง" msgid "Configure the sources for installable software and updates" msgstr "ปรับแต่งแหล่งสำหรับซอฟต์แวร์และปรับปรุงที่ติดตั้งได้" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "อูบันตู 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "ชุมชนดูแล" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "ไดรเวอร์ที่มีกรรมสิทธิ์สำหรับอุปกรณ์" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "ซอฟต์แวร์จำกัดการใช้งาน" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "ซีดีรอมที่มีอูบันตู 6.10 'Edgy Eft'" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "อูบันตู 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "ซอฟต์แบบเปิดเผยสนับสนุนโดย Canonical" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "ชุมชนดูแล (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "ชุมชนดูแล ซอฟต์แวร์แบบเปิดเผย" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "ไดรเวอร์ที่ไม่ฟรี" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "ไดรเวอร์ที่มีกรรมสิทธิ์สำหรับอุปกรณ์ " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "ซอฟต์แวร์จำกัดการใช้งาน(Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "ซอฟต์แวร์นี้มีลิขสิทธ์หรือข้อกฏหมายจำกัดอยู่" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "ซีดีรอมที่มีอูบันตู 6.06 LST 'Dapper Drake'" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "การปรับปรุงแบบย้อนหลัง" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "อูบันตู 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "ซีดีรอมที่มี อูบันตู 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "อูบันตู 5.10 Security Updates" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "อูบันตู 5.10 Updates" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "อูบันตู 5.10 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "อูบันตู 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "ซีดีรอมที่มีอูบันตู 5.04 'Hoary Hedgehog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "สนับสนุนอย่างเป็นทางการ" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "อูบันตู 5.04 ปรับปรุงด้านความปลอดภัย" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "อูบันตู 5.04 ปรับปรุง" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "อูบันตู 5.04 พอร์ตย้อนหลัง" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "อูบันตู 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "ชุมชนดูแล (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "ไม่ฟรี(ลิขสิทธิ์)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "ซีดีรอมที่มีอูบันตู 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "ไม่ได้รับการสนับสนุนอย่างเป็นทางการแล้ว" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "จำกัดลิขสิทธิ์" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "อูบันตู 4.10 ปรับปรุงด้านความปลอดภัย" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "อูบันตู 4.10 ปรับปรุง" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "อูบันตู 4.10 พอร์ตย้อนหลัง" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "เดเบียน 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "เดเบียน 3.1 \"Sarge\" ปรับปรุงด้านความปลอดภัย" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "เดเบียน \"Etch\" (กำลังทดสอบ)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "เดเบียน \"Sid\" (ผันผวน)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "เข้ากับ DFSG ซอฟแวร์แต่ขึ้นอยู่กับไม่ฟรี" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "กำลังดาวน์โหลดไฟล์ %li จาก %li โดยไม่ทราบความเร็ว" @@ -1622,17 +1659,16 @@ msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "การปรับปรุงบางอันต้องการที่จะลบซอฟแวร์ออกอีก กรุณาใช้ตัวเลือก \"Mark All " -#~ "Upgrades\" ของโปรแกรมจัดการแพกเกจ \"Synaptic\" หรือใช้คำสั่ง \"sudo apt-get " -#~ "dist-upgrade\" ในเทอร์มินัล ในการปรับปรุงระบบของคุณให้เสร็จสิ้นสมบรูณ์" +#~ "การปรับปรุงบางอันต้องการที่จะลบซอฟแวร์ออกอีก กรุณาใช้ตัวเลือก \"Mark All Upgrades\" " +#~ "ของโปรแกรมจัดการแพกเกจ \"Synaptic\" หรือใช้คำสั่ง \"sudo apt-get dist-upgrade" +#~ "\" ในเทอร์มินัล ในการปรับปรุงระบบของคุณให้เสร็จสิ้นสมบรูณ์" #~ msgid "The following updates will be skipped:" #~ msgstr "การปรับปรุงต่อไปนี้จะถูกข้ามไป:" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "เหลือประมาณ %li วินาที" @@ -1706,12 +1742,12 @@ msgstr "ไม่เข้ากับ DFSG ซอฟแวร์" #~ msgid "" #~ "The upgrade aborts now. Please free at least %s of disk space. Empty your " -#~ "trash and remove temporary packages of former installations using 'sudo apt-" -#~ "get clean'." +#~ "trash and remove temporary packages of former installations using 'sudo " +#~ "apt-get clean'." #~ msgstr "" #~ "การปรับปรุงถูกยกเลิก กรุณาทำให้มีพื้นที่ว่างในดิสก์อย่างน้อย %s " -#~ "เทถังขยะทิ้งและลบทิ้งแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo " -#~ "apt-get clean'." +#~ "เทถังขยะทิ้งและลบทิ้งแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-get " +#~ "clean'." #~ msgid "%s remaining" -#~ msgstr "%s เหลืออีก" \ No newline at end of file +#~ msgstr "%s เหลืออีก" diff --git a/po/tr.po b/po/tr.po index 3c455939..abc76c88 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Kayra Akman \n" "Language-Team: Turkish \n" @@ -55,6 +55,7 @@ msgstr "Bir ay sonra" msgid "After %s days" msgstr "%s gün sonra" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "%s güncellemeleri" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Ana sunucu" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -113,21 +116,18 @@ msgstr "Seçili dosyayı aktarmada hata" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "" -"Seçili dosya bir GPG anahtar dosyası olmayabilir veya bozuk olabilir." +msgstr "Seçili dosya bir GPG anahtar dosyası olmayabilir veya bozuk olabilir." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Anahtar kaldırmada hata" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." -msgstr "" -"Seçtiğiniz anahtar kaldırılamadı. Lütfen bunu bir hata olarak iletin." +msgid "The key you selected could not be removed. Please report this as a bug." +msgstr "Seçtiğiniz anahtar kaldırılamadı. Lütfen bunu bir hata olarak iletin." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy +#, fuzzy, python-format msgid "" "Error scanning the CD\n" "\n" @@ -165,6 +165,7 @@ msgstr "Gerekli bilgi-paketleri güncelleştirilemiyor" msgid "A essential package would have to be removed" msgstr "Gerekli bir paketin kaldırılması gerekmekte" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Güncelleme hesaplanamadı" @@ -181,6 +182,7 @@ msgstr "" "Lütfen bu hatayı 'update-manager' için bildirin, hata raporuna /var/log/dist-" "upgrade/ konumundaki dosyaları da ekleyin." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Bazı paketlerin doğrulamasında hata" @@ -204,9 +206,9 @@ msgstr "'%s' yüklenemiyor" msgid "" "It was impossible to install a required package. Please report this as a " "bug. " -msgstr "" -"Gerekli bir paket yüklenemedi. Lütfen bunu bir hata olarak bildirin. " +msgstr "Gerekli bir paket yüklenemedi. Lütfen bunu bir hata olarak bildirin. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Meta-paket kestirilemedi" @@ -225,11 +227,11 @@ msgstr "" " Lütfen devam etmeden önce, synaptic veya apt-get kullanarak yukarıdaki " "paketlerden birini kurun." -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "CD eklemede hata" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -244,15 +246,15 @@ msgstr "" "Hata mesajı:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Önbellek okunuyor" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "Yükseltme için veriler ağdan indirilsin mi?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -264,11 +266,11 @@ msgstr "" "Eğer ağa erişiminiz hızlıysa ya da pahalı değilse 'Evet'i seçmelisiniz. Aksi " "halde 'Hayır'ı seçin." -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Geçerli yansı bulunamadı" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -287,11 +289,12 @@ msgstr "" "'Evet'i seçersiniz '%s'den '%s'e kadar olan girdiler güncellenecek.\n" "'Hayır'ı seçerseniz güncelleme iptal edilecek." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Öntanımlı depolar kaydedilsin mi??" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -304,11 +307,11 @@ msgstr "" "'%s' için varsayılan girişler eklensin mi? Eğer 'Hayır'ı seçerseniz, " "güncelleştirme iptal edilecektir." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Depo bilgisi geçersiz" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -316,11 +319,11 @@ msgstr "" "Depo bilgisini güncelleme işlemi geçersiz bir dosya oluşturdu. Lütfen bu " "hatayı bildirin." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Üçüncü parti kaynaklar devredışı bırakıldı" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " @@ -330,11 +333,11 @@ msgstr "" "Yükseltmenin ardından bu girdileri 'software-properties' aracını ya da " "synaptic'i kullanarak tekrar etkinleştirebilirsiniz." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "Güncelleştirme sırasında hata" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -342,11 +345,11 @@ msgstr "" "Güncelleştirme sırasında bir hata oluştu. Bu genellikle bir ağ sorunudur, " "lütfen ağ bağlantınızı kontrol edin ve yeniden deneyin." -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Yeterince boş disk alanı yok" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -357,15 +360,16 @@ msgstr "" "Çöpünüzü boşaltın ve 'sudo apt-get clean' kullanarak önceden kurulumların " "geçici paketlerini kaldırın." -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Yükseltmeyi başlatmak istiyor musunuz?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Yükseltmeler kurulamadı" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -376,14 +380,14 @@ msgstr "" "Yükseltmeden şimdi iptal ediliyor. Sisteminiz kararsız bir durumda olabilir. " "Bir kurtarma işlemi gerçekleştirildi. (dpkg --configure -a).\n" "\n" -"Lütfen 'update-manager' paketi için bu hatayı bildirin. Hata bildirimine " -"/var/log/dist-upgrade/ konumundaki dosyaları da ekleyin." +"Lütfen 'update-manager' paketi için bu hatayı bildirin. Hata bildirimine /" +"var/log/dist-upgrade/ konumundaki dosyaları da ekleyin." -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Yükseltmeler indirilemedi" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +395,11 @@ msgstr "" "Yükseltme şimdi iptal edilecek. Lütfen internet bağlantınızı veya kurulum " "ortamınızı kontrol edin ve yeniden deneyin. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "Bazı uygulamalar için destek sona erdi" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -404,23 +408,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "Kullanılmayan paketler kaldırılsın mı?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "Bu Adımı _Atla" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "_Kaldır" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "İşlem sırasında hata oluştu" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -428,41 +432,43 @@ msgstr "" "Temizleme sırasında bazı sorunlar oluştu. Bilgi için lütfen aşağıdaki mesaja " "bakın. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "Orijinal sistem durumuna geri dönülüyor" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Paket yöneticisi denetleniyor" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Depo bilgileri güncelleniyor" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Geçersiz paket bilgisi" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -477,22 +483,23 @@ msgstr "" "hatayı bildirin. Hata bildiriminize /var/log/dist-upgrade/ konumundaki " "dosyaları da ekleyin." -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Onay isteniyor" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Yükseltiliyor" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Kullanılmayan yazılımlar aranıyor" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Sistem yükseltmesi tamamlandı." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -521,6 +528,7 @@ msgstr "Dosyalar inidiriliyor. İnen: %li Toplam: %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "Değişiklikler uygulanıyor" @@ -539,6 +547,7 @@ msgstr "" "bildirin. Hata bildiriminize /var/log/dist-upgrade/ konumundaki dosyaları da " "ekleyin." +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -564,9 +573,9 @@ msgstr "Giderilemez bir hata oluştu" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Lütfen bu hatayı bildirin. Hata bildiriminize /var/log/dist-upgrade/ " @@ -575,6 +584,7 @@ msgstr "" "kaydedildi." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -617,6 +627,7 @@ msgid "To prevent data loss close all open applications and documents." msgstr "" "Veri kaybını önlemek için açık olan tüm uygulamaları ve belgeleri kapatın." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -666,6 +677,7 @@ msgid "%li seconds" msgstr "%li saniye" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -687,6 +699,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -706,8 +719,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" -"Yükseltmeyi tamamlamak için sistemi yeniden başlatın" +msgstr "Yükseltmeyi tamamlamak için sistemi yeniden başlatın" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" @@ -785,7 +797,7 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" msgstr "" -"Suggestions: \t\t \n" +"Suggestions: \t\t\r\n" "Yayın notları bulunamadı" #: ../UpdateManager/DistUpgradeFetcher.py:69 @@ -800,6 +812,7 @@ msgstr "Yayın notları indirilemedi" msgid "Please check your internet connection." msgstr "İnternet bağlantınızı kontrol ediniz." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "Yükseltme aracı çalıştırılamadı." @@ -842,8 +855,7 @@ msgstr "Çıkarılamadı" msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "" -"Yükseltme çıkarılamadı. Ağ veya sunucu ile ilgili bir sorun olabilir. " +msgstr "Yükseltme çıkarılamadı. Ağ veya sunucu ile ilgili bir sorun olabilir. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -893,14 +905,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Önemli güvenlik güncelleştirmeleri" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Önerilen güncellemeler" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Teklif edilmiş güncellemeler" @@ -913,6 +928,7 @@ msgstr "Backport edilmiş yazılımlar" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Diğer güncellemeler" @@ -934,6 +950,7 @@ msgstr "Hiç_birini Seçme" msgid "_Check All" msgstr "_Hepsini Seç" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -967,6 +984,7 @@ msgstr "" msgid "Version %s" msgstr "Sürüm %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -992,6 +1010,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Yeni dağıtım yayını '%s' ulaşılabilir" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Yazılım dizini bozulmuş" @@ -1006,19 +1025,23 @@ msgstr "" "durumu düzeltmek için öncelikle \"Synaptic\" paket yöneticisini kullanın ya " "da uçbirim penceresine \"sudo apt-get install -f\" komutunu yazıp çalıştırın." +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Hiçbiri" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1040,8 +1063,8 @@ msgstr "Sisteminizi güncel tutun" #, fuzzy msgid "Not all updates can be installed" msgstr "" -"CD taramada hata \n" -" \n" +"CD taramada hata\r\n" +"\r\n" "%s" #: ../data/glade/UpdateManager.glade.h:6 @@ -1374,185 +1397,229 @@ msgstr "Pencere boyutu" msgid "Configure the sources for installable software and updates" msgstr "Kurulabilir yazılım ve güncellemeler için kaynakları yapılandır" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Topluluk tarafından bakılan" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Aygıtlar için kapalı kaynak sürücüler" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Kısıtlı yazılımlar" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft' Cdrom'u" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Topluluk tarafından bakılan (universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Topluluk tarafından bakılan Açık Kaynak Kodlu yazılımlar" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Özgür olmayan sürücüler" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Aygıtlar için lisanslı sürücüler " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "Kısıtlı yazılımlar (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake' Cdrom'u" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Geritaşınmış (backported) güncellemeler" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger' Cdrom'u" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 Güncelleştirmeleri" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 Geritaşınmış Yazılımlar (Backports)" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog' Cdrom'u" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Resmi olarak desteklenenler" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 Güvenlik Güncelleştirmeleri" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 Güncelleştirmeleri" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Geritaşınmış Yazılımlar (Backports)" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Topluluk tarafından bakılan (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Özgür olmayan (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog' Cdrom'u" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Artık resmi olarak desteklenmiyor" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Sınırlı telif hakkı" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 Güvenlik Güncelleştirmeleri" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 Güncelleştirmeleri" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Geritaşınmış Yazılımlar (Backports)" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" Güvenlik Güncelleştirmeleri" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (test)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (kararsız)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "Özgür Olmayan Bağımlılığı Bulunan DFSG Uyumlu Yazılım" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "DFSG Uyumlu Olmayan Yazılım" @@ -1590,4 +1657,4 @@ msgstr "DFSG Uyumlu Olmayan Yazılım" #~ msgstr "Ubuntu 6.06 Güvenlik Güncelleştirmeleri" #~ msgid "Ubuntu 6.06 LTS Security Updates" -#~ msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" \ No newline at end of file +#~ msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" diff --git a/po/uk.po b/po/uk.po index ff1f2a21..56d9a7fc 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: uk(5)\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Vadim Abramchuck \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: KBabel 1.11.2\n" #: ../SoftwareProperties/SoftwareProperties.py:136 @@ -56,6 +56,7 @@ msgstr "Через місяць" msgid "After %s days" msgstr "Через %s днів" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -63,6 +64,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,6 +74,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "Помилка видалення ключа" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -162,6 +164,7 @@ msgstr "Не можливо поновити необхідні meta-пакун msgid "A essential package would have to be removed" msgstr "Це призведе до видалення !essential! пакунку системи" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Не можливо розрахувати поновлення" @@ -174,6 +177,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Помилка підписів в деяких пакунках" @@ -200,6 +204,7 @@ msgid "" msgstr "" "Неможливо встановити необхідний пакунок. Сповістіть про це як про помилку. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Не можливо підібрати meta-пакунок" @@ -213,11 +218,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -227,15 +232,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Зчитування кешу" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -243,11 +248,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "Не знайдено правильного зеркала" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -259,11 +264,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "Створити джерела за замовчуванням?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -272,11 +278,11 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "Помилка в даних про репозиторій" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." @@ -284,33 +290,33 @@ msgstr "" "Поновлення файлу сховищ призвело до пошкодження. Будь ласка, сповістіть про " "це як про помилку." -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 #, fuzzy msgid "Error during update" msgstr "Помилка підчас поновлення" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "Недостатньо місця на диску" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -318,15 +324,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "Бажаєте почати оновлення системи?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "Неможливо провести оновлення системи" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -335,11 +342,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "Неможливо завантажити пакунки для оновлення системи" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -347,11 +354,11 @@ msgstr "" "Оновлення системи щойно перервано. Будь ласка, перевірте з'єднання з " "Інтернетом або зовнішній носії та спробуйте знов. " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -360,24 +367,24 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 #, fuzzy msgid "Remove obsolete packages?" msgstr "Видалити непотрібні пакунки?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "Пропустити цей крок" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "Видалити" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -385,41 +392,43 @@ msgstr "" "При очищенні системи виникли проблеми. Прочитайте детальнішу інформацію " "нижче. " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "Перевірка програми управління пакунками" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "Отримання інформації про репозиторій" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "Невірна інформація про пакунок" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -429,22 +438,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "Запит підтвердження" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "Процес оновлення" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "Пошук програм, що не використовуються" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "Оновлення системи завершено." +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -472,6 +482,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -488,6 +499,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -511,13 +523,14 @@ msgstr "Виникла невиправна помилка" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -558,9 +571,9 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." -msgstr "" -"Для запобігання втраті інформації закрийте усі програми та документи." +msgstr "Для запобігання втраті інформації закрийте усі програми та документи." +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy @@ -574,12 +587,12 @@ msgid "" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:549 -#, fuzzy +#, fuzzy, python-format msgid "Remove %s" msgstr "Видалити %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:551 -#, fuzzy +#, fuzzy, python-format msgid "Install %s" msgstr "Встановити %s" @@ -609,6 +622,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -630,6 +644,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -741,6 +756,7 @@ msgstr "Не вдалося завантажити примітки випуск msgid "Please check your internet connection." msgstr "Будь ласка, перевірте ваше з'єднання з Інтернетом." +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 #, fuzzy msgid "Could not run the upgrade tool" @@ -834,14 +850,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -854,6 +873,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -875,6 +895,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -910,6 +931,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -926,14 +948,15 @@ msgid "" "information on upgrading." msgstr "" "Ви більше не будете отримувати оновлень критичних оновлень та оновлень " -"безпеки. Оновіться до новішої версії Ubuntu Linux. Зайдіть на " -"http://www.ubuntu.com для подальшої інформації про оновлення." +"безпеки. Оновіться до новішої версії Ubuntu Linux. Зайдіть на http://www." +"ubuntu.com для подальшої інформації про оновлення." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -945,19 +968,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1295,190 +1322,233 @@ msgstr "Розмір вікна" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Офіційно підтримуються" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Підтримується спільнотою (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Не-вільний (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Обмежені авторські права" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Оновлення безпеки Debian 3.1 \"Sarge\"" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (тестовий)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (нестабільний)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1489,32 +1559,32 @@ msgstr "" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "" #~ "Під час розрахунку оновлення виникла невиправна помилка. Будь ласка, " #~ "повідомте про це як про помилку програми. " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" #~ "Ваша система не містить пакунків ubuntu-desktop, kubuntu-desktop або " #~ "edubuntu-desktop, через що не вдалося встановити, яку версію ubuntu Ви " #~ "використовуєте.\n" -#~ " Будь ласка, спочатку встановіть один з цих пакетів, використовуючи synaptic " -#~ "або apt-get." +#~ " Будь ласка, спочатку встановіть один з цих пакетів, використовуючи " +#~ "synaptic або apt-get." #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." #~ msgstr "" #~ "Оновлення системи щойно зупинено. Внаслідок цього система може працювати " -#~ "нестабільно. Виконайте команду 'sudo apt-get install -f', або скористайтесь " -#~ "програмою Synaptic для налаштування системи." +#~ "нестабільно. Виконайте команду 'sudo apt-get install -f', або " +#~ "скористайтесь програмою Synaptic для налаштування системи." #~ msgid "Some software no longer officially supported" #~ msgstr "Деяке програмне забезпечення більше офіційно не підтримується" @@ -1523,14 +1593,12 @@ msgstr "" #~ msgid "Restoring originale system state" #~ msgstr "Перезавантаження системи" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "Залишилось близько %li хвилин" #~ msgid "Download is complete" #~ msgstr "Завантадення пакунків завершено" -#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "Завантажується файл %li of %li at %s/s" @@ -1538,7 +1606,6 @@ msgstr "" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку." -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1548,43 +1615,41 @@ msgstr "" #, fuzzy #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" #~ "Будь ласка, повідмте це я помилку, включивши в повідомлення файли ~/dist-" #~ "upgrade.log and ~/dist-upgrade-apt.log . Апргрейд щойно перервано." -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s пакунків буде видалено." #~ msgstr[1] "" #~ msgstr[2] "" -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s пакунків буде встановлено." #~ msgstr[1] "" #~ msgstr[2] "" -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "буде проведено оновлення %s пакунка." #~ msgstr[1] "буде проведено оновлення %s пакунків." #~ msgstr[2] "буде проведено оновлення %s пакунків." -#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "Потрібно завантажити всього %s пакунків." #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgstr "" -#~ "Оновлення може тривати декілька годин; зауважте, що цей процес не може бути " -#~ "перервано протягом усього часу." +#~ "Оновлення може тривати декілька годин; зауважте, що цей процес не може " +#~ "бути перервано протягом усього часу." #~ msgid "Could not find any upgrades" #~ msgstr "Не знайдено пакунків для оновлення" @@ -1632,7 +1697,6 @@ msgstr "" #~ msgid "Show details" #~ msgstr "Показати деталі" -#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "Нова версія: %s (Розмір: %s)" @@ -1667,16 +1731,17 @@ msgstr "" #~ msgstr "Компоненти" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" -#~ "Введіть повний рядок сховища APT, який ви бажаєте додати\n" +#~ "Введіть повний рядок сховища APT, який ви бажаєте додати\n" #~ "\n" -#~ "Рядок APT містить тип, адресу та вміст сховища, наприклад \"deb " -#~ "http://ftp.debian.org sarge main\". Докладні приклади можна знайти у " +#~ "Рядок APT містить тип, адресу та вміст сховища, наприклад \"deb http://" +#~ "ftp.debian.org sarge main\". Докладні приклади можна знайти у " #~ "документації." #~ msgid "Add Channel" @@ -1707,4 +1772,4 @@ msgstr "" #~ msgstr "Оновлення Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Зворотні порти Ubuntu 6.06 LTS" \ No newline at end of file +#~ msgstr "Зворотні порти Ubuntu 6.06 LTS" diff --git a/po/update-manager.pot b/po/update-manager.pot index 67658f1b..60c4647e 100644 --- a/po/update-manager.pot +++ b/po/update-manager.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -210,11 +210,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -224,15 +224,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -240,11 +240,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -257,11 +257,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:266 +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -270,42 +270,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,65 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:576 +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,19 +422,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" @@ -454,7 +454,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -483,28 +483,28 @@ msgid "" msgstr "" #. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -514,28 +514,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -543,39 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -692,6 +692,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -1044,10 +1045,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" diff --git a/po/ur.po b/po/ur.po index f9a2a9ad..3ed34bd9 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-05-19 02:46+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -55,6 +55,7 @@ msgstr "ایک ماھ باد" msgid "After %s days" msgstr "بعد %s دن" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -159,6 +161,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -171,6 +174,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -193,6 +197,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -206,11 +211,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -220,15 +225,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -236,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -252,11 +257,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -265,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -308,15 +314,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -325,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -348,63 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -414,22 +423,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -457,6 +467,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -472,6 +483,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -495,13 +507,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -541,6 +554,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -588,6 +602,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -607,6 +622,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -713,6 +729,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -802,14 +819,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -822,6 +842,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -843,6 +864,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -877,6 +899,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -898,6 +921,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -909,19 +933,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1248,187 +1276,232 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" #~ msgid " " -#~ msgstr " " \ No newline at end of file +#~ msgstr " " diff --git a/po/urd.po b/po/urd.po index b0bbdbf0..bbddfb97 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-10 18:58+0200\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-05-07 01:53+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -211,11 +211,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -225,15 +225,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -241,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -258,11 +258,11 @@ msgid "" msgstr "" #. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:266 +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -271,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:440 +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,65 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:576 +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -423,19 +423,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" @@ -455,7 +455,7 @@ msgid "Fetching file %li of %li at %s/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 -#: ../DistUpgrade/DistUpgradeViewGtk.py:249 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" msgstr "" @@ -484,28 +484,28 @@ msgid "" msgstr "" #. self.expander.set_expanded(True) -#: ../DistUpgrade/DistUpgradeViewGtk.py:202 +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:216 +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:355 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:356 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -515,28 +515,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:487 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:492 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:498 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:503 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -544,39 +544,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:518 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:519 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:537 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:539 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "" @@ -693,6 +693,7 @@ msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" msgstr "" @@ -1045,10 +1046,14 @@ msgid "_Install Updates" msgstr "" #: ../data/glade/UpdateManager.glade.h:25 -msgid "changes" +msgid "_Upgrade" msgstr "" #: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "" diff --git a/po/vi.po b/po/vi.po index 3e3715ab..7111675a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Tran The Trung \n" "Language-Team: Vietnamese \n" @@ -54,6 +54,7 @@ msgstr "Sau một tháng" msgid "After %s days" msgstr "Sau %s ngày" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -115,16 +118,14 @@ msgstr "Gặp lỗi khi nhập tâp tin đã chọn" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." -msgstr "" -"Có lẽ tập tin đã chọn không phai là tập tin khóa GPG, hoặc nó bị hỏng." +msgstr "Có lẽ tập tin đã chọn không phai là tập tin khóa GPG, hoặc nó bị hỏng." #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" msgstr "Gặp lỗi khi gỡ bỏ khóa" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -163,6 +164,7 @@ msgstr "Không thể nâng cấp các gói gốc được yêu cầu" msgid "A essential package would have to be removed" msgstr "Một gói quan trọng cần phải bị gỡ bỏ" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "Không thể tính được dung lượng cần nâng cấp" @@ -176,6 +178,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Gặp lỗi khi đang xác thực một số gói" @@ -202,6 +205,7 @@ msgid "" "bug. " msgstr "Không thể cài đặt được gói yêu cầu. Vui lòng thông báo lỗi này. " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "Không thể đoán được gói gốc" @@ -215,11 +219,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -229,15 +233,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "Đang đọc bộ nhớ đệm" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -245,11 +249,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -261,11 +265,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -274,43 +279,43 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 #, fuzzy msgid "Error during update" msgstr "Gặp lỗi khi gỡ bỏ khóa" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -318,15 +323,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -335,21 +341,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -358,50 +364,52 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 #, fuzzy msgid "Checking package manager" msgstr "Một bộ quản lý gói khác đang chạy" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Đang tải các thay đổi" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -409,15 +417,15 @@ msgid "" "upgrade/ in the bugreport." msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -427,23 +435,24 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 #, fuzzy msgid "Upgrading" msgstr "Nâng cấp xong" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -471,6 +480,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -487,6 +497,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -510,13 +521,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -553,6 +565,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy @@ -601,6 +614,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -620,6 +634,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -728,6 +743,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -825,15 +841,18 @@ msgstr "" "Không tải thay đổi về được. Bạn hãy kiểm tra có kết nối đến Mạng hoạt động " "chưa." +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -849,6 +868,7 @@ msgstr "Bản cập nhật Ubuntu 5.10" msgid "Distribution updates" msgstr "Đang cài đặt bản cập nhật..." +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -872,6 +892,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -902,10 +923,11 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy +#, fuzzy, python-format msgid "Version %s" msgstr "Phiên bản %s:" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -928,6 +950,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -939,19 +962,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1302,211 +1329,256 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 #, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Bản cập nhật Ubuntu 5.10" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "Do cộng đồng bảo quản (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 #, fuzzy msgid "Restricted software" msgstr "Phần mềm đã đóng góp" +#. Description #: ../data/channels/Ubuntu.info.in:25 #, fuzzy msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:59 #, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Bản cập nhật Ubuntu 5.04" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "Do cộng đồng bảo quản (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 #, fuzzy msgid "Community maintained (universe)" msgstr "Do cộng đồng bảo quản (Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 #, fuzzy msgid "Community maintained Open Source software" msgstr "Do cộng đồng bảo quản (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 #, fuzzy msgid "Non-free drivers" msgstr "Không tự do (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 #, fuzzy msgid "Restricted software (Multiverse)" msgstr "Không tự do (Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 #, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Bản cập nhật Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 #, fuzzy msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:123 #, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Bản cập nhật Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:145 #, fuzzy msgid "Ubuntu 5.10 Backports" msgstr "Bản cập nhật Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:152 #, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04" +#. Description #: ../data/channels/Ubuntu.info.in:165 #, fuzzy msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Đĩa CD chứa « Hoary Hedgehog » của Ubuntu 5.04" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 #, fuzzy msgid "Officially supported" msgstr "Được hỗ trợ một cách chính thức" +#. Description #: ../data/channels/Ubuntu.info.in:177 #, fuzzy msgid "Ubuntu 5.04 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Bản cập nhật Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:187 #, fuzzy msgid "Ubuntu 5.04 Backports" msgstr "Bản cập nhật Ubuntu 5.10" +#. Description #: ../data/channels/Ubuntu.info.in:193 #, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Do cộng đồng bảo quản (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "Không tự do (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 #, fuzzy msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Đĩa CD chứa « Warty Warthog » của Ubuntu 4.10" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 #, fuzzy msgid "No longer officially supported" msgstr "Được hỗ trợ một cách chính thức" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "Bản quyền bị giới hạn" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Bản cập nhật bảo mặt Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Bản cập nhật Ubuntu 4.10" +#. Description #: ../data/channels/Ubuntu.info.in:228 #, fuzzy msgid "Ubuntu 4.10 Backports" msgstr "Bản cập nhật Ubuntu 5.10" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 « Sarge »" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 #, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Bản cập nhật bảo mặt ổn định Debian" +#. Description #: ../data/channels/Debian.info.in:34 #, fuzzy msgid "Debian \"Etch\" (testing)" msgstr "Thử ra Debian" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 #, fuzzy msgid "Debian \"Sid\" (unstable)" msgstr "Không Mỹ Debian (Bất định)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1635,12 +1707,12 @@ msgstr "" #~ msgstr "" #~ "Khóa xác thực\n" #~ "\n" -#~ "Bạn có thể thêm và gỡ bỏ khóa xác thực dùng hộp thoại này. Khóa cho phép bạn " -#~ "thẩm tra toàn vẹn của phần mềm đã tải về." +#~ "Bạn có thể thêm và gỡ bỏ khóa xác thực dùng hộp thoại này. Khóa cho phép " +#~ "bạn thẩm tra toàn vẹn của phần mềm đã tải về." #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received the " -#~ "key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received " +#~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" #~ "Thêm tập tin khóa mới vào vòng khóa tin cây. Hãy đảm bảo bạn đã nhận khóa " #~ "này qua kênh bảo mật, và bạn tin cây người sở hữu khóa này. " @@ -1670,11 +1742,11 @@ msgstr "" #~ msgstr "Cỡ tối đa, theo MB:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not change " -#~ "user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not " +#~ "change user installed keys." #~ msgstr "" -#~ "Phục hồi các khóa mặc định có sẵn trong bản phát hành. Tuy nhiên, hành động " -#~ "này sẽ không sửa đổi khóa nào tự cài đặt." +#~ "Phục hồi các khóa mặc định có sẵn trong bản phát hành. Tuy nhiên, hành " +#~ "động này sẽ không sửa đổi khóa nào tự cài đặt." #~ msgid "Set _maximum size for the package cache" #~ msgstr "Đặt cỡ tối _đa cho bộ nhớ tạm gói" @@ -1703,13 +1775,13 @@ msgstr "" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them by " -#~ "using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them " +#~ "by using the Install button." #~ msgstr "" #~ "Bản nâng cấp công bố\n" #~ "\n" -#~ "Tìm thấy có thể nâng cấp những gói theo đây. Để nâng cấp gói, chỉ đơn giản " -#~ "hãy sử dụng nút « Cài đặt »." +#~ "Tìm thấy có thể nâng cấp những gói theo đây. Để nâng cấp gói, chỉ đơn " +#~ "giản hãy sử dụng nút « Cài đặt »." #~ msgid "Cancel downloading the changelog" #~ msgstr "Thôi tải về Bản ghi đổi..." @@ -1765,18 +1837,19 @@ msgstr "" #~ msgstr[0] "Bạn đã chọn tất cả %s gói đã cập nhật: cỡ tổng là %s" #~ msgid "You have selected %s out of %s updated package, size %s" -#~ msgid_plural "You have selected %s out of %s updated packages, total size %s" +#~ msgid_plural "" +#~ "You have selected %s out of %s updated packages, total size %s" #~ msgstr[0] "Bạn đã chọn %s trong %s gói đã cập nhật: cỡ tổng là %s" #~ msgid "The updates are being applied." #~ msgstr "Đang áp dụng những bản cập nhật." #~ msgid "" -#~ "You can run only one package management application at the same time. Please " -#~ "close this other application first." +#~ "You can run only one package management application at the same time. " +#~ "Please close this other application first." #~ msgstr "" -#~ "Bạn có thể chạy chỉ một ứng dụng quản lý gói trong một thời gian thôi. Vui " -#~ "lòng đóng ứng dụng khác trước khi tiếp tục." +#~ "Bạn có thể chạy chỉ một ứng dụng quản lý gói trong một thời gian thôi. " +#~ "Vui lòng đóng ứng dụng khác trước khi tiếp tục." #~ msgid "Updating package list..." #~ msgstr "Đạng cập nhật danh sách gói..." @@ -1789,22 +1862,22 @@ msgstr "" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. Please " -#~ "see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. " +#~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Xin hãy nâng cấp đến một phiên bản Linux Ubuntu mới hơn, vì phiên bản hiện " -#~ "thời của bạn sẽ không còn nhận lại bản cập nhật bảo mật. Hãy xem " +#~ "Xin hãy nâng cấp đến một phiên bản Linux Ubuntu mới hơn, vì phiên bản " +#~ "hiện thời của bạn sẽ không còn nhận lại bản cập nhật bảo mật. Hãy xem " #~ " để tìm thông tin nâng cấp." #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see " -#~ "http://www.ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see http://www." +#~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Có một bản phát hành mới có tên mã « %s ». Hãy xem " -#~ " để tìm hướng dẫn nâng cấp." +#~ "Có một bản phát hành mới có tên mã « %s ». Hãy xem để tìm hướng dẫn nâng cấp." #~ msgid "Never show this message again" #~ msgstr "Đừng hiện thông điệp này lần nữa." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Không tìm thấy thay đổi nào. Có lẽ máy phục vụ chưa được cập nhật." \ No newline at end of file +#~ msgstr "Không tìm thấy thay đổi nào. Có lẽ máy phục vụ chưa được cập nhật." diff --git a/po/xh.po b/po/xh.po index e5270ec4..7e59725b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-05 20:45+0000\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" @@ -55,6 +55,7 @@ msgstr "" msgid "After %s days" msgstr "" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,6 +63,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -71,6 +73,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -121,8 +124,7 @@ msgid "Error removing the key" msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -159,6 +161,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "" @@ -171,6 +174,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -193,6 +197,7 @@ msgid "" "bug. " msgstr "" +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -206,11 +211,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -220,15 +225,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -236,11 +241,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -252,11 +257,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -265,42 +271,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -308,15 +314,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -325,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -348,63 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -414,22 +423,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -457,6 +467,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "" @@ -472,6 +483,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -495,13 +507,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -541,6 +554,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -588,6 +602,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -607,6 +622,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -713,6 +729,7 @@ msgstr "" msgid "Please check your internet connection." msgstr "" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "" @@ -804,15 +821,18 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 #, fuzzy msgid "Important security updates" msgstr "Bonisa izihlaziyo" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 #, fuzzy msgid "Proposed updates" @@ -827,6 +847,7 @@ msgstr "" msgid "Distribution updates" msgstr "Bonisa izihlaziyo" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 #, fuzzy msgid "Other updates" @@ -849,6 +870,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -884,6 +906,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -905,6 +928,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -916,19 +940,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1262,184 +1290,229 @@ msgstr "" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "" @@ -1507,8 +1580,8 @@ msgstr "" #~ msgstr "" #~ "Ulwazi oluhlaziyiweyo\n" #~ "\n" -#~ "Kukho iinkqubo zekhompyutha zasemva kohlaziyo zolwazi olukhoyo. Nceda funda " -#~ "olu lwazi lulandelayo ngocoselelo." +#~ "Kukho iinkqubo zekhompyutha zasemva kohlaziyo zolwazi olukhoyo. Nceda " +#~ "funda olu lwazi lulandelayo ngocoselelo." #~ msgid "Run now" -#~ msgstr "Phumeza inkqubo ngoku" \ No newline at end of file +#~ msgstr "Phumeza inkqubo ngoku" diff --git a/po/zh_CN.po b/po/zh_CN.po index 8510173c..0ff4ebda 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:00+0000\n" "Last-Translator: catinsnow \n" "Language-Team: zh_CN \n" @@ -54,6 +54,7 @@ msgstr "一月后" msgid "After %s days" msgstr "%s天后" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -61,6 +62,7 @@ msgstr "%s 更新" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -70,6 +72,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "主服务器" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -119,8 +122,7 @@ msgid "Error removing the key" msgstr "删除密钥时候出错" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "你所选择的密钥不能被删除。请汇报这个bug" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -150,7 +152,9 @@ msgstr "破损的软件包" msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -msgstr "你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者apt-get修复它们。" +msgstr "" +"你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者" +"apt-get修复它们。" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -160,6 +164,7 @@ msgstr "不能升级要求的元包" msgid "A essential package would have to be removed" msgstr "一个必要的软件包会被删除" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "无法计算升级" @@ -173,8 +178,10 @@ msgid "" msgstr "" "在计算升级时遇到一个无法解决的问题。\n" "\n" -"请汇报这个有关 'update-manager' 的错误,并且将 /var/log/dist-upgrade/ 中的文件包含在错误报告中。" +"请汇报这个有关 'update-manager' 的错误,并且将 /var/log/dist-upgrade/ 中的文" +"件包含在错误报告中。" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "在认证一些软件包时出错" @@ -184,7 +191,9 @@ msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." -msgstr "无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软件包的列表。" +msgstr "" +"无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软" +"件包的列表。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -197,6 +206,7 @@ msgid "" "bug. " msgstr "无法安装要求的软件包。请汇报这个bug。 " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "无法猜出元包" @@ -209,15 +219,15 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"你的系统没有一个ubuntu-desktop,kubuntu-desktop或eubuntu-" -"desktop软件包所以无法确定你运行的ubuntu的版本。\n" +"你的系统没有一个ubuntu-desktop,kubuntu-desktop或eubuntu-desktop软件包所以无法" +"确定你运行的ubuntu的版本。\n" " 请先用新立得或apt-get安装以上所举软件包中的一个。" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "添加CD失败" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -231,15 +241,15 @@ msgstr "" "错误消息是:\n" "'%s'" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "正在读取缓存" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "要从网络获取升级数据吗?" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -249,11 +259,11 @@ msgstr "" "可以从网络检查最新升级,并获取当前CD中没有的软件包。\n" "如果网络带宽足够,请选择'是'。否则选'否'。" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "未找到可用的镜像" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -264,15 +274,17 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"扫描你的源列表时没有找到用于升级的镜像的条目.可能是因为你运行在一个内部的镜像或镜像信息过时了.\n" +"扫描你的源列表时没有找到用于升级的镜像的条目.可能是因为你运行在一个内部的镜像" +"或镜像信息过时了.\n" "一定要重写您的'sources.list'吗?如果选'Yes'将会更新所有'%s'到'%s'条目.\n" "如果选'no'更新将被取消." -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "生成默认的源?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -284,59 +296,63 @@ msgstr "" "\n" "添加用于'%s'的缺省条目?如果选择'No',升级将被取消." -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "源的信息无效" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "升级源的信息时产生一个无效文件。请汇报这个bug。" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "第三方源被禁用" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." -msgstr "sources.list中的一些第三方源被禁用。你可以在升级后用\"软件属性\"工具或新立得包管理器来重新启用它们." +msgstr "" +"sources.list中的一些第三方源被禁用。你可以在升级后用\"软件属性\"工具或新立得" +"包管理器来重新启用它们." -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "升级时出错" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "升级时候出错。这通常是一些网络问题,请检查你的网络连接后再试。" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "磁盘空间不足" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"升级已被取消。请清理出至少%s的空间在%s磁盘上。清空你的回收站并通过'sudo apt-get clean'命令来删除之前安装的临时软件包。" +"升级已被取消。请清理出至少%s的空间在%s磁盘上。清空你的回收站并通过'sudo apt-" +"get clean'命令来删除之前安装的临时软件包。" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "你要开始升级么?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "无法安装升级" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -344,25 +360,27 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"升级现在取消。你的系统可能处于不稳定状态。恢复操作可运行(dpkg --configure -a)。\n" +"升级现在取消。你的系统可能处于不稳定状态。恢复操作可运行(dpkg --configure -" +"a)。\n" "\n" -"请报告本'update-manger'包的bug,并在报告中包含/var/log/disg-upgrade/中的文件。" +"请报告本'update-manger'包的bug,并在报告中包含/var/log/disg-upgrade/中的文" +"件。" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "无法下载升级包" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升级现在取消。请检查你的网络连接活重新放置安装媒体后再试。 " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "一些应用程序支持终止" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -375,49 +393,51 @@ msgstr "" "\n" "如果你没有启用'社区维护'源,下一步这些包将被建议移除." -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "删除陈旧的软件包?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "跳过这个步骤(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "删除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "确认时出错" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "在清理时发生问题。更多信息请查看以下消息。 " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "正在恢复原始系统状态" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "正在检查软件包管理器" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 #, fuzzy msgid "Preparing the upgrade failed" msgstr "正在准备升级" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -425,15 +445,15 @@ msgid "" "upgrade/ in the bugreport." msgstr "在计算升级时遇到一个无法解决的问题。请汇报这个bug。" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "更新源的信息" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "无效的包信息" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -444,24 +464,26 @@ msgid "" msgstr "" "包信息被更新后核心包'%s'没有找到。\n" "\n" -"这表示严重的错误,请报告这个'update-manager'包的bug,并在报告中包含/var/log/dist-upgrade/中的文件。" +"这表示严重的错误,请报告这个'update-manager'包的bug,并在报告中包含/var/log/" +"dist-upgrade/中的文件。" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "请求确认" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "正在更新" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "寻找陈旧的软件包" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "系统更新完毕" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -489,6 +511,7 @@ msgstr "下载第 %li 个文件(共 %li 个文件)" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "正在应用更新" @@ -502,8 +525,11 @@ msgstr "无法安装'%s'" msgid "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." -msgstr "升级中止。请报告本'update-manager'包的bug,度在报告中包含/var/log/dist-upgrade/中的文件。" +msgstr "" +"升级中止。请报告本'update-manager'包的bug,度在报告中包含/var/log/dist-" +"upgrade/中的文件。" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -530,15 +556,17 @@ msgstr "出现致命错误" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 #, fuzzy msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"请报告这个bug并在你的报告中包括文件~/dist-upgrade.log和~/dist-upgrade-apt.log。升级现在取消。\n" +"请报告这个bug并在你的报告中包括文件~/dist-upgrade.log和~/dist-upgrade-apt." +"log。升级现在取消。\n" "你原始的sources.list已保存在/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -578,6 +606,7 @@ msgstr "下载及升级会持续几个小时,且不可取消。" msgid "To prevent data loss close all open applications and documents." msgstr "关闭所有打开的程序和文档以防止数据丢失。" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -625,6 +654,7 @@ msgid "%li seconds" msgstr "%li 秒" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -644,6 +674,7 @@ msgstr "升级已经完成并需要重启。你要现在重启么?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -755,6 +786,7 @@ msgstr "无法下载发行说明" msgid "Please check your internet connection." msgstr "请检查你的互联网连接。" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "不能运行升级工具" @@ -820,12 +852,12 @@ msgid "" msgstr "认证升级信息失败。可能是网络或服务器的问题。 " #: ../UpdateManager/GtkProgress.py:108 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "正在下载文件 %li/%li 速度是 %s/s" #: ../UpdateManager/GtkProgress.py:113 -#, fuzzy +#, fuzzy, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "正在下载文件 %li/%li 速度是 %s/s" @@ -847,14 +879,17 @@ msgid "" "Please check your Internet connection." msgstr "无法下载更新列表。请检查您的网络连接。" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "重要安全更新" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "建议更新" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "建议更新" @@ -868,6 +903,7 @@ msgstr "Backports" msgid "Distribution updates" msgstr "继续升级(_R)" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "其它更新" @@ -890,6 +926,7 @@ msgstr "取消全部(_U)" msgid "_Check All" msgstr "选中全部(_C)" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -914,7 +951,7 @@ msgid "Checking for updates" msgstr "检查更新" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy +#, fuzzy, python-format msgid "From version %(old_version)s to %(new_version)s" msgstr "新版本:%s(大小:%s)" @@ -923,6 +960,7 @@ msgstr "新版本:%s(大小:%s)" msgid "Version %s" msgstr "版本 %s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -938,7 +976,8 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"你将不再获得未来的安全修订或重要更新。升级到更高版本的 Ubuntu Linux。请参见 \n" +"你将不再获得未来的安全修订或重要更新。升级到更高版本的 Ubuntu Linux。请参见" +"\r\n" "http://www.ubuntu.com 来获取更多有关升级的信息。" #: ../UpdateManager/UpdateManager.py:863 @@ -946,6 +985,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "新发行版 '%s' 可用" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "软件索引已被破坏" @@ -956,21 +996,26 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"无法安装或删除任何软件。请使用包管理软件\"synaptic\"或在终端运行\"sudo apt-get install -f\"来修正这个问题。" +"无法安装或删除任何软件。请使用包管理软件\"synaptic\"或在终端运行\"sudo apt-" +"get install -f\"来修正这个问题。" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "无" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -986,7 +1031,8 @@ msgid "" msgstr "" "你必须手动检测升级\n" "\n" -"你的系统未自动检测升级。你可以通过编辑\"系统\" -> \"管理\" -> \"软件性能\"改变." +"你的系统未自动检测升级。你可以通过编辑\"系统\" -> \"管理\" -> \"软件性能\"改" +"变." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1112,7 +1158,8 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"为了提高Ubuntu的用户体验,请参加流行对比。这样,你安装了哪些软件及使用频度每周会被匿名发送给Unbuntu。\n" +"为了提高Ubuntu的用户体验,请参加流行对比。这样,你安装了哪些软件及使用频度" +"每周会被匿名发送给Unbuntu。\n" "\n" "其结果用于流行软件支持及应用软件搜索排名。" @@ -1237,7 +1284,8 @@ msgid "" "example \"deb http://ftp.debian.org sarge main\"." msgstr "" "输入你想增加的完整的频道 APT 命令行\n" -"APT 命令行包含频道的类型,位置和部分,例如:\"deb http://ftp.debian.org sarge main\"。" +"APT 命令行包含频道的类型,位置和部分,例如:\"deb http://ftp.debian.org " +"sarge main\"。" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1291,7 +1339,9 @@ msgid "" "If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." -msgstr "如果自动检查更新被禁用,你将不得不手动重载频道列表。本选项允许隐藏此种情况下要出现的提醒语。" +msgstr "" +"如果自动检查更新被禁用,你将不得不手动重载频道列表。本选项允许隐藏此种情况下" +"要出现的提醒语。" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1320,188 +1370,232 @@ msgstr "窗口大小" msgid "Configure the sources for installable software and updates" msgstr "设定可安装和升级的源" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 #, fuzzy msgid "Community maintained" msgstr "社区维护(Universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "设备的专有驱动" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "受限软件" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft' 光盘" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 #, fuzzy msgid "Canonical supported Open Source software" msgstr "社区维护(Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "社区维护(universe)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "社区维护开源软件" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "非自由驱动" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "设备的属性驱动 " +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "受限软件(Multiverse)" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake' 光盘" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Backported 更新" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger' 光盘" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 安全更新" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 更新" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 移植" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'光盘" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "官方支持" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 安全更新" +#. Description #: ../data/channels/Ubuntu.info.in:182 #, fuzzy msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.10 更新" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 Backports" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "社区维护" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'光盘" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "官方不再支持" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版权限制" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 安全更新" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 更新" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 Backports" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" 安全更新" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (测试)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (非稳定)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "带有非自由依赖关系的DFSG兼容软件" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "非DFSG兼容软件" @@ -1509,7 +1603,6 @@ msgstr "非DFSG兼容软件" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "受到版权或法律问题限制的软件" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "正在下载文件 %li/%li 速度未知" @@ -1531,7 +1624,8 @@ msgstr "非DFSG兼容软件" #, fuzzy #~ msgid "" #~ "Upgrading to Ubuntu 6.10" -#~ msgstr "正在升级到 Ubuntu 6.06 LTS" +#~ msgstr "" +#~ "正在升级到 Ubuntu 6.06 LTS" #, fuzzy #~ msgid "Important security updates of Ubuntu" @@ -1559,16 +1653,15 @@ msgstr "非DFSG兼容软件" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "一些更新包要求删除更多的软件。用包管理器 “Synaptic” 的“标出所有更新”功能并运行 “sudo apt-get dist-" -#~ "upgrade”来彻底更你新的系统。" +#~ "一些更新包要求删除更多的软件。用包管理器 “Synaptic” 的“标出所有更新”功能并" +#~ "运行 “sudo apt-get dist-upgrade”来彻底更你新的系统。" #~ msgid "The following updates will be skipped:" #~ msgstr "将跳过以下的升级包" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "大约还要%li秒" @@ -1641,8 +1734,8 @@ msgstr "非DFSG兼容软件" #~ msgstr "Ubuntu 6.06 LTS 后备支持" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade was " -#~ "found.\n" +#~ "While scaning your repository information no valid entry for the upgrade " +#~ "was found.\n" #~ msgstr "在检查你的源的信息时未能找到有效的升级记录\n" #~ msgid "Repositories changed" @@ -1754,4 +1847,4 @@ msgstr "非DFSG兼容软件" #~ msgstr "CD" #~ msgid "Non-free software" -#~ msgstr "非自由软件" \ No newline at end of file +#~ msgstr "非自由软件" diff --git a/po/zh_HK.po b/po/zh_HK.po index 65d2dc88..983ec483 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (Hong Kong) \n" @@ -53,6 +53,7 @@ msgstr "一個月後" msgid "After %s days" msgstr "%s 日後" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -60,6 +61,7 @@ msgstr "" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -69,6 +71,7 @@ msgstr "" msgid "Main server" msgstr "" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -118,8 +121,7 @@ msgid "Error removing the key" msgstr "移除密碼匙時發生錯誤" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "你選定的密碼匙無法移除,請匯報問題。" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -146,7 +148,9 @@ msgstr "不完整套件" msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -msgstr "系統裝了不完整的套件,本程式無法將它們修復。請先用 synaptic 或 apt-get 來修復套件。" +msgstr "" +"系統裝了不完整的套件,本程式無法將它們修復。請先用 synaptic 或 apt-get 來修復" +"套件。" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -156,6 +160,7 @@ msgstr "" msgid "A essential package would have to be removed" msgstr "" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "無法計算升級過程" @@ -168,6 +173,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "" @@ -177,7 +183,9 @@ msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." -msgstr "有些套件不能認證,這可能是短暫的網絡問題;你可以稍後再試。以下為沒有認證的套件。" +msgstr "" +"有些套件不能認證,這可能是短暫的網絡問題;你可以稍後再試。以下為沒有認證的套" +"件。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -190,6 +198,7 @@ msgid "" "bug. " msgstr "有必須的套件無法安裝,請匯報問題。 " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "" @@ -203,11 +212,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -217,15 +226,15 @@ msgid "" "'%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "正在讀取快取資料" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -233,11 +242,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "找不到有效的 mirror 網站" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -249,11 +258,12 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -262,42 +272,42 @@ msgid "" "cancel." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "套件庫資料無效" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "停用外來的軟件來源" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "更新時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "磁碟空間不足" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -305,15 +315,16 @@ msgid "" "apt-get clean'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "是否要開始升級?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "無法安裝升級" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -322,21 +333,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "無法下載升級所需的套件" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升級現正中止。請檢查網路連線是否正常,然後再試一次。 " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -345,63 +356,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "是否移除過時的套件?" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "略過這步驟(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "移除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "正在檢查套件管理程式" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "正在更新套件庫資料" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "套件資料無效" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -411,22 +424,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "升級中" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "正在搜尋過時的軟件" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "已完成系統升級。" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -454,6 +468,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 #, fuzzy msgid "Applying changes" @@ -470,6 +485,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -493,13 +509,14 @@ msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -536,6 +553,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -583,6 +601,7 @@ msgid "%li seconds" msgstr "" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -602,6 +621,7 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -708,6 +728,7 @@ msgstr "無法下載發行通告" msgid "Please check your internet connection." msgstr "請檢查網絡連線是否正常。" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "無法執行升級工具" @@ -797,14 +818,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -817,6 +841,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "" @@ -838,6 +863,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -871,6 +897,7 @@ msgstr "" msgid "Version %s" msgstr "" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -893,6 +920,7 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "" @@ -904,19 +932,23 @@ msgid "" "this issue at first." msgstr "" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1248,190 +1280,233 @@ msgstr "視窗大小" msgid "Configure the sources for installable software and updates" msgstr "" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "正式支援" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "協力維護軟件 (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由軟件 (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版權受限" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1「Sarge」" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1「Sarge」安全性更新" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian 「Etch」(測試版)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "ftp://ftp.hk.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian 「Sid」(不穩定版)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "符合 DFSG 的軟件,但依賴於非自由軟件" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "和 DFSG 不相容的軟件" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1442,19 +1517,19 @@ msgstr "和 DFSG 不相容的軟件" #~ "%s" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "計算升級時發生無法解決的問題,請匯報問題。 " #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "系統沒有安裝 ubuntu-desktop、kubuntu-desktop 或 edubuntu-desktop 套件,因此無法偵測正在執行哪一個版本的 " -#~ "ubuntu。\n" +#~ "系統沒有安裝 ubuntu-desktop、kubuntu-desktop 或 edubuntu-desktop 套件,因" +#~ "此無法偵測正在執行哪一個版本的 ubuntu。\n" #~ "請先使用 synaptic 或 apt-get 安裝上述其中一個套件。" #~ msgid "" @@ -1462,13 +1537,15 @@ msgstr "和 DFSG 不相容的軟件" #~ "enable them after the upgrade with the 'software-properties' tool or with " #~ "synaptic." #~ msgstr "" -#~ "sources.list 中部份外來的套件來源已經被停用。系統升級後,你可以使用「software-properties」工具或 synaptic " -#~ "重新啟用這些來源。" +#~ "sources.list 中部份外來的套件來源已經被停用。系統升級後,你可以使用" +#~ "「software-properties」工具或 synaptic 重新啟用這些來源。" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." -#~ msgstr "升級中止。你的系統現在可能在一個不穩定的狀態。正在進行復原 (dpkg --configure -a)。" +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." +#~ msgstr "" +#~ "升級中止。你的系統現在可能在一個不穩定的狀態。正在進行復原 (dpkg --" +#~ "configure -a)。" #~ msgid "Some software no longer officially supported" #~ msgstr "某些軟件不會再有正式支援" @@ -1476,33 +1553,27 @@ msgstr "和 DFSG 不相容的軟件" #~ msgid "Restoring originale system state" #~ msgstr "恢復原來的系統狀態" -#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 天 %li 小時 %li 分鐘" -#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 小時 %li 分鐘" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "大約還剩下 %li 分鐘" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "大約還剩下 %li 秒鐘" #~ msgid "Download is complete" #~ msgstr "下載完成" -#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "正在下載檔案 %li/%li" #~ msgid "The upgrade aborts now. Please report this bug." #~ msgstr "升級現正中止,請匯報問題。" -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1510,17 +1581,14 @@ msgstr "和 DFSG 不相容的軟件" #~ "取代設定檔\n" #~ "「%s」?" -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "準備移除 %s 個套件。" -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "準備安裝 %s 個新套件。" -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "準備升級 %s 個套件。" @@ -1532,15 +1600,13 @@ msgstr "和 DFSG 不相容的軟件" #~ msgstr "正在升級 Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "檢驗升級套件失敗。可能是因為網路或伺服器出現問題。 " -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "正在下載檔案 %li/%li,下載速度為 %s/秒" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "正在下載檔案 %li/%li,下載速度不明" @@ -1557,11 +1623,12 @@ msgstr "和 DFSG 不相容的軟件" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "有一些更新套件需要移除其它套件才可以安裝。請使用「Synaptic 套件管理程式」的「標記所有升級」功能或在終端機中執行「sudo apt-get " -#~ "dist-upgrade」來更新整個系統。" +#~ "有一些更新套件需要移除其它套件才可以安裝。請使用「Synaptic 套件管理程式」" +#~ "的「標記所有升級」功能或在終端機中執行「sudo apt-get dist-upgrade」來更新" +#~ "整個系統。" #~ msgid "The following updates will be skipped:" #~ msgstr "會略過更新以下套件:" @@ -1604,16 +1671,16 @@ msgstr "和 DFSG 不相容的軟件" #, fuzzy #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." #~ msgstr "" #~ "請輸入整行你想加入的 APT 軟件庫位置\n" #~ "\n" -#~ "該行的內容包括 APT 軟件庫的類型、位置和內容,例如: \"deb http://ftp.debian.org sarge " -#~ "main\"。你可以在文件中尋找有關該行的格式的詳細描述。" +#~ "該行的內容包括 APT 軟件庫的類型、位置和內容,例如: \"deb http://ftp." +#~ "debian.org sarge main\"。你可以在文件中尋找有關該行的格式的詳細描述。" #~ msgid "Edit Channel" #~ msgstr "修改套件來源" @@ -1642,4 +1709,4 @@ msgstr "和 DFSG 不相容的軟件" #, fuzzy #~ msgid "Ubuntu 6.06 LTS Backports" -#~ msgstr "Ubuntu 5.10 更新" \ No newline at end of file +#~ msgstr "Ubuntu 5.10 更新" diff --git a/po/zh_TW.po b/po/zh_TW.po index 821fbf00..68e961d4 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"POT-Creation-Date: 2006-10-16 20:32+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: SOC Ho \n" "Language-Team: Chinese (Taiwan) \n" @@ -49,6 +49,7 @@ msgstr "一個月後" msgid "After %s days" msgstr "%s 天過後" +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -56,8 +57,9 @@ msgstr "%s 更新" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 -#, fuzzy +#, fuzzy, python-format msgid "%s (%s)" msgstr "%s (%s)" @@ -65,6 +67,7 @@ msgstr "%s (%s)" msgid "Main server" msgstr "主要伺服器" +#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -114,8 +117,7 @@ msgid "Error removing the key" msgstr "移除金鑰時發生錯誤" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "" -"The key you selected could not be removed. Please report this as a bug." +msgid "The key you selected could not be removed. Please report this as a bug." msgstr "您選定的金鑰無法移除,請匯報問題。" #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -142,7 +144,9 @@ msgstr "不完整套件" msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -msgstr "您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 synaptic 或 apt-get 來修恢它們。" +msgstr "" +"您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 " +"synaptic 或 apt-get 來修恢它們。" #: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" @@ -152,6 +156,7 @@ msgstr "無法升級須要的元套件 (meta-package)" msgid "A essential package would have to be removed" msgstr "將會移除的核心套件" +#. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" msgstr "無法計算升級" @@ -164,6 +169,7 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. FIXME: maybe ask a question here? instead of failing? #: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "認證一些套件時發生錯誤" @@ -173,7 +179,9 @@ msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." -msgstr "一些套件不能認證,這可能是由於短暫的網路問題;您可以稍後再試。以下為沒有認證的套件。" +msgstr "" +"一些套件不能認證,這可能是由於短暫的網路問題;您可以稍後再試。以下為沒有認證" +"的套件。" #: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format @@ -186,6 +194,7 @@ msgid "" "bug. " msgstr "無法安裝須要的套件,請匯報問題。 " +#. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" msgstr "無法估計元套件 (meta-package)" @@ -199,11 +208,11 @@ msgid "" "before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:74 +#: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" msgstr "無法加入光碟" -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:76 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -212,20 +221,21 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" -"在加入光碟時有錯誤產升,升級將終止。若此光碟為一個有效的ubuntu光碟,請將此舉報為臭蟲。\n" +"在加入光碟時有錯誤產升,升級將終止。若此光碟為一個有效的ubuntu光碟,請將此舉" +"報為臭蟲。\n" "\n" "錯誤訊息為:\n" "「%s」" -#: ../DistUpgrade/DistUpgradeControler.py:107 +#: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" msgstr "正在讀取快取" -#: ../DistUpgrade/DistUpgradeControler.py:155 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -233,11 +243,11 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:248 +#: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" msgstr "找不到有效的 mirror" -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -248,16 +258,19 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"掃描你的套件庫資訊時,找不到任何 mirror。這可能在你使用內部 mirror 或 mirror 資訊已經過時的時候發生。\n" +"掃描你的套件庫資訊時,找不到任何 mirror。這可能在你使用內部 mirror 或 mirror " +"資訊已經過時的時候發生。\n" "\n" -"是否無論如何都要重新寫入 'sources.list'? 如果選擇「是」,將會更新所有 '%s' 到 '%s'。\n" +"是否無論如何都要重新寫入 'sources.list'? 如果選擇「是」,將會更新所有 '%s' " +"到 '%s'。\n" "如果選擇「否」,則更新會被取消。" -#: ../DistUpgrade/DistUpgradeControler.py:266 +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" msgstr "產生預設的來源?" -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -269,59 +282,61 @@ msgstr "" "\n" "需要加入預設的 '%s' 項目嗎?如果你選擇「否」,更新將會被取消。" -#: ../DistUpgrade/DistUpgradeControler.py:301 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" msgstr "無效的套件庫資料" -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "升級套件庫時導致無效的檔案。請匯報問題。" -#: ../DistUpgrade/DistUpgradeControler.py:308 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "停用第三方來源" -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:358 +#: ../DistUpgrade/DistUpgradeControler.py:363 msgid "Error during update" msgstr "更新時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:359 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "更新時發生錯誤。這可能是某些網路問題,試檢查網路連線及再試。" -#: ../DistUpgrade/DistUpgradeControler.py:368 +#: ../DistUpgrade/DistUpgradeControler.py:373 msgid "Not enough free disk space" msgstr "磁碟空間不足" -#: ../DistUpgrade/DistUpgradeControler.py:369 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"升級中止。請至少空出 %s 的磁碟空間 (從%s上)。 清空垃圾桶及使用 'sudo apt-get clean'來移除先前安裝套件時的暫存檔。" +"升級中止。請至少空出 %s 的磁碟空間 (從%s上)。 清空垃圾桶及使用 'sudo apt-get " +"clean'來移除先前安裝套件時的暫存檔。" -#: ../DistUpgrade/DistUpgradeControler.py:440 +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:445 msgid "Do you want to start the upgrade?" msgstr "是否要開始升級?" -#: ../DistUpgrade/DistUpgradeControler.py:460 +#: ../DistUpgrade/DistUpgradeControler.py:465 msgid "Could not install the upgrades" msgstr "無法安裝升級" -#: ../DistUpgrade/DistUpgradeControler.py:461 +#: ../DistUpgrade/DistUpgradeControler.py:466 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -330,21 +345,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:479 +#: ../DistUpgrade/DistUpgradeControler.py:484 msgid "Could not download the upgrades" msgstr "無法下載升級套件" -#: ../DistUpgrade/DistUpgradeControler.py:480 +#: ../DistUpgrade/DistUpgradeControler.py:485 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升級現正中止。請檢查網路連線是否正常及再試 " -#: ../DistUpgrade/DistUpgradeControler.py:516 +#: ../DistUpgrade/DistUpgradeControler.py:521 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:517 +#: ../DistUpgrade/DistUpgradeControler.py:522 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -353,63 +368,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:552 +#: ../DistUpgrade/DistUpgradeControler.py:557 msgid "Remove obsolete packages?" msgstr "移除不再使用的套件" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Skip This Step" msgstr "略過這步驟(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:553 +#: ../DistUpgrade/DistUpgradeControler.py:558 msgid "_Remove" msgstr "移除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:563 +#: ../DistUpgrade/DistUpgradeControler.py:568 msgid "Error during commit" msgstr "提交時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:564 +#: ../DistUpgrade/DistUpgradeControler.py:569 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "在清理時發生一些問題。請參閱以下訊息以取得更多資訊。 " -#: ../DistUpgrade/DistUpgradeControler.py:576 +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:581 msgid "Restoring original system state" msgstr "回覆原有系統狀態" -#: ../DistUpgrade/DistUpgradeControler.py:632 +#: ../DistUpgrade/DistUpgradeControler.py:637 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#: ../DistUpgrade/DistUpgradeControler.py:667 -#: ../DistUpgrade/DistUpgradeControler.py:709 +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:714 msgid "Checking package manager" msgstr "正在檢查套件管理程式" -#: ../DistUpgrade/DistUpgradeControler.py:671 +#: ../DistUpgrade/DistUpgradeControler.py:676 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:672 +#: ../DistUpgrade/DistUpgradeControler.py:677 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:695 +#: ../DistUpgrade/DistUpgradeControler.py:700 msgid "Updating repository information" msgstr "正在更新套件庫資料" -#: ../DistUpgrade/DistUpgradeControler.py:720 +#: ../DistUpgrade/DistUpgradeControler.py:725 msgid "Invalid package information" msgstr "無效的套件資訊" -#: ../DistUpgrade/DistUpgradeControler.py:721 +#: ../DistUpgrade/DistUpgradeControler.py:726 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -419,22 +436,23 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:733 +#: ../DistUpgrade/DistUpgradeControler.py:738 msgid "Asking for confirmation" msgstr "詢問以確認" -#: ../DistUpgrade/DistUpgradeControler.py:737 +#: ../DistUpgrade/DistUpgradeControler.py:742 msgid "Upgrading" msgstr "升級中" -#: ../DistUpgrade/DistUpgradeControler.py:744 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "Searching for obsolete software" msgstr "尋搜不再使用的套件" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "System upgrade is complete." msgstr "系統升級完成。" +#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" @@ -462,6 +480,7 @@ msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" msgstr "正在套用變更" @@ -477,6 +496,7 @@ msgid "" "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -500,13 +520,14 @@ msgstr "發生嚴重錯誤" #: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-" -"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " -"upgrade aborts now.\n" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." @@ -546,6 +567,7 @@ msgstr "" msgid "To prevent data loss close all open applications and documents." msgstr "避免遺失請關閉所有已開啟的程式及文件。" +#. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" @@ -593,6 +615,7 @@ msgid "%li seconds" msgstr "%li秒" #. 56 kbit +#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" @@ -612,6 +635,7 @@ msgstr "升級已經完成及須要重新啟動。現在要重新啟動嗎?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) +#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -721,6 +745,7 @@ msgstr "無法下載發行說明" msgid "Please check your internet connection." msgstr "請檢查您的網路連線。" +#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" msgstr "無法執行升級工具" @@ -810,14 +835,17 @@ msgid "" "Please check your Internet connection." msgstr "" +#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "重要的安全更新" +#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "建議的安全更新" +#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "" @@ -830,6 +858,7 @@ msgstr "" msgid "Distribution updates" msgstr "" +#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "其他更新" @@ -851,6 +880,7 @@ msgstr "" msgid "_Check All" msgstr "" +#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -884,6 +914,7 @@ msgstr "" msgid "Version %s" msgstr "版本%s" +#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -899,13 +930,15 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"您不會再取得任何安全或重大更新,請升級到最新版本的 Ubuntu Linux。請參閱 http://www.ubuntu.com以取得更多升級資訊。" +"您不會再取得任何安全或重大更新,請升級到最新版本的 Ubuntu Linux。請參閱 " +"http://www.ubuntu.com以取得更多升級資訊。" #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" msgstr "有新的 distribution 發行版 '%s'" +#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "軟體索引損壞" @@ -916,22 +949,27 @@ msgid "" "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"不能安裝或移除任何套件。請先使用套件管理程式“Synaptic”或在終端機中執行“sudo apt-get install -f”來修正問題。" +"不能安裝或移除任何套件。請先使用套件管理程式“Synaptic”或在終端機中執行“sudo " +"apt-get install -f”來修正問題。" +#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 #, fuzzy msgid "None" msgstr "無下載" +#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 KB" +#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f KB" +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1260,185 +1298,229 @@ msgstr "視窗大小" msgid "Configure the sources for installable software and updates" msgstr "設置可安裝的軟體及更新部份之來源。" +#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "" -"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 'Edgy Eft'的光碟" +#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" msgstr "" +#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "含Ubuntu 6.06 LTS 'Dapper Drake'之光碟" +#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'" +#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 'Breezy Badger'的光碟" +#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10安全性更新" +#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10更新" +#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'" +#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 'Hoary Hedgehog'的光碟" +#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "官方支援" +#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04安全性更新" +#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04更新" +#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "" +#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 'Warty Warthog'" +#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "協力維護軟體 (Universe)" +#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" msgstr "非自由軟體 (Multiverse)" +#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "含Ubuntu 4.10 'Warty Warthog'之光碟" +#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "" +#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" msgstr "版權受限制" +#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10安全性更新" +#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10更新" +#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "" +#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 “Sarge”" +#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org/" +#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 “Sarge” 安全性更新" +#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian “Etch”(測試版)" +#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" +#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian “Sid”(不穩定版)" +#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "符合 DFSG 的軟體,但有依賴於非自由軟體" +#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" msgstr "不符合 DFSG 的軟體" @@ -1446,17 +1528,14 @@ msgstr "不符合 DFSG 的軟體" #~ msgid " " #~ msgstr " " -#, python-format #~ msgid "%s new package is going to be installed." #~ msgid_plural "%s new packages are going to be installed." #~ msgstr[0] "%s 個新套件將會安裝。" -#, python-format #~ msgid "%s package is going to be removed." #~ msgid_plural "%s packages are going to be removed." #~ msgstr[0] "%s 個套件將會移除。" -#, python-format #~ msgid "%s package is going to be upgraded." #~ msgid_plural "%s packages are going to be upgraded." #~ msgstr[0] "%s 個套件將會升級。" @@ -1464,26 +1543,29 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "" #~ "The channel information is out-of-date\n" #~ "\n" -#~ "You have to reload the channel information to install software and updates " -#~ "from newly added or changed channels. \n" +#~ "You have to reload the channel information to install software and " +#~ "updates from newly added or changed channels. \n" #~ "\n" #~ "You need a working internet connection to continue." #~ msgstr "" #~ "套件來源的資料已經過期\n" #~ "\n" -#~ "您需要重新載入套件來源的資料以安裝軟體,及更新套件來源新加入或修改了的套件。\n" +#~ "您需要重新載入套件來源的資料以安裝軟體,及更新套件來源新加入或修改了的套" +#~ "件。\n" #~ "\n" #~ "您須要連線到網際網路繼續。" #~ msgid "" #~ "You must check for updates manually\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure this " -#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." +#~ "Your system does not check for updates automatically. You can configure " +#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" +#~ "\"." #~ msgstr "" #~ "您必須自行檢查更新\n" #~ "\n" -#~ "您的系統不會自動檢查更新。您可以在「系統」→「管理的→「軟體偏好設定」中設定。" +#~ "您的系統不會自動檢查更新。您可以在「系統」→「管理的→「軟體偏好設定」中設" +#~ "定。" #~ msgid "Channel" #~ msgstr "套件來源" @@ -1498,8 +1580,8 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "金鑰" #~ msgid "" -#~ "Enter the complete APT line of the channel that you want to " -#~ "add\n" +#~ "Enter the complete APT line of the channel that you want to add\n" #~ "\n" #~ "The APT line includes the type, location and components of a channel, for " #~ "example \"deb http://ftp.debian.org sarge main\"." @@ -1507,10 +1589,9 @@ msgstr "不符合 DFSG 的軟體" #~ "請輸入您想加入的完整的 APT 來源列\n" #~ "\n" #~ "\n" -#~ "APT 來源列包括了來源的類型、位置及 components,例如 \"deb http://ftp.debian.org sarge " -#~ "main\"。" +#~ "APT 來源列包括了來源的類型、位置及 components,例如 \"deb http://ftp." +#~ "debian.org sarge main\"。" -#, python-format #~ msgid "" #~ "Error scaning the CD\n" #~ "\n" @@ -1532,26 +1613,23 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "" #~ "Upgrading to Ubuntu 6.06 LTS" -#~ msgstr "升級至 Ubuntu 6.06 LTS" +#~ msgstr "" +#~ "升級至 Ubuntu 6.06 LTS" #~ msgid "" -#~ "A unresolvable problem occured while calculating the upgrade. Please report " -#~ "this as a bug. " +#~ "A unresolvable problem occured while calculating the upgrade. Please " +#~ "report this as a bug. " #~ msgstr "計算升級時發生無法解決的問題,請匯報問題。 " -#, python-format #~ msgid "About %li days %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 天 %li 小時 %li 分鐘" -#, python-format #~ msgid "About %li hours %li minutes remaining" #~ msgstr "大約還剩下 %li 小時 %li 分鐘" -#, python-format #~ msgid "About %li minutes remaining" #~ msgstr "大約還剩下 %li 分鐘" -#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "大約還剩下 %li 秒鐘" @@ -1561,7 +1639,6 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "Add _Cdrom" #~ msgstr "加入光碟(_C)" -#, python-format #~ msgid "" #~ "After your package information was updated the essential package '%s' can " #~ "not be found anymore.\n" @@ -1588,19 +1665,15 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "Downloading and installing the upgrades" #~ msgstr "正在下載及安裝升級" -#, python-format #~ msgid "Downloading file %li of %li" #~ msgstr "正在下載檔案 %li/%li" -#, python-format #~ msgid "Downloading file %li of %li at %s/s" #~ msgstr "正在下載檔案 %li/%li,速度在 %s/秒" -#, python-format #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "正在下載檔案 %li/%li,下載速度為 %s/秒" -#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "正在下載檔案 %li/%li,下載速度不明" @@ -1620,14 +1693,15 @@ msgstr "不符合 DFSG 的軟體" #~ msgid "" #~ "If automatic checking for updates is disabeld, you have to reload the " -#~ "channel list manually. This option allows to hide the reminder shown in this " -#~ "case." -#~ msgstr "如果停用自動更新檢查,您需要自行重新載入套件來源清單。在此情況下本選項允許關閉更新提示" +#~ "channel list manually. This option allows to hide the reminder shown in " +#~ "this case." +#~ msgstr "" +#~ "如果停用自動更新檢查,您需要自行重新載入套件來源清單。在此情況下本選項允許" +#~ "關閉更新提示" #~ msgid "Installation Media" #~ msgstr "安裝媒體" -#, python-format #~ msgid "New version: %s (Size: %s)" #~ msgstr "新版本:%s (大小:%s)" @@ -1639,15 +1713,15 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "請先關閉其它程式,如‘aptitude’ 或‘Synaptic’。" #~ msgid "" -#~ "Please report this as a bug and include the files /var/log/dist-upgrade.log " -#~ "and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts now.\n" +#~ "Please report this as a bug and include the files /var/log/dist-upgrade." +#~ "log and /var/log/dist-upgrade-apt.log in your report. The upgrade aborts " +#~ "now.\n" #~ "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #~ msgstr "" -#~ "請將此視為 bug 來回報,並於報告中包含 /var/log/dist-upgrade.log 及 /var/log/dist-upgrade-" -#~ "apt.log 這兩個檔案。 現在取消更新。\n" +#~ "請將此視為 bug 來回報,並於報告中包含 /var/log/dist-upgrade.log 及 /var/" +#~ "log/dist-upgrade-apt.log 這兩個檔案。 現在取消更新。\n" #~ "您的原始 sources.list 已被存到 /etc/apt/sources.list.distUpgrade。" -#, python-format #~ msgid "" #~ "Replace configuration file\n" #~ "'%s'?" @@ -1675,16 +1749,16 @@ msgstr "不符合 DFSG 的軟體" #~ "enable them after the upgrade with the 'software-properties' tool or with " #~ "synaptic." #~ msgstr "" -#~ "你的 sources.list 中,部份第三方的項目已經被停用。在使用 'software-properties' 工具或 " -#~ "synaptic升級後,你可以重新啟用它。" +#~ "你的 sources.list 中,部份第三方的項目已經被停用。在使用 'software-" +#~ "properties' 工具或 synaptic升級後,你可以重新啟用它。" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" -#~ "get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " +#~ "apt-get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" -#~ "有一些更新須要移除其它套件。使用“Synaptic 套件管理程式”的「標記所有升級」功能或在終端機中執行“sudo apt-get dist-" -#~ "upgrade”來完整地更新您的系統。" +#~ "有一些更新須要移除其它套件。使用“Synaptic 套件管理程式”的「標記所有升級」" +#~ "功能或在終端機中執行“sudo apt-get dist-upgrade”來完整地更新您的系統。" #~ msgid "" #~ "Stores the state of the expander that contains the list of changs and the " @@ -1701,12 +1775,15 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "升級現正中止,請匯報問題。" #~ msgid "" -#~ "The upgrade aborts now. Your system can be in an unusable state. A recovery " -#~ "was run (dpkg --configure -a)." -#~ msgstr "升級中止。 你的系統現在可能在一個不穩定的狀態。 正在進行復原 (dpkg --configure -a)。" +#~ "The upgrade aborts now. Your system can be in an unusable state. A " +#~ "recovery was run (dpkg --configure -a)." +#~ msgstr "" +#~ "升級中止。 你的系統現在可能在一個不穩定的狀態。 正在進行復原 (dpkg --" +#~ "configure -a)。" #~ msgid "" -#~ "The upgrade can take several hours and cannot be canceled at any time later." +#~ "The upgrade can take several hours and cannot be canceled at any time " +#~ "later." #~ msgstr "升級可能需要數小時及無法在稍後任何時間取消。" #~ msgid "" @@ -1736,23 +1813,22 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "正在升級 Ubuntu" #~ msgid "" -#~ "Verfing the upgrade failed. There may be a problem with the network or with " -#~ "the server. " +#~ "Verfing the upgrade failed. There may be a problem with the network or " +#~ "with the server. " #~ msgstr "檢驗升級套件失敗。可能是因為跟伺服器的網路連接出現問題。 " -#, python-format #~ msgid "You have to download a total of %s." #~ msgstr "您總共需要下載 %s。" #~ msgid "" -#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" -#~ "desktop package and it was not possible to detect which version of ubuntu " -#~ "you are runing.\n" +#~ "Your system does not contain a ubuntu-desktop, kubuntu-desktop or " +#~ "edubuntu-desktop package and it was not possible to detect which version " +#~ "of ubuntu you are runing.\n" #~ " Please install one of the packages above first using synaptic or apt-get " #~ "before proceeding." #~ msgstr "" -#~ "您的系統沒有安裝 ubuntu-desktop,kubuntu-desktop 或 edubuntu-desktop " -#~ "套件,因此無法偵測正在執行那個版本的 ubuntu。\n" +#~ "您的系統沒有安裝 ubuntu-desktop,kubuntu-desktop 或 edubuntu-desktop 套" +#~ "件,因此無法偵測正在執行那個版本的 ubuntu。\n" #~ " 請進行操作前使用 synaptic 或 apt-get安裝上述其中一個套件" #~ msgid "Your system has already been upgraded." @@ -1762,4 +1838,4 @@ msgstr "不符合 DFSG 的軟體" #~ msgstr "自訂(_C)" #~ msgid "_Download updates in the background, but do not install them" -#~ msgstr "在背景下載更新套件,但無須安裝(_D)" \ No newline at end of file +#~ msgstr "在背景下載更新套件,但無須安裝(_D)" -- cgit v1.2.3 From 0bc703a0d36d8c99ac8ec9118111627623c006da Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 17 Oct 2006 18:13:16 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - add quirks handler for xserver-xorg-input-* and bzr --- DistUpgrade/DistUpgradeCache.py | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index f6e6cad8..bc79f9e2 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -166,8 +166,8 @@ class MyCache(apt.Cache): def edgyQuirks(self): """ this function works around quirks in the dapper->edgy upgrade """ logging.debug("running edgyQuirks handler") - # deal with the python2.4-$foo -> python-$foo transition for pkg in self: + # deal with the python2.4-$foo -> python-$foo transition if (pkg.name.startswith("python2.4-") and pkg.isInstalled and not pkg.markedUpgrade): @@ -178,14 +178,23 @@ class MyCache(apt.Cache): "python2.4->python upgrade rule") except SystemError, e: logging.debug("Failed to apply python2.4->python install: %s (%s)" % (basepkg, e)) - # deal with *gar*gar* hpijs - if (self.has_key("hpijs") and self["hpijs"].isInstalled and - not self["hpijs"].markedUpgrade): - try: - self.markInstall("hpijs","hpijs quirk upgrade rule") - except SystemError, e: - logging.debug("Failed to apply hpijs install (%s)" % e) + # xserver-xorg-input-$foo gives us trouble during the upgrade too + if (pkg.name.startswith("xserver-xorg-input-") and + pkg.isInstalled and + not pkg.markedUpgrade): + try: + self.markInstall(pkg.name, "xserver-xorg-input fixup rule") + except SystemError, e: + logging.debug("Failed to apply %s fixup: %s (%s)" % (pkg.name, e)) + # deal with held-backs that are unneeded + for pkgname in ["hpijs", "bzr"]: + if (self.has_key(pkgname) and self[pkgname].isInstalled and + not self[pkgname].markedUpgrade): + try: + self.markInstall(pkgname,"%s quirk upgrade rule" % pkgname) + except SystemError, e: + logging.debug("Failed to apply %s install (%s)" % (pkgname,e)) def dapperQuirks(self): -- cgit v1.2.3 From 24e4c5f2f2474b659dc9543c908f00cf8d4900ac Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 17 Oct 2006 19:00:39 +0200 Subject: * DistUpgrade/DistUpgradeViewGtk.py: - don't fail on unexpected input from dpkg --- DistUpgrade/Changelog | 3 +++ DistUpgrade/DistUpgradeViewGtk.py | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index a6faeb8a..050fc615 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,6 @@ +2006-10-17: + - ensure bzr and xserver-xorg-input-* is properly upgraded + - don't fail if dpkg sents unexpected status lines (lp: #66013) 2006-10-16: - remove leftover references to ubuntu-base and use ubuntu-minimal and ubuntu-standard instead diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index b176e8f0..13ede7ee 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -267,7 +267,10 @@ class GtkInstallProgressAdapter(InstallProgress): self.label_status.set_text("") def updateInterface(self): - InstallProgress.updateInterface(self) + try: + InstallProgress.updateInterface(self) + except ValueError, e: + logging.error("got ValueError from InstallPrgoress.updateInterface. Line was '%s' (%s)" % (self.read, e) # check if we haven't started yet with packages, pulse then if self.start_time == 0.0: self.progress.pulse() -- cgit v1.2.3 From ad1e40b643860122971a0ab8d942e54851458347 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 17 Oct 2006 19:06:06 +0200 Subject: * DistUpgrade/DistUpgradeViewGtk.py: - embarassing typo --- DistUpgrade/DistUpgradeViewGtk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index 13ede7ee..97a57772 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -270,7 +270,7 @@ class GtkInstallProgressAdapter(InstallProgress): try: InstallProgress.updateInterface(self) except ValueError, e: - logging.error("got ValueError from InstallPrgoress.updateInterface. Line was '%s' (%s)" % (self.read, e) + logging.error("got ValueError from InstallPrgoress.updateInterface. Line was '%s' (%s)" % (self.read, e)) # check if we haven't started yet with packages, pulse then if self.start_time == 0.0: self.progress.pulse() -- cgit v1.2.3 From 75af4477ee82dd7782b064bfe425e49356701cac Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 17 Oct 2006 19:08:03 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - fix tomboy while we are at it anyway --- DistUpgrade/Changelog | 3 ++- DistUpgrade/DistUpgradeCache.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 050fc615..45ef5edf 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,5 +1,6 @@ 2006-10-17: - - ensure bzr and xserver-xorg-input-* is properly upgraded + - ensure bzr, tomboy and xserver-xorg-input-* are properly + upgraded - don't fail if dpkg sents unexpected status lines (lp: #66013) 2006-10-16: - remove leftover references to ubuntu-base and diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index bc79f9e2..a569bf37 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -188,7 +188,7 @@ class MyCache(apt.Cache): logging.debug("Failed to apply %s fixup: %s (%s)" % (pkg.name, e)) # deal with held-backs that are unneeded - for pkgname in ["hpijs", "bzr"]: + for pkgname in ["hpijs", "bzr", "tomboy"]: if (self.has_key(pkgname) and self[pkgname].isInstalled and not self[pkgname].markedUpgrade): try: -- cgit v1.2.3 From 1d27a9d8320275e936278b4a2f779f4371e60519 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 21 Oct 2006 14:20:05 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - fix incorrect format in logging --- DistUpgrade/Changelog | 2 ++ DistUpgrade/DistUpgradeCache.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 45ef5edf..6cb6a7df 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,5 @@ +2006-10-21: + - fix incorrect arguments in fixup logging (lp: #67311) 2006-10-17: - ensure bzr, tomboy and xserver-xorg-input-* are properly upgraded diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index a569bf37..7df0b510 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -185,7 +185,7 @@ class MyCache(apt.Cache): try: self.markInstall(pkg.name, "xserver-xorg-input fixup rule") except SystemError, e: - logging.debug("Failed to apply %s fixup: %s (%s)" % (pkg.name, e)) + logging.debug("Failed to apply fixup: %s (%s)" % (pkg.name, e)) # deal with held-backs that are unneeded for pkgname in ["hpijs", "bzr", "tomboy"]: -- cgit v1.2.3 From 332b558cf5cf256712deaa7f827472683d763dbe Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 23 Oct 2006 13:51:37 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - logging improvments --- DistUpgrade/DistUpgradeControler.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index f91606f8..a968cdb8 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -359,7 +359,8 @@ class DistUpgradeControler(object): continue # no exception, so all was fine, we are done return True - + + logging.error("doUpdate() failed complettely") self._view.error(_("Error during update"), _("A problem occured during the update. " "This is usually some sort of network " @@ -397,6 +398,7 @@ class DistUpgradeControler(object): logging.debug("free on %s: %s " % (archivedir, free)) if self.cache.requiredDownload > free: free_at_least = apt_pkg.SizeToStr(self.cache.requiredDownload-free) + logging.error("not enough free space (missing %s)" % free_at_least) self._view.error(err_sum, err_long % (free_at_least,archivedir)) return False @@ -461,6 +463,7 @@ class DistUpgradeControler(object): res = self.cache.commit(fprogress,iprogress) except SystemError, e: # installing the packages failed, can't be retried + logging.error("SystemError from cache.commit(): %s" % e) self._view.getTerminal().call(["dpkg","--configure","-a"]) self._view.error(_("Could not install the upgrades"), _("The upgrade aborts now. Your system " @@ -480,7 +483,7 @@ class DistUpgradeControler(object): return True # maximum fetch-retries reached without a successful commit - logging.debug("giving up on fetching after maximum retries") + logging.error("giving up on fetching after maximum retries") self._view.error(_("Could not download the upgrades"), _("The upgrade aborts now. Please check your "\ "internet connection or "\ @@ -565,6 +568,7 @@ class DistUpgradeControler(object): try: res = self.cache.commit(fprogress,iprogress) except (SystemError, IOError), e: + logging.error("cache.commit() in doPostUpgrade() failed: %s" % e) self._view.error(_("Error during commit"), _("Some problem occured during the clean-up. " "Please see the below message for more " @@ -673,6 +677,7 @@ class DistUpgradeControler(object): self._view.setStep(1) if not self.prepare(): + logging.error("self.prepared() failed") self._view.error(_("Preparing the upgrade failed"), _("Preparing the system for the upgrade " "failed. Please report this as a bug " -- cgit v1.2.3 From ae8796907bc0d690057bc661ca926dd6bc4554cc Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 23 Oct 2006 13:59:18 +0200 Subject: * force downgrade of libgl1-mesa-dri package if unofficial compiz packages are installed (lp: #58424) --- DistUpgrade/Changelog | 3 +++ DistUpgrade/DistUpgradeCache.py | 27 ++++++++++++++++++++++++++- DistUpgrade/DistUpgradeView.py | 6 ++++-- 3 files changed, 33 insertions(+), 3 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 6cb6a7df..15988e46 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,5 +1,8 @@ 2006-10-21: - fix incorrect arguments in fixup logging (lp: #67311) + - more error logging + - fix upgrade problems for people with unofficial compiz + repositories (lp: #58424) 2006-10-17: - ensure bzr, tomboy and xserver-xorg-input-* are properly upgraded diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 7df0b510..9c062c41 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -195,7 +195,23 @@ class MyCache(apt.Cache): self.markInstall(pkgname,"%s quirk upgrade rule" % pkgname) except SystemError, e: logging.debug("Failed to apply %s install (%s)" % (pkgname,e)) - + # libgl1-mesa-dri from xgl.compiz.info (and friends) breaks the + # upgrade, work around this here by downgrading the package + if self.has_key("libgl1-mesa-dri"): + pkg = self["libgl1-mesa-dri"] + # the version from the compiz repo has a "6.5.1+cvs20060824" ver + if (pkg.candidateVersion == pkg.installedVersion and + "+cvs2006" in pkg.candidateVersion): + for ver in pkg._pkg.VersionList: + # the "officual" edgy version has "6.5.1~20060817-0ubuntu3" + if "~2006" in ver.VerStr: + # ensure that it is from a trusted repo + for (VerFileIter, index) in ver.FileList: + indexfile = self._list.FindIndex(VerFileIter) + if indexfile and indexfile.IsTrusted: + logging.info("Forcing downgrade of libgl1-mesa-dri for xgl.compz.info installs") + self._depcache.SetCandidateVer(pkg._pkg, ver) + break def dapperQuirks(self): """ this function works around quirks in the breezy->dapper upgrade """ @@ -240,6 +256,15 @@ class MyCache(apt.Cache): for pkg in self.getChanges(): if pkg.markedDelete: continue + # special case because of a bug in pkg.candidateOrigin + if pkg.markedDowngrade: + for ver in pkg._pkg.VersionList: + # version is lower than installed one + if apt_pkg.VersionCompare(ver.VerStr, pkg.installedVersion) < 0: + for (verFileIter,index) in ver.FileList: + if not origin.trusted: + untrusted.append(pkg.name) + continue origins = pkg.candidateOrigin trusted = False for origin in origins: diff --git a/DistUpgrade/DistUpgradeView.py b/DistUpgrade/DistUpgradeView.py index 40617774..109a278b 100644 --- a/DistUpgrade/DistUpgradeView.py +++ b/DistUpgrade/DistUpgradeView.py @@ -95,12 +95,14 @@ class DistUpgradeView(object): self.toInstall = [] self.toUpgrade = [] self.toRemove = [] + self.toDowngrade = [] for pkg in changes: if pkg.markedInstall: self.toInstall.append(pkg.name) elif pkg.markedUpgrade: self.toUpgrade.append(pkg.name) elif pkg.markedDelete: self.toRemove.append(pkg.name) - # no downgrades, re-installs - assert(len(self.toInstall)+len(self.toUpgrade)+len(self.toRemove) == len(changes)) + elif pkg.markedDowngrade: self.toDowngrade.append(pkg.name) + # no re-installs + assert(len(self.toInstall)+len(self.toUpgrade)+len(self.toRemove)+len(self.toDowngrade) == len(changes)) def askYesNoQuestion(self, summary, msg): " ask a Yes/No question and return True on 'Yes' " pass -- cgit v1.2.3 From 703e7ca6c3a7d99db6bfcdbb7e09b5120327f850 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 23 Oct 2006 14:27:39 +0200 Subject: * po/*.po: - updated the translations from rosetta + make update-po --- DistUpgrade/Changelog | 1 + po/am.po | 110 ++-- po/ar.po | 110 ++-- po/be.po | 110 ++-- po/bg.po | 110 ++-- po/bn.po | 110 ++-- po/br.po | 110 ++-- po/ca.po | 110 ++-- po/cs.po | 313 +++++----- po/csb.po | 110 ++-- po/da.po | 110 ++-- po/de.po | 110 ++-- po/el.po | 110 ++-- po/en_AU.po | 110 ++-- po/en_CA.po | 110 ++-- po/en_GB.po | 110 ++-- po/eo.po | 110 ++-- po/es.po | 110 ++-- po/et.po | 110 ++-- po/eu.po | 110 ++-- po/fa.po | 110 ++-- po/fi.po | 188 +++--- po/fr.po | 110 ++-- po/fur.po | 110 ++-- po/gl.po | 309 +++++----- po/he.po | 110 ++-- po/hi.po | 110 ++-- po/hr.po | 114 ++-- po/hu.po | 110 ++-- po/id.po | 110 ++-- po/it.po | 272 ++++----- po/ja.po | 110 ++-- po/ka.po | 723 +++++++++++------------ po/ko.po | 110 ++-- po/ku.po | 222 +++---- po/lt.po | 110 ++-- po/lv.po | 110 ++-- po/mk.po | 110 ++-- po/mr.po | 1502 +++++++++++++++++++++++++++++++++++++++++++++++ po/ms.po | 110 ++-- po/nb.po | 110 ++-- po/ne.po | 110 ++-- po/nl.po | 131 ++--- po/nn.po | 110 ++-- po/no.po | 110 ++-- po/oc.po | 255 ++++---- po/pa.po | 110 ++-- po/pl.po | 133 +++-- po/ps.po | 1498 ++++++++++++++++++++++++++++++++++++++++++++++ po/pt.po | 110 ++-- po/pt_BR.po | 370 ++++++------ po/qu.po | 110 ++-- po/ro.po | 110 ++-- po/ru.po | 141 +++-- po/rw.po | 110 ++-- po/sk.po | 110 ++-- po/sl.po | 110 ++-- po/sq.po | 110 ++-- po/sr.po | 110 ++-- po/sv.po | 110 ++-- po/ta.po | 110 ++-- po/th.po | 110 ++-- po/tl.po | 1565 +++++++++++++++++++++++++++++++++++++++++++++++++ po/tr.po | 162 ++--- po/uk.po | 110 ++-- po/update-manager.pot | 110 ++-- po/ur.po | 110 ++-- po/urd.po | 110 ++-- po/vi.po | 110 ++-- po/xh.po | 110 ++-- po/zh_CN.po | 110 ++-- po/zh_HK.po | 110 ++-- po/zh_TW.po | 110 ++-- 73 files changed, 9305 insertions(+), 4754 deletions(-) create mode 100644 po/mr.po create mode 100644 po/ps.po create mode 100644 po/tl.po diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index 15988e46..a13db18f 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -3,6 +3,7 @@ - more error logging - fix upgrade problems for people with unofficial compiz repositories (lp: #58424) + - rosetta i18n updates 2006-10-17: - ensure bzr, tomboy and xserver-xorg-input-* are properly upgraded diff --git a/po/am.po b/po/am.po index 7b63b325..35554bab 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: Habte \n" "Language-Team: Amharic \n" @@ -156,20 +156,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -178,34 +178,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -295,21 +295,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -318,15 +318,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -335,21 +335,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -358,65 +358,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -426,19 +426,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -504,11 +504,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -518,28 +518,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -547,39 +547,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -613,11 +613,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/ar.po b/po/ar.po index b747dadf..7b5363f7 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Saleh Odeh \n" "Language-Team: Arabic \n" @@ -156,22 +156,22 @@ msgstr "" "هذا النظام يحتوي على رزم مكسورة لا يمكن إصلاحها من هذا البرنامج, الرجاء " "العمل على إصلاحها أولا بواسطة apt-get أو synaptic قبل الإستمرار" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 #, fuzzy msgid "Can't upgrade required meta-packages" msgstr "لا يمكن تحديث الرزم العليا المطلوبة" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "سيكون من الضروري إزالة رزم مهمة" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 #, fuzzy msgid "Could not calculate the upgrade" msgstr "لم يكن ممكنا إحتساب التحديث" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -180,24 +180,24 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 #, fuzzy msgid "Error authenticating some packages" msgstr "خطأ في التحقق من هوية بعض الرزم" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "تعذّر تثبيت '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -206,11 +206,11 @@ msgstr "" "لم يكن بالإمكان تثبيت إحدى الرزم المطلوبة. الرجاء التبليغ عن هذا كخطأ برمجي. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -304,21 +304,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "خطأ خلال التحديث" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "لا يوجد مساحة كافية على القرص الصلب" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -327,15 +327,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "هل تريد البدء في عملية التحديث الان؟" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "لم يكن ممكنا تثبيت التحديثات" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -344,12 +344,12 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 #, fuzzy msgid "Could not download the upgrades" msgstr "لم يكن ممكنا تنزيل التحديثات" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 #, fuzzy msgid "" "The upgrade aborts now. Please check your internet connection or " @@ -358,11 +358,11 @@ msgstr "" "سيتم إلغاء التحديث الآن, الرجاء التأكد من إتصالك للإنترنت أو وسيط التثبيت " "والمحاولة ثانيا. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -371,68 +371,68 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 #, fuzzy msgid "Remove obsolete packages?" msgstr "هل تود إزالة الرزم الملغية?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 #, fuzzy msgid "_Skip This Step" msgstr "_تجاهل هذه الخطوة" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_إزالة" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 #, fuzzy msgid "Error during commit" msgstr "خطأ أثناء التفعيل" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "جاري التأكد من مدير الحزم" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "حاليا في عملية تحديث معلومات المستودع" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "معلومات الرزمة غير صالحة" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -442,20 +442,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 #, fuzzy msgid "Asking for confirmation" msgstr "حاليا في عملية طلب التأكيد" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "جاري عملية التحديث" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "جاري عملية البحث عن البرامج الملغية" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "إنتهت عملية تحديث النظام." @@ -521,12 +521,12 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "لم يمكن العثور على أمر 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 #, fuzzy msgid "A fatal error occured" msgstr "وقع خطأ شديد" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -536,7 +536,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -544,7 +544,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -552,7 +552,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -560,7 +560,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -568,40 +568,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "لمنع فقدان المعلومات الرجاء إغلاق جميع البرامج و الوثائق المفتوحة." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "إن نظامك الآن محدث" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, fuzzy, python-format msgid "Remove %s" msgstr "إزالة %s " -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "تثبيت %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "تحديث %s" @@ -635,11 +635,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "مطلوب إعادة تشغيل النظام" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 #, fuzzy msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" diff --git a/po/be.po b/po/be.po index 9e4aa807..d4c115e7 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:05+0000\n" "Last-Translator: Alexander Nyakhaychyk \n" "Language-Team: Belarusian \n" @@ -157,20 +157,20 @@ msgstr "" "выправіць у гэтай праграме. Калі ласка, спачатку выпраўце іх з дапамогай " "synaptic ці apt-get перш чым працягваць." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Немагчыма абнавіць неабходныя мэтапакеты" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Трэба было-б выдаліць абавязковы пакет" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Немагчыма падлічыць абнаўленьне" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -179,11 +179,11 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Памылка аўтэнтыфікацыі некаторых пакетаў" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -193,12 +193,12 @@ msgstr "" "праблемы зь сеткай. Вы можаце паспрабаваць паўтарыць дзеяньне пазьней. " "Глядзіце ніжэй сьпіс неаўтэнтыфікаваных пакетаў." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Немагчыма ўсталяваць \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -207,11 +207,11 @@ msgstr "" "памылцы. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Немагчыма вызначыць мэта-пакет" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -308,11 +308,11 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Памылка ў час абналеньня" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -320,11 +320,11 @@ msgstr "" "Узьнікла памылка ў час абнаўленьня. Звычайна гэта праблемы зь сеткай, калі " "ласка, праверце вашае сеткавае далуэньне й паўтарыце спробу." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Бракуе дыскавае прасторы" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -336,15 +336,15 @@ msgstr "" "дапамогай загаду \"sudo apt-get clean\"." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Ці жадаеце пачаць абнаўленьне?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Немагчыма ўсталяваць абнаўленьні" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -353,11 +353,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Немагчыма зпампаваць абнаўленьні" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -365,11 +365,11 @@ msgstr "" "Абнаўленьне спынена. Калі ласка, праверце вашае сеткавае далучэньне альбо " "носьбіты ўсталёўкі й паўтарыце спробу. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -378,23 +378,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Выдаліць састарэлыя пакеты?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "Аб_мінуць гэты крок" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "В_ыдаліць" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Памылка ў час зацьвярджэньня" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -403,42 +403,42 @@ msgstr "" "ніжэй паведамленьне. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Праверка кіраўніка пакетаў" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Абнаўленьне зьвестак сховішча" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Недзеяздольныя зьвесткі пра пакет" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -448,19 +448,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Запыт пацьвярджэньня" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Абнаўленьне" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -526,11 +526,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Ня знойдзена праграма \"diff\"" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Узьнікла невыправімая памылка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -540,7 +540,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -548,7 +548,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -556,7 +556,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -564,7 +564,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -572,39 +572,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Усталёўка %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Абнаўленьне %s" @@ -638,11 +638,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Патрабуецца перагрузка" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/bg.po b/po/bg.po index dc8dc1d8..11fa7f9b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:01+0000\n" "Last-Translator: Nikola Kasabov \n" "Language-Team: Bulgarian \n" @@ -163,20 +163,20 @@ msgstr "" "този софтуер. Моля, поправете ги със synaptic или apt-get преди да " "продължите!" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Не може да бъдат надградени изисквани мета-пакети" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Ще трябва да бъде премахнат важен пакет" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Не може да бъде планирано надграждането" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -188,11 +188,11 @@ msgstr "" "това като грешка." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Грешка при удостоверяването автентичността на някои пакети" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -202,12 +202,12 @@ msgstr "" "да е временен проблем с мрежата. Може би бихте искали да опитате отново по-" "късно. Вижте по-долу списъка на неудоствоерените пакети." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Не може да се инсталира '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -216,11 +216,11 @@ msgstr "" "грешка! " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Не могат да бъдат предположени мета-пакети" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -334,11 +334,11 @@ msgstr "" "Можете да ги разрешите отново след надграждането чрез инструмента software-" "properties или чрез synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Грешка по време на надграждане" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -346,11 +346,11 @@ msgstr "" "Възникна проблем при актуализацията. Това обикновено е накакъв проблем с " "мрежата. Моля, проверете мрежовата връзка и опитайте пак!" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Недостатъчно свободно място на диска" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +359,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Желаете ли да започне надграждането?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Не можеше да бъдат инсталирани надгражданията" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -379,11 +379,11 @@ msgstr "" "Надграждането сега ще бъде прекратено. Системата Ви може да е в " "неизползваемо състояние. Бе изпълнено възстановяване (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Не можеше да бъдат свалени надгражданията" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +391,11 @@ msgstr "" "Надграждането се прекратява. Моля, проверете Интернет връзката или " "инсталационния носител и опитайте отново! " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -404,23 +404,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Премахване на остарелите пакети?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "П_рескачане на стъпката" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Премахване" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Грешка при прехвърляне" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -429,28 +429,28 @@ msgstr "" "информация! " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Рестартиране на системата" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Проверка на диспечера на пакети" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Подготвяне на надграждането" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -460,16 +460,16 @@ msgstr "" "Възникна непреодолим проблем при планиране на надграждането. Докладвайте " "това като грешка." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Актуализиране информацията от хранилището" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 #, fuzzy msgid "Invalid package information" msgstr "Невалидна информация за пакет" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -482,19 +482,19 @@ msgstr "" "бъде открит.\n" "Това показва сериозна грешка. Моля, съобщете за това!" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Запитване за потвърждение" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Надграждане" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Търсене на остарял софтуер" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Надграждането на системата завърши." @@ -563,11 +563,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Командата \"diff\" не бе намерена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Възникна фатална грешка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -583,28 +583,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Пакетът %s ще бъде премахнат." msgstr[1] "Пакетите %s ще бъдат премахнати." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s нов пакет ще бъде инсталиран." msgstr[1] "%s нови пакети ще бъдат инталирани." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s пакет ще бъде надграден." msgstr[1] "%s нови пакети ще бъдат надградени." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -615,7 +615,7 @@ msgstr "" "\n" "Трябва да изтеглите данни общо %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -624,35 +624,35 @@ msgstr "" "Надграждането може да отнеме няколко часа, като не може да бъде отменено по-" "нататък." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "За да предодвратите загуба на данни, затворете всички отворени приложения и " "документи." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Системата Ви е актуална" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Премахване на %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Инсталиране на %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Надграждане на %s" @@ -686,11 +686,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Нужно е рестартиране" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "Надграждането е завършено и има нужда от рестарт. Рестартиране сега?" diff --git a/po/bn.po b/po/bn.po index afa2194c..049e5d1e 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: Khandakar Mujahidul Islam \n" "Language-Team: Bengali \n" @@ -156,20 +156,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "দরকারী meta-packages আপগ্রেড করতে পারে নি" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "একটি প্রয়োজনীয় প্যকেজ অপসারণ করা হতে পারে" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "আপগ্রেড গণনা করতে পারছে না" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -178,23 +178,23 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "'%s' ইন্সটল করা যাচ্ছে না" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -203,11 +203,11 @@ msgstr "" "রিপোর্ট করুন। " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "meta-package অনুমান করা যাচ্ছ না" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -305,11 +305,11 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "আপগ্রেড করার সময় সমস্যা" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -317,11 +317,11 @@ msgstr "" "আপগ্রেড করার সময় একটি সমস্যা হয়েছে। এটি সাধারনত নেটওয়ার্কের সমস্যা, অনুগ্রহ করে " "আপনার নেটওয়ার্ক সংযোগ পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন।" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "ডিস্কে যথেস্ট ফাঁকা জায়গা নেই" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -330,15 +330,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "আপনি কি আপগ্রেড শুরু করতে চান?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "আপগ্রেড ইন্সটল করা যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -347,11 +347,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "আপগ্রেড ডাউনলোড করা যায় নি" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -359,11 +359,11 @@ msgstr "" "আপগ্রেড এখন বন্ধ হবে। দয়া করে আপনার ইন্টারনেট সংযুক্তি বা ইনস্টলেশন মিডিয়া পরীক্ষা " "করুন এবং আবার চেষ্টা করুন। " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -372,66 +372,66 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "অপ্রচলিত প্যাকেজগুলো মুছে ফেলা হবে?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "এই ধাপটি এড়িয়ে যাও (_এ)" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "সরাও (_স)" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "প্রেরণ করার সময় সমস্যা" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "সিস্টেমটি রিস্টার্ট করছি" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "প্যাকেজ ম্যানেজার পরীক্ষা করা হচ্ছ" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "আপগ্রেড প্রস্তুত করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "রিপজিটরির তথ্য আপডেট করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "ভুল প্যাকেজ তথ্য" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -441,19 +441,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "তথ্যের জন্য জিজ্ঞাসা" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "আপগ্রেড করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "অপ্রচলিত সফ্টওয়্যার অনুসন্ধান করা হচ্ছে" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "সিস্টেম আপগ্রেড সম্পন্ন।" @@ -522,11 +522,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "'diff' কমান্ডটি পাওয়া যায় নি" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "একটি মারাত্মক সমস্যা সংঘটিত হয়েছে" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -536,28 +536,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s টি প্যাকেজ মোছা হবে।" msgstr[1] "%s টি প্যাকেজ মোছা হবে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ ইনস্টল হতে যাচ্ছে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" msgstr[1] "%s টি নতুন প্যাকেজ আপগ্রেড হতে যাচ্ছে।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -568,40 +568,40 @@ msgstr "" "\n" "আপনাকে সর্বমোট %s ডাউনলোড করতে হবে। " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "আপগ্রেড করতে কয়েক ঘন্টা লেগে যেতে পারে এবং পরে এটি বাতিল করা যাবে না।" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "তথ্য হারাতে না চাইলে সকল অ্যাপলিকেশন এবং ডকুমেন্ট বন্ধ রাখুন।" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "আপনার সিস্টেম আপ-টু-ডেট" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "%s মুছো" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "%s ইন্সটল" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "%s আপগ্রেড" @@ -635,11 +635,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "রিবুট করা প্রয়োজন" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "আপগ্রেডটি সম্পন্ন এবং রিবুট করা প্রয়োজন। আপনি কি এক্ষুনি তা করতে চান?" diff --git a/po/br.po b/po/br.po index f6a9d395..17e0d931 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-05-19 02:42+0000\n" "Last-Translator: Oublieuse \n" "Language-Team: Breton \n" @@ -156,20 +156,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -178,34 +178,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -295,21 +295,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -318,15 +318,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -335,21 +335,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -358,65 +358,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -426,19 +426,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -504,11 +504,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -518,28 +518,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -547,39 +547,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -613,11 +613,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/ca.po b/po/ca.po index 3991cf8c..c41d4453 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Jordi Irazuzta \n" "Language-Team: Catalan \n" @@ -163,21 +163,21 @@ msgstr "" "El vostre sistema conté paquets trencats que no es poden arreglar amb " "aquesta aplicació. Utilitzeu el Synaptic o apt-get abans de continuar." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 #, fuzzy msgid "Can't upgrade required meta-packages" msgstr "No s'han pogut actualitzar els metapaquets sol·licitats" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "S'haurà d'esborrar un paquet essencial" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "No s'ha pogut calcular l'actualització" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -189,11 +189,11 @@ msgstr "" "de l'error." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "S'ha produït un error en autenticar alguns paquets" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -203,12 +203,12 @@ msgstr "" "amb la xarxa. Podeu provar-ho després. A continuació es mostra la llista amb " "els paquets no autenticats." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "No s'ha pogut instal·lar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -217,11 +217,11 @@ msgstr "" "els error. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -324,11 +324,11 @@ msgstr "" "reactivar-los, després de l'actualització de programari, des de 'propietats " "del programari' o des del Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "S'ha produït un error en l'actualització" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -336,11 +336,11 @@ msgstr "" "S'ha produït un error mentre s'actualizava el vostre sistema. Comproveu la " "vostra connexió de xarxa i torneu a intentar-ho." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "No disposeu de suficient espai al disc" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -353,15 +353,15 @@ msgstr "" "apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Voleu iniciar l'actualització?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "No s'han pogut instal·lar les actualitzacions" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -373,11 +373,11 @@ msgstr "" "L'actualització s'ha cancel·lat. El vostre sistema ha pogut quedar " "inservible. S'ha executat una recuperació del sistema (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "No s'han pogut descarregar les actualitzacions" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -385,11 +385,11 @@ msgstr "" "S'ha cancel·lat l'actualització. Comproveu la vostra connexió a Internet o " "el mitjà d'instal·lació i torneu-ho a provar. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -403,51 +403,51 @@ msgstr "" "\n" "Si no teniu activat 'universe' se us sugerirà que els desintal·leu." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Voleu esborrar els paquets obsolets?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Omet aquest pas" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "Esbo_rra" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "S'està restaurant l'estat original del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "S'està comprovant el gestor de paquets" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "S'està preparant l'actualització" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -457,15 +457,15 @@ msgstr "" "S'ha produït un problema greu alhora de calcular l'actualització. Informeu " "de l'error." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "S'està actualitzant la informació del dipòsit" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "La informació del paquet no és valida" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -475,19 +475,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Actualitzant" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "S'està cercant programari obsolet" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "S'ha completat l'actualització del sistema" @@ -556,11 +556,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "No s'ha trobat l'ordre 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "S'ha produït un error greu" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -570,28 +570,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "S'esborrarà %s paquet" msgstr[1] "S'esborraran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "S'instal·larà %s paquet" msgstr[1] "S'instal·laran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "S'actualitzarà %s paquet" msgstr[1] "S'actualitzaran %s paquets" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -602,7 +602,7 @@ msgstr "" "\n" "Heu de descarregar un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -611,35 +611,35 @@ msgstr "" "L'actualització pot durar algunes hores i no la podreu cancel·lar un cop " "hagi començat." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Per a evitar una possible pèrdua de dades, tanqueu tos els documents i " "aplicacions." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "El vostre sistema està actualitzat" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Esborra %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instal·la %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Actualitza %s" @@ -673,11 +673,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "És necessari que reinicieu el sistema" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/cs.po b/po/cs.po index 47d205cb..a2fe3ee0 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:15+0000\n" -"Last-Translator: Tomáš Hála \n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-18 22:54+0000\n" +"Last-Translator: Dominik Sauer \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,7 +86,6 @@ msgid "Nearest server" msgstr "Nejbližší server" #: ../SoftwareProperties/SoftwareProperties.py:345 -#, fuzzy msgid "Custom servers" msgstr "Uživatelem vybrané servery" @@ -129,7 +128,7 @@ msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Vybraný klíč nemohl být odstraněn. Prosím oznamte to jako chybu." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" @@ -160,20 +159,20 @@ msgstr "" "opraveny. Před pokračováním je prosím opravte použitím programu synaptic " "nebo apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Nemohu aktualizovat požadované meta-balíky" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Toto by vedlo k odstranění základního balíku" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Nemohu vypočítat aktualizaci" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -186,26 +185,26 @@ msgstr "" "soubory z adresáře /var/log/dist-upgrade/ k hlášení o chybě." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Chyba při ověřování některých balíků" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -"Nebylo možné ověřit nekteré balíky. To může být způsobeno přechodným " -"problémem v síti. Možná to budete chtít zkusit později. Níže je uveden " -"seznam neověřených balíků." +"Nebylo možné ověřit pravost některých balíků. To může být způsobeno " +"přechodným problémem v síti. Možná to budete chtít zkusit později. Níže je " +"uveden seznam postižených balíků." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Nemohu nainstalovat '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -213,12 +212,11 @@ msgstr "" "Nebylo možné nainstalovat požadovaný balík. Prosím oznamte to jako chybu. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Nemohu odhadnout meta-balík" -#: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -227,12 +225,11 @@ msgid "" "before proceeding." msgstr "" "Váš systém neobsahuje žádný z balíků ubuntu-desktop, kubuntu-desktop nebo " -"edubuntu-desktop a nebylo možné zjistit jakou verzi Ubuntu používáte.\n" -" Před pokračováním si prosím nainstalujte jeden z výše uvedených balíků " -"pomocí synaptic nebo apt-get." +"edubuntu-desktop a nebylo možné zjistit, jakou verzi Ubuntu používáte.\n" +" Před pokračováním prosím nainstalujte jeden z výše uvedených balíků pomocí " +"synaptic nebo apt-get." #: ../DistUpgrade/DistUpgradeControler.py:75 -#, fuzzy msgid "Failed to add the CD" msgstr "Chyba při přidávání CD" @@ -254,11 +251,11 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" -msgstr "Probíhá čtení cache" +msgstr "Probíhá čtení vyrovnávací paměti" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" -msgstr "Stáhnout ze sítě nějaká data pro přechod na vyšší verzi?" +msgstr "Stáhnout ze sítě údaje nutné pro přechod na vyšší verzi?" #: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" @@ -267,14 +264,14 @@ msgid "" "If you have fast or inexpensive network access you should answer 'Yes' here. " "If networking is expensive for you choose 'No'." msgstr "" -"Při přechodu na vyšší verzi můžete použít síť pro zjištění nejnovějších " -"aktualizací a pro stažení balíčků, které nejsou na aktuálním CD.\n" +"Při přechodu na vyšší verzi můžete použít síť pro získání nejnovějších " +"aktualizací a stažení balíčků, které nejsou na aktuálním CD.\n" "Pokud máte levné připojení k síti, můžete zde odpovědět 'Ano'. Pokud je vaše " "síťové připojené nákladné, zvolte 'Ne'." #: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" -msgstr "Nenalezeno správné zrcadlo" +msgstr "Nebyl nalezen platný zrcadlový server" #: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format @@ -287,11 +284,12 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"Během prohledávání informací o repozitářích nebylo nalezeno žádné zrcadlo " -"pro aktualizace. Toto se může stát, pokud používáte interní zrcadlo nebo " -"pokud jsou informace o zrcadle zastaralé.\n" +"Během prohledávání informací o zdrojích software Nebyl nalezen žádný " +"zrcadlový server obsahující aktualizace. To se může stát, pokud používáte " +"interní zrcadlový server nebo pokud jsou informace o zrcadlových serverech " +"zastaralé.\n" "\n" -"Přejete si i přesto přepsat váš 'sources.list'? Zvolíte-li 'Ano', budou " +"Chcete i přesto přepsat váš soubor 'sources.list'? Zvolíte-li 'Ano', budou " "všechny položky '%s' aktualizovány na '%s'.\n" "Zvolíte-li 'Ne', aktualizace bude zrušena." @@ -323,12 +321,12 @@ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"Aktualizace informací o repozitáři vyústila v neplatný soubor. Prosím " -"oznamte to jako chybu." +"Aktualizace informací o zdroji vyústila v neplatný soubor. Prosím oznamte to " +"jako chybu." #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" -msgstr "Zdroje třetích stran vypnuté" +msgstr "Zdroje třetích stran zakázány" #: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" @@ -336,27 +334,27 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"Některé položky třetích stran v souboru sources.list byly vyřazeny. Tyto " -"položky můžete opět povolit po přechodu na novou verzi za pomocí nástroje " -"'software-properties' nebo nástroje synaptic." +"Některé zdroje třetích stran v souboru sources.list byly zakázány. Tyto " +"zdroje můžete opět povolit po přechodu na novou verzi pomocí jdnoho z " +"nástrojů 'Zdroje software' nebo 'Synaptic'." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Chyba během aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Nastala chyba během aktualizace. Toto je obvykle způsobeno chybou síťového " -"připojení. Prosím zkontrolujte své připojení a zkuste to znovu." +"připojení. Prosím zkontrolujte své připojení k síti a zkuste to znovu." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Nedostatek volného místa na disku" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -364,19 +362,19 @@ msgid "" "apt-get clean'." msgstr "" "Aktualizace bude nyní přerušena. Prosím, uvolněte nejméně %s místa na %s. " -"Vyprázdněte váš koš a odstraňte dočasné balíčky z dřívějších instalací " +"Vyprázdněte svůj koš a odstraňte dočasné balíčky z dřívějších instalací " "pomocí 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Chcete spustit aktualizaci?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" -msgstr "Nelze nainstalovat aktualizace" +msgstr "Nepodařilo se nainstalovat aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -391,23 +389,23 @@ msgstr "" "Prosím nahlaste tuto chybu jako chybu balíčku 'update-manager' a přiložte " "soubory z adresáře /var/log/dist-upgrade/ k hlášení o chybě." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" -msgstr "Nelze stáhnout aktualizace" +msgstr "Nepodařilo se stáhnout aktualizace" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -"Aktualizace byla předčasně ukončena. Prosím zkontrolujte si připojení k " -"internetu nebo instalační médium a zkuste to znovu. " +"Aktualizace byla předčasně ukončena. Prosím zkontrolujte připojení k " +"Internetu popř. instalační médium a zkuste to znovu. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Podpora pro některé aplikace byla ukončena" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -416,57 +414,57 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" "Společnost Canonical Ltd. již neposkytuje podporu pro následující softwarové " -"balíky. Je možné, že tyto balíčky jsou stále spravovány komunitou.\n" +"balíky. Je však možné, že tyto balíky jsou nadále podporovány komunitou.\n" "\n" -"Pokud nemáte povolen software spravovaný komunitou (universe), tyto balíčky " -"budou v dalším kroku navrhnuty k odstranění." +"Pokud nemáte povolen software spravovaný komunitou (Universe), tyto balíky " +"budou v dalším kroku navrhnuty k odebrání." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Odebrat zastaralé balíky?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Přeskočit tento krok" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Odebrat" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Chyba při potvrzování" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -"Během čištění nastal problém. Podrobnější informace jsou obsaženy v " +"Během úklidu nastal problém. Podrobnější informace jsou obsaženy v " "následující zprávě: " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" -msgstr "Obnovuje se původní stav systému" +msgstr "Obnovuji původní stav systému" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Stahuji verzi '%s' přenesenou z vyšší verze distribuce" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Kontroluji správce balíků" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Příprava přechodu na vyšší verzi selhala" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -476,15 +474,15 @@ msgstr "" "chybu jako chybu balíčku 'update-manager' a přiložte soubory z adresáře /var/" "log/dist-upgrade/ k hlášení o chybě." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" -msgstr "Aktualizují se informace o repozitáři" +msgstr "Aktualizují se informace o zdrojích" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" -msgstr "Neplatná informace o balících" +msgstr "Neplatná informace o balíku" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -493,25 +491,23 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Poté co byly aktualizovány informace o balících, nebyl nalezen nezbytný " -"balík '%s'.\n" -"Toto ukazuje na závažný problém, prosím nahlašte toto jako chybu balíku " -"'update-manager' a přiložte k hlášení o chybě soubory v adresáři /var/log/" -"dist-upgrade/." +"Po aktualizaci informací o balících nebyl nalezen nezbytný balík '%s'.\n" +"To ukazuje na závažný problém; prosím nahlaste chybu balíku 'update-manager' " +"a přiložte k hlášení o chybě soubory v adresáři /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Vyžaduji potvrzení" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Probíhá přechod na vyšší verzi" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Vyhledávám zastaralý software" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Přechod na vyšší verzi systému je dokončen." @@ -526,7 +522,7 @@ msgid "Fetching is complete" msgstr "Stahování je dokončeno" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Stahuji soubor %li z %li rychlostí %s/s" @@ -534,10 +530,10 @@ msgstr "Stahuji soubor %li z %li rychlostí %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" -msgstr "Zhruba %s zbývá" +msgstr "Zbývá zhruba %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" msgstr "Stahuji soubor %li z %li" @@ -558,8 +554,8 @@ msgid "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Aktualizace byla předčasně ukončena. Nahlašte prosím tuto chybu jako chybu " -"balíku 'update-manager' a přiložte k chybovému hlášení soubory z adresáře /" +"Přechod na vyšší verzi systému byl předčasně ukončen. Nahlaste prosím chybu " +"balíku 'update-manager' a přiložte k chybovému hlášení soubory z adresáře /" "var/log/dist-upgrade/." #. self.expander.set_expanded(True) @@ -577,18 +573,18 @@ msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -"Pokud zvolíte nahrazení novější verzí, ztratíte veškeré změny tohoto " +"Pokud zvolíte nahrazení novější verzí, ztratíte veškeré lokální změny tohoto " "konfiguračního souboru." #: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Příkaz \"diff\" nebyl nalezen" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Nastala kritická chyba" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -602,7 +598,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -610,7 +606,7 @@ msgstr[0] "%d balík bude odstraněn." msgstr[1] "%d balíky budou odstraněny." msgstr[2] "%d balíků bude odstraněno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -618,7 +614,7 @@ msgstr[0] "%d nový balík bude nainstalován." msgstr[1] "%d nové balíky budou nainstalovány." msgstr[2] "%d nových balíků bude nainstalováno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -626,8 +622,8 @@ msgstr[0] "%d balík bude nahrazen vyšší verzí." msgstr[1] "%d balíky budou nahrazeny vyšší verzí." msgstr[2] "%d balíky bude nahrazeno vyšší verzí." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 +#, python-format msgid "" "\n" "\n" @@ -637,43 +633,41 @@ msgstr "" "\n" "Bude staženo celkem %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "" -"Přechod na vyšší verzi může trvat několik hodin a nelze jej v budoucnu " -"zrušit." +msgstr "Přechod na vyšší verzi může trvat několik hodin a nelze jej vzít zpět." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." -msgstr "Uzavřete všechny aplikace a dokumenty pro zamezení ztrátě dat." +msgstr "Pro zamezení ztrátě dat uzavřete všechny aplikace a dokumenty." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Váš systém je aktuální" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -"Pro váš systém nejsou k dispozici žádné aktualizace. Aktualizace bude nyní " -"zrušena." +"Pro váš systém nejsou k dispozici žádné aktualizace. Přechod na vyšší verzi " +"bude nyní zrušen." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Odebrat %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Nainstalovat %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Aktualizovat %s" @@ -706,18 +700,18 @@ msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" -"Toto stahování bude trvat asi %s linkou o rychlosti linky 1Mbit DSL a asi %s " -"modemem 56kbit." +"Stahování bude trvat cca. %s linkou o rychlosti 1Mbit (DSL) a cca. %s " +"modemem o rychlosti 56kbit." -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" -msgstr "Vyžadován restart" +msgstr "Je nutné restartovat počítač" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" -"Přechod na vyšší verzi byl dokončen a je nutné restartovat systém. Chcete " +"Přechod na vyšší verzi byl dokončen a je nutné restartovat počítač. Chcete " "jej restartovat nyní?" #. testcode to see if the bullets look nice in the dialog @@ -738,24 +732,26 @@ msgid "" msgstr "" "Zrušit probíhající aktualizaci?\n" "\n" -"Zrušení aktualizace může systém zanechat v nepoužitelném stavu. Je " -"důrazně doporučeno v aktualizaci pokračovat." +"Zrušení aktualizace může systém zanechat v nepoužitelném stavu. Důrazně doporučuji v aktualizaci pokračovat." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "Pro dokončení aktualizace restartujte systém" +msgstr "" +"Pro dokončení přechodu na vyšší verzi systému restartujte počítač" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "Spustit aktualizaci?" +msgstr "Spustit přechod na vyšší verzi systému?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "Aktualizuji systém Ubuntu na verzi 6.10" +msgstr "Přecházím na verzi systému Ubuntu v6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" -msgstr "Probíhá čištění" +msgstr "Probíhá úklid" #: ../DistUpgrade/DistUpgrade.glade.h:9 msgid "Details" @@ -771,15 +767,15 @@ msgstr "Stahuji a instaluji balíky potřebné pro přechod na vyšší verzi" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" -msgstr "Modifikuji softwarové kanály." +msgstr "Upravuji softwarové kanály." #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "Připravuji přechod na vyšší verzi" +msgstr "Připravuji přechod na vyšší verzi systému" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" -msgstr "Restartuji systém" +msgstr "Restartuji počítač" #: ../DistUpgrade/DistUpgrade.glade.h:15 msgid "Terminal" @@ -787,7 +783,7 @@ msgstr "Terminál" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "_Zrušit přechod na vyšší verzi" +msgstr "_Zrušit přechod na vyšší verzi systému" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" @@ -812,11 +808,11 @@ msgstr "_Restartovat nyní" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "_Pokračovat v aktualizaci" +msgstr "_Pokračovat v přechodu na vyšší verzi systému" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "_Začít aktualizaci" +msgstr "_Začít přechod na vyšší verzi systému" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -832,12 +828,12 @@ msgstr "Nemohu stáhnout poznámky k vydání." #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." -msgstr "Prosím zkontrolujte své internetové připojení." +msgstr "Prosím zkontrolujte své připojení k internetu." #. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "Nemohu spustit aktualizační nástroj" +msgstr "Nemohu spustit nástroj pro aktualizaci na vyšší řadu" #: ../UpdateManager/DistUpgradeFetcher.py:150 msgid "" @@ -894,14 +890,14 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" -msgstr "Autentizace selhala." +msgstr "Selhalo ověření pravosti." #: ../UpdateManager/DistUpgradeFetcher.py:229 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" -"Autentizace aktualizace selhala. Může jít o problém se sítí nebo se " +"Ověření pravosti aktualizace selhalo. Může jít o problém se sítí nebo se " "serverem. " #: ../UpdateManager/GtkProgress.py:108 @@ -968,9 +964,8 @@ msgid "Version %s: \n" msgstr "Verze %s: \n" #: ../UpdateManager/UpdateManager.py:539 -#, fuzzy msgid "Downloading list of changes..." -msgstr "Stahuji seznam změn ..." +msgstr "Stahuji seznam změn..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" @@ -1117,7 +1112,7 @@ msgstr "Zaš_krtnout" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" -msgstr "Zkontrolovat dostupnost nových aktualizací v distribučních kanálech" +msgstr "Zkontrolovat dostupnost nových aktualizací v kanálech softwaru" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" @@ -1153,7 +1148,7 @@ msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -"Aktualizace softwaru opravuje chyby, eliminuje bezpečnostní zranitelnosti a " +"Aktualizace softwaru opravují chyby, eliminuje bezpečnostní zranitelnosti a " "poskytují nové vlastnosti." #: ../data/glade/UpdateManager.glade.h:19 @@ -1181,9 +1176,8 @@ msgid "_Install Updates" msgstr "Na_instalovat aktualizace" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "_Upgrade" -msgstr "U_pgrade" +msgstr "_Aktualizovat" #: ../data/glade/UpdateManager.glade.h:26 msgid "changes" @@ -1290,7 +1284,7 @@ msgstr "Třetí strana" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" -msgstr "_Zkontrolovat aktualizace automaticky" +msgstr "_Kontrolovat aktualizace automaticky" #: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" @@ -1476,9 +1470,8 @@ msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 -#, fuzzy msgid "Canonical supported Open Source software" -msgstr "Udržováno komunitou (Universe)" +msgstr "Svobodný software oficiálně podporovaný společností Canonical" #. CompDescription #: ../data/channels/Ubuntu.info.in:64 @@ -1677,10 +1670,10 @@ msgstr "Software nekompatibilní s DFSG" #~ msgstr "Přerušit _stahování" #~ msgid "Could not find any upgrades" -#~ msgstr "Žádné upgrady nebyly nalezeny." +#~ msgstr "Žádné aktualizace na vyšší řadu nebyly nalezeny." #~ msgid "Your system has already been upgraded." -#~ msgstr "Váš systém byl již upgradován." +#~ msgstr "Váš systém byl již aktualizován na vyšší řadu" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" @@ -1694,7 +1687,7 @@ msgstr "Software nekompatibilní s DFSG" #~ msgstr "Aktualizace Ubuntu" #~ msgid "Cannot install all available updates" -#~ msgstr "Nelze nainstalovat všechny dostupné aktualizace" +#~ msgstr "Nelze nainstalovat všechny dostupné aktualizace na vyšší řadu" #~ msgid "" #~ "Examining your system\n" @@ -1711,19 +1704,21 @@ msgstr "Software nekompatibilní s DFSG" #~ msgstr "Oficiálně podporované" #~ msgid "The following updates will be skipped:" -#~ msgstr "Následující aktualizace budou přeskočeny:" +#~ msgstr "Budou přeskočeny následující aktualizace na vyšší řadu:" #~ msgid "About %li seconds remaining" -#~ msgstr "Zhruba %li sekund zbývá" +#~ msgstr "Zbývá přibližně %li sekund" #~ msgid "Download is complete" -#~ msgstr "Stahování bylo dokončeno" +#~ msgstr "Stahování je hotovo" #~ msgid "The upgrade aborts now. Please report this bug." -#~ msgstr "Upgrade byl předčasně ukončen. Prosím oznamte to jako chybu" +#~ msgstr "" +#~ "Aktualizace na vyšší řadu byla předčasně ukončena. Prosím oznamte to jako " +#~ "chybu" #~ msgid "Upgrading Ubuntu" -#~ msgstr "Upgraduje se Ubuntu" +#~ msgstr "Aktualizuje se Ubuntu na vyšší řadu" #~ msgid "Hide details" #~ msgstr "Skrýt detaily" @@ -1732,40 +1727,40 @@ msgstr "Software nekompatibilní s DFSG" #~ msgstr "Zobrazit detaily" #~ msgid "Only one software management tool is allowed to run at the same time" -#~ msgstr "V jednu chvíli může běžet jen jeden nástroj pro správu software" +#~ msgstr "V jednu chvíli může běžet jen jeden nástroj pro správu softwaru" #~ msgid "" #~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first." #~ msgstr "" -#~ "Uzavřete nejdříve prosím jiné aplikace, jako např. \"aptitude\" nebo " +#~ "Prosím, uzavřete nejdříve jiné aplikace jako např. \"aptitude\" nebo " #~ "\"Synaptic\"." #~ msgid "Channels" -#~ msgstr "Zdroje" +#~ msgstr "Kanály" #~ msgid "Keys" #~ msgstr "Klíče" #~ msgid "Installation Media" -#~ msgstr "Instalační Medium" +#~ msgstr "Instalační média" #~ msgid "Software Preferences" -#~ msgstr "Předvolby software" +#~ msgstr "Volby softwaru" #~ msgid " " #~ msgstr " " #~ msgid "Channel" -#~ msgstr "Zdroje" +#~ msgstr "Kanál" #~ msgid "Components" #~ msgstr "Součásti" #~ msgid "Add Channel" -#~ msgstr "Přidat zdroj" +#~ msgstr "Přidat kanál" #~ msgid "Edit Channel" -#~ msgstr "Editvat zdroj" +#~ msgstr "Upravit kanál" #~ msgid "_Add Channel" #~ msgid_plural "_Add Channels" @@ -1774,7 +1769,7 @@ msgstr "Software nekompatibilní s DFSG" #~ msgstr[2] "_Přidat kanály" #~ msgid "_Custom" -#~ msgstr "_Uživatelský" +#~ msgstr "_Vlastní" #~ msgid "Ubuntu 6.06 LTS" #~ msgstr "Ubuntu 6.06 LTS" diff --git a/po/csb.po b/po/csb.po index 47143244..f55fb7af 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-08 04:10+0000\n" "Last-Translator: Michôł Òstrowsczi \n" "Language-Team: Kashubian \n" @@ -156,20 +156,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Nie je mòżno zaktualizowac wëmôgónëch meta-paczétów" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -178,23 +178,23 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Fela òbczas ùdowierzaniô niechtërnëch paczétów" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Nie je mòżno zainstalowac '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -203,11 +203,11 @@ msgstr "" "felã. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -297,21 +297,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Fela òbczas aktualizacëji" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -320,15 +320,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "CZë chcesz zrëszëc aktualizacëjã?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Instalacëja aktualizacëji nie darzëła sã." -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -337,21 +337,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -360,65 +360,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Rëmôj" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Fela òbczas zacwierdzaniô" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Sprôwdzanié menadżera paczétów" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -428,19 +428,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -508,11 +508,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Pòlét 'diff' nie òsta nalazłé" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -522,7 +522,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -530,7 +530,7 @@ msgstr[0] "%d paczét òstanié rëmniãty." msgstr[1] "%d paczétë òstaną rëmniãte." msgstr[2] "%d paczétów òstaną rëmniãtëch." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -538,7 +538,7 @@ msgstr[0] "%d nowi paczétë òstaną zainstalowóne." msgstr[1] "%d nowi paczét òstanie zainstalowóny." msgstr[2] "%d nowëch paczétów òstanie zainstalowónëch." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -546,7 +546,7 @@ msgstr[0] "%d paczét òstanié zaktualizowóny." msgstr[1] "%d paczétë òstaną zaktualizowóne." msgstr[2] "%d paczétów òstanie zaktualizowónëch." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -554,39 +554,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Twojô systema je fùl zaktualizowónô" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Felëjë przistãpnëch aktualizacëjów. Aktualizacëjô òstanié òprzestónô." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Rëmôj %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instalëjë %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Aktualizëjë %s" @@ -620,11 +620,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Wëmògóne je zrëszenié kòmpùtra znowa" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/da.po b/po/da.po index dee2a8eb..9979f379 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 15:55+0000\n" "Last-Translator: Lasse Bang Mikkelsen \n" "Language-Team: Danish \n" @@ -158,20 +158,20 @@ msgstr "" "Dit system indeholder ødelagte pakker som ikke kunne repareres med dette " "program. Reparér dem venligst med synaptic eller apt-get, før du fortsætter." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Kan ikke opgradere de krævede metapakker" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Det ville være nødvendigt at fjerne en vital pakke" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Kunne ikke beregne opgraderingen" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -184,11 +184,11 @@ msgstr "" "filerne i /var/log/dist-upgrade/ i fejlrapporten." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Fejl ved godkendelse af nogle pakker" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -198,12 +198,12 @@ msgstr "" "kan prøve igen senere. Se nedenfor en liste over pakker som ikke kunne " "godkendes." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Kan ikke installere \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -212,11 +212,11 @@ msgstr "" "som en fejl. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Kan ikke gætte metapakke" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -339,11 +339,11 @@ msgstr "" "genaktivere dem efter opgraderingen med \"software-properties\"-værktøjet " "eller med synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Fejl under opdatering" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -351,11 +351,11 @@ msgstr "" "En fejl opstod under opdateringen. Dette skyldes som regel et " "netværksproblem, tjek venligst din netværksforbindelse og prøv igen." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Ikke tilstrækkeligt ledig diskplads" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -367,15 +367,15 @@ msgstr "" "køre 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Vil du starte opgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Kunne ikke installere opgraderingerne" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -389,11 +389,11 @@ msgstr "" "Rapportér venligst denne fejl mod \"update-manager\"-pakken og inkludér " "filerne i /var/log/dist-upgrade/ i fejlrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Kunne ikke hente opgraderingerne" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -401,11 +401,11 @@ msgstr "" "Opgraderingen afbrydes nu. Tjek venligst din internetforbindelse eller dit " "installationsmedie og prøv igen. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Support stoppede for nogle programmer" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -419,23 +419,23 @@ msgstr "" "Hvis du ikke har slået software vedligeholdt af fællesskabet (universe) til, " "vil disse pakker blive foreslået fjernet i det næste trin." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Fjern forældede pakker?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Spring dette trin over" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Fjern" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Fejl under gennemførelse" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -444,27 +444,27 @@ msgstr "" "information. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Genskaber oprindelig systemtilstand" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Henter tilbageportering af \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Undersøger pakkehåndtering" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Klargøring af opgraderingen fejlede" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -474,15 +474,15 @@ msgstr "" "fejl mod \"update-manager\"-pakken og inkludér filerne i /var/log/dist-" "upgrade/ i fejlrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Opdaterer arkivinformation" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Ugyldig pakkeinformation" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -497,19 +497,19 @@ msgstr "" "manager\"-pakken og inkludér filerne i /var/log/dist-upgrade/ i " "fejlrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Anmoder om bekræftelse" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Opgraderer" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Søger efter forældet software" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Systemopgradering er fuldført" @@ -581,11 +581,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Kommandoen \"diff\" blev ikke fundet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Der opstod en alvorlig fejl" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -599,28 +599,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakke vil blive fjernet." msgstr[1] "%d pakker vil blive fjernet." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d ny pakke vil blive installeret." msgstr[1] "%d nye pakker vil blive installeret." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pakke vil blive opgraderet." msgstr[1] "%d pakker vil blive opgraderet." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -631,7 +631,7 @@ msgstr "" "\n" "Du skal hente i alt %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -639,17 +639,17 @@ msgstr "" "Hentning og installation af opgraderingen kan tage flere timer og kan ikke " "afbrydes senere." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "Luk alle åbne programmer og dokumenter for at undgå tab af data." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Dit system er opdateret" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -657,17 +657,17 @@ msgstr "" "Der er ingen opgraderinger tilgængelige for dit system. Opgraderingen vil nu " "blive afbrudt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Fjern %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Installér %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Opgradér %s" @@ -703,11 +703,11 @@ msgstr "" "Denne hentning vil tage omkring %s med en 1 Mbit DSL-forbindelse og omkring %" "s med et 56k modem" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Genstart af maskinen påkrævet" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/de.po b/po/de.po index c12b6359..7aca6004 100644 --- a/po/de.po +++ b/po/de.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: Sebastian Heinlein \n" "Language-Team: German GNOME Translations \n" @@ -164,20 +164,20 @@ msgstr "" "werden können. Bitte reparieren Sie diese mit Synaptic oder apt-get, bevor " "Sie fortfahren." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Die erforderlichen Metapakete können nicht aktualisiert werden" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Ein grundlegendes Paket müsste entfernt werden" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Die Aktualisierung konnte nicht berechnet werden" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -189,11 +189,11 @@ msgstr "" "erstellen Sie hierfür einen Fehlerbericht." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Fehler bei der Echtheitsbestätigung einiger Pakete" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -204,12 +204,12 @@ msgstr "" "später noch einmal. Die unten stehenden Pakete konnten nicht auf ihre " "Echtheit hin bestätigt werden:" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "›%s‹ kann nicht installiert werden" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -218,11 +218,11 @@ msgstr "" "Sie hierfür einen Fehlerbericht. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Metapaket konnte nicht bestimmt werden" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -347,11 +347,11 @@ msgstr "" "Sie können diese nach dem Upgrade mit dem 'software-properties'-Werkzeug " "oder mit Synaptic reaktivieren." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Fehler während der Aktualisierung" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -360,11 +360,11 @@ msgstr "" "Netzwerkprobleme zurückzuführen. Bitte überprüfen Sie Ihre " "Netzwerkverbindung und versuchen Sie es noch einmal." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Unzureichender freier Festplattenspeicher" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -376,15 +376,15 @@ msgstr "" "temporäre Pakete von frühreren Installation mit 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Möchten Sie die Aktualisierung starten?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Die Aktualisierungen konnten nicht installiert werden" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -400,11 +400,11 @@ msgstr "" "manager\" und fügen sie alle Dateien in /var/log/dist-upgrade dem " "Fehlerbericht hinzu." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Die Aktualisierungen konnten nicht heruntergeladen werden" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -413,11 +413,11 @@ msgstr "" "Internet-Verbindung oder Ihr Installationsmedium und versuchen Sie es noch " "einmal. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -432,23 +432,23 @@ msgstr "" "Wenn sie 'universe' nicht aktiviert haben, werden diese Pakete im nächsten " "Schritt zum Entfernen vorgeschlagen." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Veraltete Pakete entfernen?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "Ü_berspringen" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Entfernen" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Fehler beim Anwenden" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -457,28 +457,28 @@ msgstr "" "Nachricht für nähere Informationen. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Wiederherstellen des alten Systemzustandes" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Lade Rückportierung von '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Paketverwaltung wird überprüft" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Aktualisierung vorbereiten" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -488,15 +488,15 @@ msgstr "" "Ein unlösbares Problem trat beim Berechnen der Aktualisierung auf. Bitte " "erstellen Sie hierfür einen Fehlerbericht." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Aktualisiere Quellen-Information" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Ungültige Paketinformationen" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -511,19 +511,19 @@ msgstr "" "einen Fehlerbericht für das Paket \"update-manager\" und fügen sie alle " "Dateien in /var/log/dist-upgrade dem Fehlerbericht hinzu." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Nach Bestätigung fragen" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Aktualisiere" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Nach veralteter Software wird gesucht" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Aktualisierung ist abgeschlossen." @@ -597,11 +597,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Das 'diff'-Kommando konnte nicht gefunden werden" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Ein fataler Fehler ist aufgetreten" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -617,28 +617,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s Paket wird entfernt." msgstr[1] "%s Pakete werden entfernt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s neues Paket wird installiert." msgstr[1] "%s neue Pakete werden installiert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s Paket wird aktualisiert." msgstr[1] "%s Pakete werden aktualisiert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -649,7 +649,7 @@ msgstr "" "\n" "Insgesamt müssen %s heruntergeladen werden. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -657,35 +657,35 @@ msgstr "" "Die Aktualisierung kann mehrere Stunden in Anspruch nehmen. Desweiteren kann " "sie zu keinem späteren Zeitpunkt mehr abgebrochen werden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Um Datenverlust zu vermeiden, schließen Sie alle offenen Anwendungen und " "Dokumente." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Ihr System ist auf dem aktuellen Stand" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "%s wird entfernt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "%s wird installiert" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "%s wird aktualisiert" @@ -721,11 +721,11 @@ msgstr "" "Das Herunterladen wird ungefähr %s mit einer 1Mbit DSL-Verbindung und " "ungefähr %s mit einer 56k Modemverbindung dauern" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Neustart erforderlich" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/el.po b/po/el.po index bd9da55e..b3685c48 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" @@ -161,20 +161,20 @@ msgstr "" "διορθωθούν με αυτό το λογισμικό. Παρακαλώ διορθώστε τα μέσω synaptic ή apt-" "get για να συνεχίσετε." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Αδυναμία αναβάθμισης απαιτούμενων μετα-πακέτων" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Ένα απαραίτητο πακέτα θα πρέπει να απομακρυνθεί" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Αδυναμία υπολογισμού της αναβάθμισης" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -187,11 +187,11 @@ msgstr "" "στην αναφορά σφάλματος τα αρχεία στο /var/log/dist-upgrade/." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Σφάλμα πιστοποίησης κάποιων πακέτων" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -201,12 +201,12 @@ msgstr "" "σε ένα πρόβλημα δικτύου. Προσπαθήστε αργότερα. Δείτε παρακάτω τη λίστα των " "μη πιστοποιημένων πακέτων." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Αδυναμία εγκατάστασης '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -215,11 +215,11 @@ msgstr "" "ως σφάλμα. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Αδυναμία εύρεσης μετα-πακέτου" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -343,11 +343,11 @@ msgstr "" "Μπορείτε να τις ενεργοποιήσετε μετά την αναβάθμιση με το εργαλείο 'software-" "properties' ή με το synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Σφάλμα κατά την ενημέρωση" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -355,11 +355,11 @@ msgstr "" "Δημιουργήθηκε ένα πρόβλημα κατά την αναβάθμιση. Αυτό συνήθως σημαίνει " "πρόβλημα δικτύου. Ελέγξτε τη σύνδεση δικτύου σας και προσπαθήστε ξανά." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Δεν υπάρχει αρκετός χώρος στο δίσκο" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -371,15 +371,15 @@ msgstr "" "προηγούμενων εγκαταστάσεων με την εντολή 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Θέλετε να ξεκινήσετε την αναβάθμιση;" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Αδυναμία εγκατάστασης των αναβαθμίσεων" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -394,11 +394,11 @@ msgstr "" "συμπεριλάβετε και τα αρχεία του /var/log/dist-upgrade/ στην αναφορά " "σφάλματος." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Αδυναμία λήψης των αναβαθμίσεων" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -406,11 +406,11 @@ msgstr "" "Η αναβάθμιση τώρα θα τερματιστεί. Παρακαλώ ελέγξτε τη σύνδεση σας στο " "διαδίκτυο ή το μέσο εγκατάστασης και προσπαθήστε ξανά. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Η υποστήριξη για ορισμένες εφαρμογές τερματίστηκε" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -424,23 +424,23 @@ msgstr "" "Αν δεν έχετε ενεργοποιημένο το 'universe' , θα γίνει πρόταση για απομάκρυνση " "αυτών των πακέτων στο επόμενο βήμα." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Αφαίρεση παρωχημένων πακέτων;" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "Παράκα_μψη αυτου του βήματος" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Απομάκρυνση" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Σφάλμα κατά την υποβολή" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -449,27 +449,27 @@ msgstr "" "παρακάτω μήνυμα για περισσότερες πληροφορίες. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Γίνεται επαναφορά αρχικής κατάστασης συστήματος" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Λήψη backport του '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Έλεγχος διαχειριστή πακέτων" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Απέτυχε η προετοιμασία της αναβάθμισης" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -479,15 +479,15 @@ msgstr "" "Παρακαλώ αναφέρετε το ως σφάλμα στο πακέτο 'update-manager' και επισυνάψτε " "στην αναφορά τα αρχεία του /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Ενημέρωση πληροφοριών repository" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Μη έγκυρες πληροφορίες πακέτου" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -502,19 +502,19 @@ msgstr "" "συμπεριλάβετε και τα αρχεία του /var/log/dist-upgrade/ στην αναφορά " "σφάλματος." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Ερώτηση για επιβεβαίωση" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Γίνεται αναβάθμιση" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Γίνεται αναζήτηση για παρωχημένο λογισμικό" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Η αναβάθμιση συστήματος ολοκληρώθηκε." @@ -587,11 +587,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Η εντολή 'diff' δεν βρέθηκε" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Προέκυψε μοιραίο σφάλμα" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -606,28 +606,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d πακέτο πρόκειται να απομακρυνθεί." msgstr[1] "%d πακέτα πρόκειται να απομακρυνθούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d νέο πακέτο πρόκειται να εγκατασταθεί." msgstr[1] "%d νέα πακέτα πρόκειται να εγκατασταθούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d πακέτο πρόκειται να αναβαθμιστεί." msgstr[1] "%d πακέτα πρόκειται να αναβαθμιστούν." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -638,7 +638,7 @@ msgstr "" "\n" "Θα πρέπει να κάνετε συνολική λήψη %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -647,19 +647,19 @@ msgstr "" "Η αναβάθμιση μπορεί να διαρκέσει αρκετές ώρες και δεν είναι δυνατή η ακύρωση " "της αργότερα." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Για να αποφύγετε απώλεια δεδομένων, κλείστε όλες τις ανοικτές εφαρμογές και " "έγγραφα." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Το σύστημα σας είναι ενημερωμένο" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -667,17 +667,17 @@ msgstr "" "Δεν υπάρχουν διαθέσιμες αναβαθμίσεις για το σύστημα σας. Η αναβάθμιση θα " "ακυρωθεί." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Απομάκρυνση %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Εγκατάσταση %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Αναβάθμιση %s" @@ -713,11 +713,11 @@ msgstr "" "Η λήψη θα διαρκέσει περίπου %s με σύνδεση 1Mbit DSL και περίπου %s με ένα " "56K μόντεμ." -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Απαιτείται επανεκκίνηση" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/en_AU.po b/po/en_AU.po index 527ff9ba..49d05713 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:01+0000\n" "Last-Translator: David Satchell \n" "Language-Team: English (Australia) \n" @@ -155,20 +155,20 @@ msgstr "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Can't upgrade required meta-packages" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "An essential package would have to be removed" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -177,11 +177,11 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -191,12 +191,12 @@ msgstr "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Can't install '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -205,11 +205,11 @@ msgstr "" "bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Can't guess meta-packag" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -321,11 +321,11 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Error during update" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -333,11 +333,11 @@ msgstr "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Not enough free disk space" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -349,15 +349,15 @@ msgstr "" "'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Could not install the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -371,11 +371,11 @@ msgstr "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bug report." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Could not download the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -383,11 +383,11 @@ msgstr "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -396,23 +396,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Remove obsolete packages?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Skip This Step" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Remove" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Error during commit" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -421,42 +421,42 @@ msgstr "" "information. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Restoring original system state" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Checking package manager" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Updating repository information" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Invalid package information" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -471,19 +471,19 @@ msgstr "" "manager' package and include the files in /var/log/dist-upgrade/ in the bug " "report." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Asking for confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Upgrading" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Searching for obsolete software" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "System upgrade is complete." @@ -551,11 +551,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "The 'diff' command was not found" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "A fatal error occured" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -569,28 +569,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -601,7 +601,7 @@ msgstr "" "\n" "You have to download a total of %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -609,33 +609,33 @@ msgstr "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time during the process." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Your system is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Remove %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Install %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" @@ -669,11 +669,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Reboot required" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/en_CA.po b/po/en_CA.po index bd5dd1c3..c56733fd 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" @@ -157,20 +157,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -181,23 +181,23 @@ msgstr "" "The key you selected could not be removed. Please report this as a bug." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -206,11 +206,11 @@ msgstr "" "The key you selected could not be removed. Please report this as a bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -300,22 +300,22 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 #, fuzzy msgid "Error during update" msgstr "Error removing the key" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -324,15 +324,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,21 +341,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -364,51 +364,51 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 #, fuzzy msgid "Checking package manager" msgstr "Another package manager is running" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -417,15 +417,15 @@ msgid "" msgstr "" "The key you selected could not be removed. Please report this as a bug." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -435,20 +435,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 #, fuzzy msgid "Upgrading" msgstr "Upgrade finished" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -515,11 +515,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -529,28 +529,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -558,40 +558,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Your system is up-to-date!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -625,11 +625,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/en_GB.po b/po/en_GB.po index 76123691..c47b2fc1 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:14+0000\n" "Last-Translator: Jeff Bailes \n" "Language-Team: \n" @@ -157,20 +157,20 @@ msgstr "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Can't upgrade required meta-packages" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "An essential package would have to be removed" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -183,11 +183,11 @@ msgstr "" "files in /var/log/dist-upgrade/ in the bugreport." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -197,12 +197,12 @@ msgstr "" "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Can't install '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -211,11 +211,11 @@ msgstr "" "bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Can't guess meta-package" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -335,11 +335,11 @@ msgstr "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Error during update" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -347,11 +347,11 @@ msgstr "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Not enough free disk space" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -363,15 +363,15 @@ msgstr "" "installations using 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Could not install the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -385,11 +385,11 @@ msgstr "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Could not download the upgrades" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -397,11 +397,11 @@ msgstr "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Support for some applications ended" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -415,23 +415,23 @@ msgstr "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Remove obsolete packages?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Skip This Step" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Remove" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Error during commit" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -440,27 +440,27 @@ msgstr "" "more information. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Restoring original system state" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Fetching backport of '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Checking package manager" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Preparing the upgrade failed" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -470,15 +470,15 @@ msgstr "" "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Updating repository information" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Invalid package information" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -493,19 +493,19 @@ msgstr "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Asking for confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Upgrading" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Searching for obsolete software" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "System upgrade is complete." @@ -577,11 +577,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "The 'diff' command was not found" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "A fatal error occured" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -595,28 +595,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d package is going to be removed." msgstr[1] "%d packages are going to be removed." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d new package is going to be installed." msgstr[1] "%d new packages are going to be installed." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d package is going to be upgraded." msgstr[1] "%d packages are going to be upgraded." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -627,7 +627,7 @@ msgstr "" "\n" "You have to download a total of %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -635,17 +635,17 @@ msgstr "" "Fetching and installing the upgrade can take several hours and cannot be " "cancelled at any time later." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Your system is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -653,17 +653,17 @@ msgstr "" "There are no upgrades available for your system. The upgrade will now be " "cancelled." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Remove %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Install %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" @@ -699,11 +699,11 @@ msgstr "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Reboot required" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/eo.po b/po/eo.po index 005b2ed4..b09e0063 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:05+0000\n" "Last-Translator: Ed Glez \n" "Language-Team: Esperanto \n" @@ -154,20 +154,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -176,23 +176,23 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Ne eblis instalo de '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -201,11 +201,11 @@ msgstr "" "cimo. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -298,11 +298,11 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Eraro dum gxisdatigo" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -310,11 +310,11 @@ msgstr "" "Problemo okazis dum la gxisdatigo. Kutime tio okazas pro retaj problemoj, " "bonvolu kontroli vian retan konekton kaj reprovi." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Ne estas suficxa libera loko en disko" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -323,15 +323,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Cxu vi volas komenci la promociadon?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Ne eblis instali la promociojn" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -340,21 +340,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -363,23 +363,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -388,42 +388,42 @@ msgstr "" "pliaj informoj. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Kontrolado de pakajxa direktisto" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Gxisdatigo de deponeja informo" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Nevalida pakajxa informo" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -433,19 +433,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Petado de konfirmo" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Promociado" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Sercxado de ne plu uzata programaro" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Sistema promocio estas kompleta." @@ -511,11 +511,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "La komando 'diff' ne estis trovata" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -525,28 +525,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -554,39 +554,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Via sistemo estas gxisdatigita" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -620,11 +620,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/es.po b/po/es.po index ab764d9f..bc372889 100644 --- a/po/es.po +++ b/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Ricardo Pérez López \n" "Language-Team: Spanish \n" @@ -164,20 +164,20 @@ msgstr "" "software. Por favor, arréglelos primero usando Synaptic o apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "No se han podido actualizar los meta-paquetes requeridos" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Se ha tenido que desinstalar un paquete esencial" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "No se ha podido calcular la actualización" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -188,11 +188,11 @@ msgstr "" "actualización. Por favor, informe de ésto como un fallo." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Error autenticando algunos paquetes" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -202,12 +202,12 @@ msgstr "" "problema transitorio en la red. Pruebe de nuevo más tarde. Vea abajo una " "lista de los paquetes no autenticados." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "No se ha podido instalar «%s»" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -216,11 +216,11 @@ msgstr "" "como un fallo. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "No se ha podido determinar el meta-paquete" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -343,11 +343,11 @@ msgstr "" "list». Puede volver a activarlas tras la actualización con la herramienta " "«Propiedades del software», o con Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Error durante la actualización" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -356,11 +356,11 @@ msgstr "" "tipo de problema en la red, por lo que le recomendamos que compruebe su " "conexión de red y vuelva a intentarlo." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "No hay espacio suficiente en el disco" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -372,15 +372,15 @@ msgstr "" "de instalaciones anteriores tecleando «sudo apt-get clean» en una terminal." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "¿Desea comenzar la actualización?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "No se han podido instalar las actualizaciones" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -396,11 +396,11 @@ msgstr "" "incluya en el informe de error los archivos contenidos en /var/log/dist-" "upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "No se han podido descargar las actualizaciones" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -408,11 +408,11 @@ msgstr "" "La actualización se interrumpirá ahora. Por favor, compruebe su conexión a " "Internet (o su soporte de instalación) y vuelva a intentarlo. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Algunas aplicaciones han dejado de tener soporte" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -426,23 +426,23 @@ msgstr "" "Si no tiene habilitado el software mantenido por la comunidad («universe»), " "se le sugerirá que desinstale estos paquetes en el siguiente paso." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "¿Desinstalar los paquetes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Saltar este paso" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Quitar" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Error durante la confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -451,27 +451,27 @@ msgstr "" "inferior para más información. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Restaurando el estado original del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Descargando «backport» de '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Comprobando gestor de paquetes" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Falló la preparación de la actualización" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -482,15 +482,15 @@ msgstr "" "«update-manager», e incluya en el informe los archivos contenidos en el " "directorio /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Actualizando la información del repositorio" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Información de paquete no válida" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -505,19 +505,19 @@ msgstr "" "el paquete «update-manager» e incluya en el informe de error los archivos " "contenidos en /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Solicitando confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Actualizando" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Buscando paquetes obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "La actualización del sistema se ha completado." @@ -590,11 +590,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "No se ha encontrado el comando «diff»" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Ha ocurrido un error fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -609,28 +609,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Se va a desinstalar %d paquete." msgstr[1] "Se van a desinstalar %d paquetes." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Se va a instalar %d paquete nuevo." msgstr[1] "Se van a instalar %d paquetes nuevos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Se va a actualizar %d paquete." msgstr[1] "Se van a actualizar %d paquetes." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -641,7 +641,7 @@ msgstr "" "\n" "Debe descargar un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -649,19 +649,19 @@ msgstr "" "Descargar e instalar la actualización puede llevar varias horas, y no se " "podrá cancelar después en ningún momento." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Para prevenir la pérdida de datos, cierre todas las aplicaciones y " "documentos." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Su sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -669,17 +669,17 @@ msgstr "" "No hay actualizaciones disponibles para su sistema. Se ha cancelado la " "actualización." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Desinstalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" @@ -715,11 +715,11 @@ msgstr "" "Esta descarga llevará aprox. %s con una conexión DSL de 1Mbit, y aprox. %s " "con un módem de 56k." -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Se requiere reiniciar el equipo" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/et.po b/po/et.po index a4425b1a..47c8215a 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: margus723 \n" "Language-Team: Estonian \n" @@ -155,20 +155,20 @@ msgstr "" "parandada. Palun paranda need kasutades rakendust \"synaptic\" või \"apt-get" "\" enne jätkamist." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Ei suuda uuendada nõutud metapakette" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Hädavajalik pakett tuleks eemaldada" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Ei suuda uuendusi ette valmistada" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -177,11 +177,11 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Mõnede pakettide tuvastamisel tekkis viga." -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -191,23 +191,23 @@ msgstr "" "Sa võid hiljem uuesti proovida. Vaata järgnevalt mittetuvastatud pakettide " "nimekirja." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Ei saa paigaldada '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -297,11 +297,11 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Uuendamise ajal ilmnes viga." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -309,11 +309,11 @@ msgstr "" "Uuendamise ajal ilmnes viga. See on tavaliselt mingit sorti võrgu probleem, " "palun kontrolli oma võrguühendust ning proovi hiljem uuesti." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Kõvakettal pole piisavalt vaba ruumi." -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -322,15 +322,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -339,21 +339,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Ei suuda uuendusi alla laadida" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -362,65 +362,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Eemalda iganenud paketid?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Jäta see samm vahele" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Eemalda" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -430,19 +430,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Kinnitamise küsimine" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -508,11 +508,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -522,28 +522,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -551,39 +551,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -617,11 +617,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/eu.po b/po/eu.po index 112e33c1..5db4cb45 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: Xabi Ezpeleta \n" "Language-Team: Basque \n" @@ -164,22 +164,22 @@ msgstr "" "Zure sistemak hautsitako paketeak ditu eta ezin izan dira konpondu aplikazio " "honekin. Konpon itzazu lehenbait lehen snaptic edo apt-get erabiliz." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 #, fuzzy msgid "Can't upgrade required meta-packages" msgstr "Ezin izan dira berritu beharrezko meta-paketeak" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 #, fuzzy msgid "A essential package would have to be removed" msgstr "Ezinbesteko pakete bat ezabatu beharko da" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -188,23 +188,23 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Ezin da %s instalatu" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -213,11 +213,11 @@ msgstr "" "eman. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -307,21 +307,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -330,15 +330,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -347,21 +347,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -370,65 +370,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -438,19 +438,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -516,11 +516,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -530,28 +530,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -559,39 +559,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -625,11 +625,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/fa.po b/po/fa.po index a406408b..9e3ffa5f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-09 15:49+0000\n" "Last-Translator: Pedram Ganjeh Hadidi \n" @@ -153,20 +153,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -175,34 +175,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -292,21 +292,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,65 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -423,19 +423,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -501,11 +501,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -515,25 +515,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -541,39 +541,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -607,11 +607,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/fi.po b/po/fi.po index 30341a20..b0d33caf 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:15+0000\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-23 12:07+0000\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" @@ -77,7 +77,7 @@ msgstr "Pääpalvelin" #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format msgid "Server for %s" -msgstr "Palvelin maalle %s" +msgstr "Palvelin maalle: %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" @@ -160,20 +160,20 @@ msgstr "" "ohjelmalla. Korjaa ne käyttämällä synapticia tai apt-get -komentoa ennen " "jatkamista." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Tarvittavia metapaketteja ei voi päivittää" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Välttämätön paketti jouduttaisiin poistamaan" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" -msgstr "Tarvittavia päivitykseen liittyviä tarkistuksia ei voitu tehdä" +msgstr "Ei voitu tehdä tarvittavia päivitykseen liittyviä tarkistuksia" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -187,11 +187,11 @@ msgstr "" "tiedostot hakemistosta /var/log/dist-upgrade raporttiin." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" -msgstr "Joitain paketteja varmennettaessa tapahtui virhe" +msgstr "Joitain paketteja todennettaessa tapahtui virhe" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -201,24 +201,24 @@ msgstr "" "Voit yrittää myöhemmin uudelleen. Alla on luettelo todentamattomista " "paketeista." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Ei voitu asentaa pakettia \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" -"Vaadittua pakettia ei voitu asentaa. Ole hyvä ja luo tästä virheraportti. " +"Pyydettyä pakettia ei voitu asentaa. Ole hyvä ja luo tästä virheraportti. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Ei voitu arvata metapakettia" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -253,7 +253,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" -msgstr "Luetaan välimuistia" +msgstr "Luetaan kätköä" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" @@ -273,7 +273,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" -msgstr "Sopivaa peilipalvelinta ei löytynyt" +msgstr "Ei löytynyt sopivaa palvelinta" #: ../DistUpgrade/DistUpgradeControler.py:250 #, python-format @@ -287,17 +287,18 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" "Ohjelmavarastotietoja tarkistettaessa ei löydetty sopivaa palvelinmerkintää " -"päivitystä varten. Tämä on mahdollista, jos käytät sisäistä peilipalvelinta " -"tai palvelintiedot ovat vanhentuneet.\n" +"päivitystä varten. Tämä voi tapahtua jos käytät sisäistä peilipalvelinta tai " +"palvelintiedot ovat vanhentuneita.\n" "\n" -"Haluatko silti kirjoittaa \"sources.list\"-tiedoston uudelleen? Jos valitset " -"\"Kyllä'\", kaikki \"%s\"-merkinnät muutetaan \"%s\"-merkinnöiksi.\n" +"Haluatko uudelleenkirjoittaa \"sources.list\"-tiedoston joka tapauksessa? " +"Jos valitset \"Kyllä'\", kaikki \"%s\"-merkinnät muutetaan \"%s\"-" +"merkinnöiksi.\n" "Jos valitset \"Ei\", päivitys keskeytyy." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" -msgstr "Lisätäänkö oletusohjelmalähteet?" +msgstr "Luo ja ota käyttöön oletusohjelmalähteet?" #: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format @@ -321,8 +322,8 @@ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"Ohjelmavarastotietojen päivittäminen johti epäkelpoon tiedostoon. Tee " -"asiasta virheraportti." +"Ohjelmavarastotietojen päivittäminen johti epäkelpoon tiedostoon. Ilmoita " +"tästä virheraportilla." #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" @@ -338,11 +339,11 @@ msgstr "" "käytöstä. Voit ottaa ne uudelleen käyttöön päivityksen jälkeen " "\"Ohjelmalähteet\"-työkalulla tai Synaptic-ohjelmalla." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Virhe päivitettäessä" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -350,11 +351,11 @@ msgstr "" "Päivitettäessä tapahtui virhe. Tämä on yleensä jonkinlainen verkko-ongelma. " "Tarkista verkkoyhteytesi toiminta ja yritä uudelleen." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Levytilaa ei ole riittävästi" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -366,15 +367,15 @@ msgstr "" "komentoa 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" -msgstr "Haluatko aloittaa päivityksen?" +msgstr "Haluatko aloittaaa päivityksen?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" -msgstr "Päivityksiä ei voitu asentaa" +msgstr "Ei voitu asentaa päivityksiä" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -388,11 +389,11 @@ msgstr "" "Tee tästä virheraportti paketille \"update-manager\" ja sisällytä tiedostot " "hakemistosta /var/log/dist-upgrade/ raporttiin." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Päivityksiä ei voitu noutaa" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -400,11 +401,11 @@ msgstr "" "Päivitys keskeytyy. Tarkista Internet-yhteytesi tai asennuslähteesi (esim. " "CD) toiminta ja yritä uudelleen. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Tuki joillekin sovelluksille on loppunut" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -419,51 +420,52 @@ msgstr "" "ohjelmalähdettä (\"universe\"), näitä paketteja suositellaan poistettaviksi " "seuraavassa kohdassa." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" -msgstr "Poistetaanko vanhentuneet paketit?" +msgstr "Poista vanhentuneet paketit?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Ohita tämä kohta" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Poista" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" -msgstr "Virhe suoritettaessa" +msgstr "Virhe suoritettaesa" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -"Siistimisvaiheessa ilmeni ongelma. Lisätietoja allaolevassa viestissä. " +"Jokin ongelma tapahtui siistimisvaiheessa. Alla olevassa viestissä on " +"lisätietoja. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Palautetaan alkuperäistä järjestelmän tilaa" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Noudetaan paketin \"%s\" takaisinsovitusta" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Tarkistetaan pakettienhallintaa" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Päivityksen valmistelu epäonnistui" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -473,15 +475,15 @@ msgstr "" "virheraportilla \"update-manager\"-paketille, sisällyttäen mukaan tiedostot " "hakemistossa /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Päivitetään ohjelmavarastotietoja" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Pakettitiedot viallisia" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -496,19 +498,19 @@ msgstr "" "\"update-manager\" ja sisällytä tiedostot hakemistosta /var/log/dist-" "upgrade/ raporttiin." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Pyydetään vahvistusta" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Päivitetään" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" -msgstr "Etsitään vanhentuneita ohjelmistoja" +msgstr "Etsitään vanhetuneita ohjelmia" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Järjestelmän päivitys on valmis." @@ -516,7 +518,7 @@ msgstr "Järjestelmän päivitys on valmis." #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "Aseta \"%s\" asemaan \"%s\"" +msgstr "Laita '%s' asemaan '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 msgid "Fetching is complete" @@ -543,12 +545,12 @@ msgstr "Noudetaan tiedostoa %li/%li" #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" -msgstr "Muutoksia toteutetaan" +msgstr "Toteutetaan muutoksia" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "Pakettia \"%s\" ei voitu asentaa" +msgstr "Ei voitu asentaa: '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 msgid "" @@ -580,11 +582,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Komentoa 'diff' ei löytynyt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" -msgstr "Tapahtui vakava virhe" +msgstr "Vakava virhe tapahtui" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -598,28 +600,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paketti poistetaan." msgstr[1] "%d pakettia poistetaan." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d uusi paketti asennetaan." msgstr[1] "%d uutta pakettia asennetaan." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paketti päivitetään." msgstr[1] "%d pakettia päivitetään." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -630,7 +632,7 @@ msgstr "" "\n" "Noudettavaa yhteensä %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -638,34 +640,34 @@ msgstr "" "Päivityksen noutaminen ja asennus voi kestää useita tunteja, eikä sitä voi " "keskeyttää enää myöhemmin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Jottei tietoja häviäisi, sulje kaikki avoinna olevat ohjelmat ja dokumentit." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Järjestelmäsi on ajan tasalla" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Päivityksiä ei ole saatavilla järjestelmälle. Päivitys keskeytyy." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Poista %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Asenna %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Päivitä %s" @@ -699,11 +701,11 @@ msgid "" "with a 56k modem" msgstr "Nouto kestää noin %s 1Mbit-DSL-yhteydellä ja noin %s 56kbit-modeemilla" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" -msgstr "Uudelleenkäynnistys vaaditaan" +msgstr "Uudellenkäynnistys vaaditaan" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -738,7 +740,7 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "Aloitetaanko päivitys?" +msgstr "Aloita päivitys?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" @@ -828,7 +830,7 @@ msgstr "Tarkista Internet-yhteytesi toimivuus." #. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "Päivitystyökalua ei voitu suorittaa" +msgstr "Ei voitu suorittaa päivitystyökalua" #: ../UpdateManager/DistUpgradeFetcher.py:150 msgid "" @@ -864,7 +866,7 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "Purku epäonnistui" +msgstr "Ei voitu purkaa" #: ../UpdateManager/DistUpgradeFetcher.py:215 msgid "" @@ -959,7 +961,7 @@ msgstr "Muut päivitykset" #: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" -msgstr "Versio %s: \n" +msgstr "Versio: %s: \n" #: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." @@ -1024,8 +1026,8 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"Et saa enää turvallisuuspäivityksiä tai muita kriittisiä päivityksiä. " -"Päivitä uudempaan versioon Ubuntu Linuxista. Katso lisätietoja " +"Turvallisuuspäivityksiä tai muita kriittisiä päivityksiä ei enää ole " +"saatavilla. Päivitä uudempaan versioon Ubuntusta. Katso lisätietoja " "päivittämisestä osoitteesta http://www.ubuntu.com/" #: ../UpdateManager/UpdateManager.py:863 @@ -1095,7 +1097,7 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" -msgstr "Käynnistetään pakettienhallintaa" +msgstr "Käynnistetään päivitysten hallintaa" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1147,8 +1149,8 @@ msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -"Ohjelmapäivitykset korjaavat ohjelmavirheitä ja mahdollisia turva-aukkoja, " -"sekä tarjoavat uusia ominaisuuksia." +"Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat uusia " +"ominaisuuksia." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1391,7 +1393,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" -msgstr "Tarkista, onko jakelusta uusia julkaisuja" +msgstr "Tarkista onko uusia julkaisuja jakelusta" #: ../data/update-manager.schemas.in.h:3 msgid "" @@ -1405,7 +1407,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" -msgstr "Muistuta kanavaluettelon uudelleen lataamisesta" +msgstr "Muistuta kanavaluettelon uudelleenlataamisesta" #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" @@ -1469,7 +1471,7 @@ msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" -msgstr "Canonicalin tukemat avoimen lähdekoodin ohjelmat" +msgstr "Canonicalin tukemat avoimen lähdekoodin ohjelmistot" #. CompDescription #: ../data/channels/Ubuntu.info.in:64 @@ -1514,7 +1516,7 @@ msgstr "Takaisinsovitetut päivitykset" #. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 \"Breezy Badger\"" +msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description #: ../data/channels/Ubuntu.info.in:123 diff --git a/po/fr.po b/po/fr.po index af75b0f1..6d8e8e8f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:02+0000\n" "Last-Translator: E.Malandain \n" "Language-Team: French \n" @@ -162,20 +162,20 @@ msgstr "" "ce logiciel. Veuillez d'abord les réparer à l'aide de Synaptic ou d'apt-get " "avant de continuer." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Les meta-paquets désirés n'ont pu être mis à jour" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Un paquet essentiel devrait être enlevé" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Impossible de calculer la mise à jour" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -188,11 +188,11 @@ msgstr "" "fichiers de /var/log/dist-upgrade/ dans le rapport de bogue." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Erreur lors de l'authentification de certains paquets" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -202,12 +202,12 @@ msgstr "" "problème temporaire du réseau. Vous voudrez sans doute réessayer plus tard. " "Vous trouverez ci-dessous une liste des paquets non authentifiés." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Impossible d'installer « %s »" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -216,11 +216,11 @@ msgstr "" "rapporter ce bogue. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Impossible de déterminer le méta-paquet" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -344,11 +344,11 @@ msgstr "" "désactivées. Vous pouvez les réactiver après la mise à jour avec l'outil « " "Gestionnaire de canaux logiciels » ou avec Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Erreur lors de la mise à jour" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -357,11 +357,11 @@ msgstr "" "un problème de réseau. Veuillez vérifier votre connexion au réseau et " "réessayer." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Pas assez d'espace libre sur le disque" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -373,15 +373,15 @@ msgstr "" "effectuées en utilisant la commande « sudo apt-get clean »." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Voulez-vous commencer la mise à jour ?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Les mises à jour n'ont pu être installées" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -396,11 +396,11 @@ msgstr "" "joindre les fichiers du répertoire /var/log/dist-upgrade dans le rapport de " "bogue." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Les mises à jour n'ont pu être téléchargées" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -408,11 +408,11 @@ msgstr "" "Abandon de la mise à jour. Veuillez vérifier votre connexion Internet ou " "votre médium d'installation puis réessayez. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "La prise en charge de certaines applications a pris fin" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -427,23 +427,23 @@ msgstr "" "Si vous n'avez pas activé le dépôt « universe », la suppression de ces " "paquets vous sera suggérée lors de la prochaine étape." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Enlever les paquets obsolètes ?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Passer cette étape" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Supprimer" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Erreur pendant la soumission" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -452,27 +452,27 @@ msgstr "" "ci-dessous pour plus d'informations. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Restaurer le système dans son état d'origine" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Recherche du backport (rétro-portage) de « %s »" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Vérification du gestionnaire de paquets" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Échec lors de la préparation de la mise à jour" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -482,15 +482,15 @@ msgstr "" "remonter ce bug concernant le paquet 'update manager' et d'inclure les " "fichiers contenus dans le dossier /var/log/dist-upgrade/ à votre rapport." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Mise à jour des informations sur les dépôts en cours" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Information sur le paquet invalide" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -505,19 +505,19 @@ msgstr "" "comme un bogue du paquet « update-manager » et joindre les fichiers du " "répertoire /var/log/dist-upgrade dans le rapport de bogue." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Demande de confirmation" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Mise à jour en cours" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Recherche de logiciels obsolètes" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "La mise à jour du système est terminée." @@ -590,11 +590,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "La commande « diff » n'a pu être trouvée" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Une erreur fatale est survenue" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -609,28 +609,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paquet va être supprimé." msgstr[1] "%d paquets vont être supprimés." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nouveau paquet va être installé." msgstr[1] "%d nouveaux paquets vont être installés." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paquet va être mis à jour." msgstr[1] "%d paquets vont être mis à jour." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -641,7 +641,7 @@ msgstr "" "\n" "Vous avez à télécharger un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -649,19 +649,19 @@ msgstr "" "La récupération et l'installation de la mise à jour peuvent prendre " "plusieurs heures et l'opération ne peut être annulée ultérieurement." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pour éviter toute perte de données accidentelle, veuillez fermer toutes les " "applications et documents ouverts." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Votre système est à jour" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -669,17 +669,17 @@ msgstr "" "Il n'y a pas de mises à niveau disponibles pour votre système. La mise à " "niveau va maintenant être annulée." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Supprimer %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Installer %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Mettre à jour %s" @@ -715,11 +715,11 @@ msgstr "" "Ce téléchargement prendra environ %s avec une connexion Dsl 1 Mbits et " "environ %s avec un modem 56k" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Redémarrage de l'ordinateur requis" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/fur.po b/po/fur.po index 2cc4f1ea..43971e24 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-08-25 05:55+0000\n" "Last-Translator: Marco \n" "Language-Team: Friulian \n" @@ -152,20 +152,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -291,21 +291,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,65 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,19 +422,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -500,11 +500,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -514,28 +514,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -543,39 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -609,11 +609,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/gl.po b/po/gl.po index 6955807d..3b09833d 100644 --- a/po/gl.po +++ b/po/gl.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:01+0000\n" -"Last-Translator: Xosé \n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-19 00:43+0000\n" +"Last-Translator: Felipe Gil Castiñeira \n" "Language-Team: galician\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -93,7 +93,7 @@ msgstr "Servidores personalizados" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 msgid "Software Channel" -msgstr "Canal de Software" +msgstr "Canle de Software" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 @@ -164,37 +164,37 @@ msgstr "" "software. Por favor, arránxeos primeiro usando Synaptic ou apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Non se puideron actualizar os meta-paquetes necesarios" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Tívose que desinstalar un paquete esencial" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Non se puido calcular a actualización" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Produciuse un erro imposíbel de resolver ao calcular a actualización.\n" +"Produciuse un erro imposible de resolver ao calcular a actualización.\n" "\n" -"Informa deste erro do pacote \"update-manager\" e inclúe os ficheiros que " +"Informe deste erro do paquete \"update-manager\" e inclúa os ficheiros que " "hai en /var/log/dist-upgrade/ no informe." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Erro autenticando algúns paquetes" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -204,12 +204,12 @@ msgstr "" "problema transitorio na rede. Probe de novo máis tarde. Vexa abaixo unha " "lista dos paquetes non autenticados." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Non se puido instalar '%s»" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -218,11 +218,11 @@ msgstr "" "un fallo. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Non se puido determinar o meta-paquete" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -230,10 +230,10 @@ msgid "" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" -"O teu sistema non contén os pacotes ubuntu-desktop, kubuntu-desktop ou " -"edubuntu-desktop e non foi posíbel detectar cal é a versión de ubuntu que se " +"O seu sistema non contén os paquetes ubuntu-desktop, kubuntu-desktop ou " +"edubuntu-desktop e non foi posible detectar cal é a versión de ubuntu que se " "está a executar.\n" -" Instala un dos pacotes mencionados usando synaptic ou apt-get antes de " +" Instale un dos paquetes mencionados usando synaptic ou apt-get antes de " "continuar." #: ../DistUpgrade/DistUpgradeControler.py:75 @@ -250,14 +250,14 @@ msgid "" "'%s'" msgstr "" "Produciuse un erro ao engadir o CD, hai que cancelar a actualización. " -"Informa deste erro se se trata dun CD válido de Ubuntu.\n" +"Informe deste erro se se trata dun CD válido de Ubuntu.\n" "\n" "A mensaxe de erro foi:\n" "\"%s\"" #: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" -msgstr "A ler a caché" +msgstr "Lendo caché" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" @@ -271,9 +271,9 @@ msgid "" "If networking is expensive for you choose 'No'." msgstr "" "A actualización pode empregar a rede para comprobar as actualizacións máis " -"recentes e descarregar pacotes que non se atopan no CD.\n" -"Se dispós dde acceso rápido ou barato á rede deberías respostar \"Si\" aquí. " -"Se che custa caro, escolle \"Non\"." +"recentes e descargar paquetes que non se atopan no CD.\n" +"Se dispón de acceso rápido ou barato á rede debería respostar \"Si\" aquí. " +"Se a súa conexión é cara, escolla \"Non\"." #: ../DistUpgrade/DistUpgradeControler.py:249 msgid "No valid mirror found" @@ -320,15 +320,15 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:302 msgid "Repository information invalid" -msgstr "Información de depósito non válida" +msgstr "Información de repositorio non válida" #: ../DistUpgrade/DistUpgradeControler.py:303 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"A actualización da información do depósito xerou un ficheiro incorrecto. Por " -"favor, informe disto como un erro." +"A actualización da información do repositorio xerou un ficheiro incorrecto. " +"Por favor, informe disto como un erro." #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" @@ -340,15 +340,15 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"Desactiváronse algunhas entradas de terceiras partes no teu sources.list. " -"Pódelas volver a activar coa ferramenta \"software-properteis\" ou con " +"Desactiváronse algunhas entradas de terceiras partes no seu sources.list. " +"Pódeas volver a activar coa ferramenta \"software-properteis\" ou con " "synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Erro durante a actualización" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -357,11 +357,11 @@ msgstr "" "tipo de problema na rede, por favor, comprobe a súa conexión de rede e " "volvao a intentar." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Non hai espazo suficiente no disco" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -373,15 +373,15 @@ msgstr "" "de instalacións anteriores tecleando «sudo apt-get clean» nun terminal." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Desexa comezar a actualización?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Non se puideron instalar as actualizacións" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -389,17 +389,17 @@ msgid "" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Vaise cancelar a actualización agora. O teu sistema podería ficar nun estado " +"Vaise cancelar a actualización agora. O seu sistema podería ficar nun estado " "que non permita ser usado. Procedeuse a recuperalo (dpkg --configure -a).\n" "\n" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" -"var/log/dist-upgrade/ no informe." +"Por favor, informe desde fallo do paquete \"update-manager\" e inclúa os " +"ficheiros en /var/log/dist-upgrade/ no informe." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Non se puideron descargar as actualizacións" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -407,11 +407,11 @@ msgstr "" "A actualización interromperase agora. Por favor, comprobe a súa conexión a " "Internet (ou o seu soporte de instalación) e volvao a intentar. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Rematou o soporte para algunhas aplicacións" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -419,29 +419,29 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" -"Canonical Ltd. non forece máis axuda para os pacotes de software seguintes. " -"Pode que ainda podas obter axuda da comunidade.\n" +"Canonical Ltd. non forece máis axuda para os paquetes de software seguintes. " +"Pode que ainda poda obter axuda da comunidade.\n" "\n" -"Se non tes activado o software mantido pola comunidade (universe), " -"suxerirase que elimines estes pacotes no paso seguinte." +"Se non ten activado o software mantido pola comunidade (universe), " +"suxerirase que elimine estes paquetes no paso seguinte." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Desinstalar os paquetes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Saltar este paso" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Borrar" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Erro durante a confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -450,45 +450,45 @@ msgstr "" "para máis información. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "A retornar ao estado orixinal do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "A procurar backports de \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Comprobando xestor de paquetes" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Fallou a preparación da actualización" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -"Fallou a preparación do sistema para a actualización. Informa deste erro do " -"pacote \"update-manager\" e inclúe os ficheiros de /var/log/dist-upgrade/ no " -"informe." +"Fallou a preparación do sistema para a actualización. Informe deste erro do " +"paquete \"update-manager\" e inclúa os ficheiros de /var/log/dist-upgrade/ " +"no informe." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Actualizando a información do repositorio" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Información de paquete non válida" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -497,26 +497,25 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" -"Após actualizar a información sobre os pacotes, o pacote \"%s\", que é " -"esencial, xa non se dá atopado.\n" -"Isto indica un erro serio.\n" -"\n" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" -"var/log/dist-upgrade/ no informe." +"Despois de actualizar a información sobre os paquetes, o paquete \"%s\", que " +"é esencial, xa non se dá atopado.\n" +"Isto indica un erro serio, por favor, informe deste fallo do paquete " +"\"update-manager\" e inclúa no informe os ficheiros que hai en /var/log/dist-" +"upgrade/" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Solicitando confirmación" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Actualizando" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Buscando paquetes obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Comletouse a actualización do sistema." @@ -563,8 +562,9 @@ msgid "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"Vaise cancelar a actualización agora. Informa desde fallo do pacote \"update-" -"manager\" e inclúe os ficheiros en /var/log/dist-upgrade/ no informe." +"Vaise cancelar a actualización agora. Informe deste fallo do paquete " +"\"update-manager\" e inclúa no informe os ficheiros que hai en /var/log/dist-" +"upgrade/ ." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 @@ -581,54 +581,54 @@ msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" -"Perderás as modificacións feitas neste ficheiro de configuración se escolles " +"Perderá as modificacións feitas neste ficheiro de configuración se escolle " "substituílo por unha versión máis nova." #: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Non se atopou o comando 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Ocorreu un erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " "now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" -"Informa desde fallo do pacote \"update-manager\" e inclúe os ficheiros en /" -"var/log/dist-upgrade/ main.log e /var/log/dist-upgrade/apt.log no informe. " -"Vaise cancelar a actualización agora.\n" -"O teu ficheiro sources.list orixinal gardouse en /etc/apt/sources.list." +"Informe deste fallo do paquete \"update-manager\" e inclúa os ficheiros en /" +"var/log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log no informe. " +"Agora vaise cancelar a actualización.\n" +"O seu ficheiro sources.list orixinal gardouse en /etc/apt/sources.list." "distUpgrade." #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "Vaise eliminar o pacote %d" -msgstr[1] "Vanse eliminar os pacotes %d" +msgstr[0] "Vaise eliminar o paquete %d" +msgstr[1] "Vanse eliminar os paquetes %d" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "Vaise instalar o pacote novo %d" -msgstr[1] "Vanse instalar os pacotes novos %d" +msgstr[0] "Vaise instalar o paquete novo %d" +msgstr[1] "Vanse instalar os paquetes novos %d" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "Vaise actualizar o pacote %d" -msgstr[1] "Vanse actualizar os pacotes %d" +msgstr[0] "Vaise actualizar o paquete %d" +msgstr[1] "Vanse actualizar os paquetes %d" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -637,45 +637,45 @@ msgid "" msgstr "" "\n" "\n" -"Baixache un total de %s. " +"Baixou un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -"Descarregar e instalar a actualización pode levar varias horas e non se pode " +"Descargar e instalar a actualización pode levar varias horas e non se pode " "cancelar posteriormente." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "Para previr a perda de datos peche todas as aplicacións e documentos." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -"Non hai actualizacións disponíbeis par o teu sistema. Cancelamos a " +"Non hai actualizacións dispoñibles para o seu sistema. Vaise cancelar a " "actualización." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Desinstalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" @@ -688,7 +688,7 @@ msgstr "%li días %li horas %li minutos" #: ../DistUpgrade/DistUpgradeView.py:29 #, python-format msgid "%li hours %li minutes" -msgstr "%li houras %li minutos" +msgstr "%li horas %li minutos" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format @@ -711,15 +711,15 @@ msgstr "" "Esta descarga levará uns %s cunha conexión DSL de 1MB e uns %s cun módem de " "56k." -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" -msgstr "Compre reiniciar o equipo" +msgstr "Cómpre reiniciar o equipo" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" -"A actualización finalizou e compre reiniciar o equipo. Desexa facelo agora?" +"A actualización finalizou e compre reiniciar o equipo. Desexao facer agora?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): @@ -768,7 +768,7 @@ msgstr "Diferenza entre os ficheiros" #: ../DistUpgrade/DistUpgrade.glade.h:11 msgid "Fetching and installing the upgrades" -msgstr "A descarregar e instalar as actualizacións" +msgstr "A descargar e instalar as actualizacións" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" @@ -854,7 +854,7 @@ msgstr "Descargando a ferramenta de actualización" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." msgstr "" -"A ferramenta de actualización guiaralle a través do proceso de actualización." +"A ferramenta de actualización guiarao a través do proceso de actualización." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -893,8 +893,8 @@ msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" -"Fallou a verificación da actualización. Pode que haxa algún problema coa " -"rede ou co servidor. " +"Fallou a verificación da actualización. Pode haber un problema coa rede ou " +"co servidor. " #: ../UpdateManager/DistUpgradeFetcher.py:228 msgid "Authentication failed" @@ -905,38 +905,38 @@ msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" -"Fallou a autenticación da actualización. Debe haber un problema coa rede ou " +"Fallou a autenticación da actualización. Pode haber un problema coa rede ou " "o servidor. " #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "A descarregar o ficheiro %(current)li de %(total)li con %(speed)s/s" +msgstr "A descargar o ficheiro %(current)li de %(total)li con %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 #, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "A descarregar o ficheiro %(current)li de %(total)li" +msgstr "A descargar o ficheiro %(current)li de %(total)li" #: ../UpdateManager/UpdateManager.py:206 msgid "The list of changes is not available" -msgstr "Non se dispón da listaxe coas mudanzas" +msgstr "Non se dispón da lista de cambios" #: ../UpdateManager/UpdateManager.py:212 msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -"A listaxe coas modificacións ainda non está disponíbel.\n" -"Téntao máis tarde." +"A a lista de cambios aínda non está dispoñible.\n" +"Ténteo máis tarde." #: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" -"Non se puido descarregar a listaxe de modificacións. \n" -"Comproba a túa conexión á Internet." +"Non se puido descargar a lista de cambios.\n" +"Comprobe a súa conexión á Internet." #. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 @@ -951,7 +951,7 @@ msgstr "Actualizacións recomendadas" #. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" -msgstr "Actualizacións suxeridas" +msgstr "Actualizacións aconselladas" #: ../UpdateManager/UpdateManager.py:241 msgid "Backports" @@ -973,7 +973,7 @@ msgstr "Versión %s: \n" #: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." -msgstr "A descarregar a listaxe coas modificacións..." +msgstr "A descargar a lista de cambios..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" @@ -1034,7 +1034,7 @@ msgid "" "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"Non poderá obter novas correcciones de seguridade nin actualizacións " +"Non poderá obter novas correccións de seguridade nin actualizacións " "críticas. Actualícese a unha versión posterior de Ubuntu Linux. Visite " "http://www.ubuntu.com para máis información sobre a actualización." @@ -1061,7 +1061,7 @@ msgstr "" #. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "Nengún" +msgstr "Ningún" #. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 @@ -1087,10 +1087,10 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -"Tes que comprobar as actualizacións manualmente\n" +"Ten que comprobar as actualizacións manualmente\n" "\n" -"O teu sistema non comproba as actualizacións automaticamente. Podes " -"configurar este comportamento en Fontes de Software na pestana " +"O seu sistema non comproba as actualizacións automaticamente. Pode " +"configurar este comportamento en Fontes de Software na lingüeta " "Actualizacións desde a Internet." #: ../data/glade/UpdateManager.glade.h:4 @@ -1111,7 +1111,7 @@ msgstr "Cambios" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "Mudanzas e descrición da actualización" +msgstr "Cambios e descrición da actualización" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1136,11 +1136,11 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" -"Executa unha actualización da distribución para instalar tantas " -"actualizacións como sexa posíbel.\n" +"Execute unha actualización da distribución para instalar tantas " +"actualizacións como sexa posible.\n" "\n" "Isto pode ser causado por unha actualización de distribución incompleta, " -"pacotes de software non oficiais ou por estares a executar unha versión en " +"paquetes de software non oficiais ou por estar a executar unha versión en " "desenvolvemento." #: ../data/glade/UpdateManager.glade.h:16 @@ -1184,13 +1184,12 @@ msgid "_Install Updates" msgstr "_Instalar actualizacións" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "_Upgrade" -msgstr "A_ctualizar" +msgstr "Act_ualizar" #: ../data/glade/UpdateManager.glade.h:26 msgid "changes" -msgstr "mudanzas" +msgstr "cambios" #: ../data/glade/UpdateManager.glade.h:27 msgid "updates" @@ -1222,13 +1221,13 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" -"Para mellorar a impresión dos usuarios de Ubuntu participa no concurso de " -"popularidade. Se che parece ben, cada semana se enviará anonimamente ao " -"proxecto Ubunto unha listaxe coas aplicacións que tes instaladas e a " -"frecuencia coa que as usas.\n" +"Para mellorar a impresión dos usuarios sobre Ubuntu participe no concurso " +"de popularidade. Se o fai, cada semana mandarase de forma anónima ao " +"proxecto Ubuntu unha lista coas aplicacións que ten instaladas e a " +"frecuencia coa que as usa.\n" "\n" "Os resultados empréganse para mellorar o soporte das aplicacións máis " -"populares e para resaltalas nos resultados das procuras." +"populares e para ponderalas nos resultados das procuras." #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" @@ -1297,7 +1296,7 @@ msgstr "_Comprobar actualizacións automaticamente:" #: ../data/glade/SoftwareProperties.glade.h:24 msgid "_Download updates automatically, but do not install them" -msgstr "_Descarregar as actualizacións automaticamentes, mais non instalalas" +msgstr "_Descargar as actualizacións automaticamente, pero non as instalar" #: ../data/glade/SoftwareProperties.glade.h:25 msgid "_Import Key File" @@ -1316,12 +1315,12 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -"A información sobre o software disponíbel está anticuada\n" +"A información sobre o software dispoñible está anticuada\n" "\n" "Para instalar software e actualizacións de fontes engadidas hai pouco ou " -"modificadas terás que recargar a información sobre o software disponíbel.\n" +"modificadas terá que recargar a información sobre o software dispoñible.\n" "\n" -"Precisarás dunha conexión á internet para continuar." +"Precisará unha conexión á internet para continuar." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" @@ -1351,10 +1350,10 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -"Introduce a liña APT completa do depósito que queres engadir como " +"Introduza a liña APT completa do depósito que quere engadir como " "fonte\n" "\n" -"A liña APT inclúe o tipo, localización e componentes dun depósito, por " +"A liña APT inclúe o tipo, localización e compoñentes dun depósito, por " "exemplo \"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 @@ -1411,8 +1410,8 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" -"Se se desactiva a comprobación automática de actualizacións terás que " -"recargar a lista de canais manualmente. Esta opción permite agochar o " +"Se se desactiva a comprobación automática de actualizacións terá que " +"recargar a lista de canles manualmente. Esta opción permite agochar o " "recordatorio que se mostra neste caso." #: ../data/update-manager.schemas.in.h:4 @@ -1432,7 +1431,7 @@ msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" -"Almacena o estado do expandedor que contén a lista de mudanzas e a descrición" +"Almacena o estado do expandedor que contén a lista de cambios e a descrición" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" @@ -1440,7 +1439,7 @@ msgstr "O tamaño da ventá" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" -msgstr "Configurar as fontes para programas e actualizacións instalábeis" +msgstr "Configurar as fontes para programas e actualizacións instalables" #. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 @@ -1526,7 +1525,7 @@ msgstr "Actualizacións de backports" #. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 \"Breezy Badger\"" +msgstr "CD con Ubuntu 5.10 \"Breezy Badger\"" #. Description #: ../data/channels/Ubuntu.info.in:123 @@ -1536,17 +1535,17 @@ msgstr "Cdrom con Ubuntu 5.10 \"Breezy Badger\"" #. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" -msgstr "Actualizacións de Seguranza para Ubuntu 5.10" +msgstr "Actualizacións de seguranza de Ubuntu 5.10" #. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" -msgstr "Actualizacións para Ubuntu 5.10" +msgstr "Actualizacións de Ubuntu 5.10" #. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" -msgstr "Backports de Ubuntu 5.10" +msgstr "Actualizacións de Ubuntu 5.10" #. Description #: ../data/channels/Ubuntu.info.in:152 @@ -1611,12 +1610,12 @@ msgstr "Copyright restrinxido" #. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" -msgstr "Actualizacións de Seguranza para Ubuntu 4.10" +msgstr "Actualizacións de seguranza de Ubuntu 4.10" #. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" -msgstr "Actualizacións para Ubuntu 4.10" +msgstr "Actualizacións de Ubuntu 4.10" #. Description #: ../data/channels/Ubuntu.info.in:228 diff --git a/po/he.po b/po/he.po index cca523c2..8673bdd5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 08:48+0000\n" "Last-Translator: Yaniv Abir \n" "Language-Team: Hebrew \n" @@ -161,20 +161,20 @@ msgstr "" "במערכת שלך נמצאות חבילות פגומות שתוכנה זו לא יכולה לתקן. אנא תקן אותן " "באמצעות synaptic או apt-get לפני שתמשיך." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "לא ניתן לשדרג את חבילות העל הנדרשות" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "חבילה חיונית תוסר בלית ברירה" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "לא ניתן לחשב את השדרוג" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -186,34 +186,34 @@ msgstr "" "כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "שגיאה באימות חלק מן החבילות" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "לא ניתן להתקין את \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "לא ניתן להתקין חבילה הכרחית. אנא דווחו על זה כבאג. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "לא ניתן לקבוע חבילת על" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -321,11 +321,11 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "שגיאה במהלך העדכון" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -333,11 +333,11 @@ msgstr "" "הייתה בעיה בתהליך העידכון. בדרך כלל זוהי בעיית רשת, אנא בדקו את חיבור הרשת " "שלכם ונסו שנית." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "אין מספיק שטח בדיסק הקשיח" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -348,15 +348,15 @@ msgstr "" "זמניות מהתקנות קודמות על ידי שימוש בפקודה \"sudo apt-get clean\"." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "האם ברצונך להתחיל את השדרוג?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "לא ניתן להתקין את השדרוג" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -365,22 +365,22 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "לא ניתן להוריד את השדרוג" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" "השדרוג בוטל. אנא בדקו את החיבור לאינטרנט או את מדיית ההתקנה ונסו שנית. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "המיכה בכמה תוכנות הסתיימה" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -389,65 +389,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "להסיר חבילות שאינן בתוקף?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_דלג על השלב" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_הסר" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "שגיאה בעת ביצוע" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "מספר בעיות נתגלו במהלך הניקוי. אנא הסתכל בהודעות מטה למידע נוסף. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "מחזיר את המערכת למצבה המקורי" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "בודק את מנהל החבילות" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "מעדכן מידע מאגרים" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "מידע חבילה לא תקין" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -459,19 +459,19 @@ msgstr "" "לאחר שהמידע על החבילות עודכן החבילה ההכרחית \"%s\" לא נמצא.\n" "כנראה שחלה שגיאה חמורה, אנא דווחו על הדבר כבאג." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "משדרג" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "שדרוג המערכת הושלם." @@ -537,11 +537,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "ארעה שגיאה חמורה" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -551,28 +551,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "חבילה %d תוסר." msgstr[1] "%d חבילות יוסרו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "חבילה חדשה %d תותקן." msgstr[1] "%d חבילות חדשות יותקנו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d חבילות חדשות ישודרגו." msgstr[1] "%d חבילות ישודרגו." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -583,7 +583,7 @@ msgstr "" "\n" "יש להוריד %s בסה\"כ. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -591,33 +591,33 @@ msgstr "" "הורדת והתקנת השדרוג עשויה לארוך מספר שעות. לא ניתן לבטל את התהליך בשלב מאוחר " "יותר." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "כדי למנוע אובדן מידע אנא סגרו על תוכנית או מסמך פתוחים." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "המערכת שלך מעודכנת" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "אין שדרוגים זמינים למערכת שלך. השדרוג יתבטל כעת." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "הסר %s " -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "התקן %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "שדרג %s" @@ -651,11 +651,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "נדרשת הפעלה מחדש" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "השדרוג הסתיים ונדרשת הפעלה מחדש. האם ברצונך לעשות זאת כעת?" diff --git a/po/hi.po b/po/hi.po index 9665d78f..c5ba1ffb 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-08-01 15:30+0000\n" "Last-Translator: Gaurav Mishra \n" "Language-Team: Hindi \n" @@ -152,20 +152,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -291,21 +291,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,65 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,19 +422,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -500,11 +500,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -514,28 +514,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -543,39 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -609,11 +609,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/hr.po b/po/hr.po index 7c63b86e..dcf6f6b4 100644 --- a/po/hr.po +++ b/po/hr.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 14:38+0000\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-18 19:37+0000\n" "Last-Translator: Ante Karamatić \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" @@ -159,20 +159,20 @@ msgstr "" "Vaš sistem sadrži neispravne pakete koji nisu mogli biti popravljeni s ovim " "programom. Popravite ih koristeći synaptic ili apt-get prije nastavljanja." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Ne mogu nadograditi potrebne meta-pakete" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Bitan paket bi morao biti uklonjen" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Nisam mogao riješiti nadogradnju" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -185,11 +185,11 @@ msgstr "" "var/log/dist-upgrade/ u prijavu." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Greška prilikom identificiranja nekih paketa" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -199,12 +199,12 @@ msgstr "" "problem s mrežom i trebali biste pokušati ponovo kasnije. Pogledajte popis " "neidentificiranih paketa." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Ne mogu instalirati '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -213,11 +213,11 @@ msgstr "" "grešku. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Nisam mogao odrediti meta-paket" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -336,11 +336,11 @@ msgstr "" "ih uključiti nakon nadogradnje sa 'software-properties' alatom ili sa " "synapticom." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Greška prilikom nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -348,11 +348,11 @@ msgstr "" "Pojavio se problem prilikom nadogradnje. Obično se radi o mrežnom problemu, " "pa vas molim da provjerite vašu mrežu i pokušate ponovo." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Nema dovoljno praznog mjesta na disku" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -364,15 +364,15 @@ msgstr "" "koristeći 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Želite li pokrenuti nadogradnju?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Nisam mogao instalirati nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -386,11 +386,11 @@ msgstr "" "Molim, prijavite ovu grešku u 'update-manager' paketu i uključite datoteke " "u /var/log/dist-upgrade/ direktoriju u prijavu." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Nisam mogao preuzeti nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -398,11 +398,11 @@ msgstr "" "Nadogradnja se prekida. Molim provjerite vašu internet vezu ili " "instalacijski medij i pokušajte ponovo. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Podrška za neke programe je gotova" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -416,23 +416,23 @@ msgstr "" "Ako nemate omogućen 'universe' repozitorij, ovi paketi biti će predloženi za " "uklanjanje." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Ukloniti zastarjele pakete?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Preskoči ovaj korak" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Ukloni" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Greška prilikom čina" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -441,27 +441,27 @@ msgstr "" "više informacija. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Vraćam u početno stanje" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Dohvaćanje backporta od '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Provjeravam upravitelja paketima" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Neuspjelo pripremanje nadogradnje" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -471,15 +471,15 @@ msgstr "" "prijavite ovo kao grešku u 'update-manager' paketu i uključite iz /var/log/" "dist-upgrade/ u prijavu." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Nadograđujem podatke repozitorija" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Neispravni podaci paketa" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -494,19 +494,19 @@ msgstr "" "manager' paketu i uključite datoteke u /var/log/dist-upgrade/ direktoriju u " "prijavu." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Pitam za potvrdu" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Nadograđujem" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Tražim zastarjele programe" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Nadogradnja sustava je završena." @@ -578,11 +578,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Nisam našao naredbu 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Pojavila se ozbiljna greška" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -597,7 +597,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -605,7 +605,7 @@ msgstr[0] "%d paket će biti uklonjen." msgstr[1] "%d paketa će biti uklonjena." msgstr[2] "%d paketa će biti uklonjeno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -613,7 +613,7 @@ msgstr[0] "%d novi paket će biti instaliran." msgstr[1] "%d nova paketa će biti instalirana." msgstr[2] "%d novih paketa će biti instalirano." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -621,7 +621,7 @@ msgstr[0] "%d paket će biti nadograđen." msgstr[1] "%d paketa će biti nadograđena." msgstr[2] "%d paketa će biti nadograđeno." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -632,7 +632,7 @@ msgstr "" "\n" "Morate preuzeti ukupno %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -640,33 +640,33 @@ msgstr "" "Nadogradnja može potrajati nekoliko sati i ne može biti prekinuta niti u " "jednom trenutku." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "Da spriječite gubitak podataka zatvorite sve programe i datoteke." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Vaš sustav sadrži posljednje nadogradnje" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Nema nadogradnji za vaš sustav. Nadogradnja će biti otkazana." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Ukloni %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instaliraj %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Nadogradi %s" @@ -701,11 +701,11 @@ msgid "" msgstr "" "Preuzimanje će trajati %s sa 1Mbit DSL vezom i otprilike %s sa 56k modemom" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Potrebno je ponovno pokretanje računala" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -1192,7 +1192,7 @@ msgstr "Automatske nadogradnje" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "CDROM/DVD" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" diff --git a/po/hu.po b/po/hu.po index a9ebcb98..51c5bbb3 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -159,20 +159,20 @@ msgstr "" "javíthatóak. Kérem, először javítsa ki őket a synaptic vagy az apt-get " "segítségével." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "A szükséges meta-csomagok nem frissíthetőek" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Egy alapvető csomag eltávolításra kerülne" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Nem tudom megtervezni a frissítés menetét" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -185,11 +185,11 @@ msgstr "" "dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Hiba történt néhány csomag hitelesítése közben" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -199,23 +199,23 @@ msgstr "" "hálózati probléma okozza, ezért érdemes később újra megpróbálni. Az alábbi " "lista a hitelesíthetetlen csomagokat tartalmazza." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "'%s' nem telepíthető" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Egy szükséges csomag nem telepíthető. Kérem, jelentse ezt hibaként. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Nem tudom megállapítani a meta-csomagot" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -337,11 +337,11 @@ msgstr "" "Újraengedélyezheti őket a frissítés után a Szoftvertulajdonságok eszközzel, " "vagy a Synaptic csomagkezelővel." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Hiba történt a frissítés közben" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -349,11 +349,11 @@ msgstr "" "Hiba lépett fel a frissítés közben. Ez többnyire hálózati problémára utal. " "Kérem, ellenőrizze a hálózati kapcsolatot és próbálja újra." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Nincs elég szabad hely a merevlemezen" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -365,15 +365,15 @@ msgstr "" "fájljait a \"sudo apt-get clean\" parancs kiadásával." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Biztosan el szeretné kezdeni a frissítést?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "A frissítések nem telepíthetők" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -387,11 +387,11 @@ msgstr "" "Jelentse ezt a hibát az \"update-manager\" csomaghoz és vegye be a /var/log/" "dist-upgrade/ könyvtárban található fájlokat a hibajelentésbe." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "A frissítések nem tölthetők le" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -399,11 +399,11 @@ msgstr "" "A frissítés most félbeszakad. Kérem, ellenőrizze a hálózati kapcsolatot vagy " "a telepítő médiát és próbálja újra. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Egyes alkalmazások támogatása megszűnt" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -418,23 +418,23 @@ msgstr "" "tároló), akkor ezek a csomagok a következő lépésben eltávolításra lesznek " "javasolva." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Eltávolítja az elavult csomagokat?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "Ezen lé_pés kihagyása" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Eltávolítás" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Hiba a módosítások rögzítése közben" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -443,27 +443,27 @@ msgstr "" "információkat tartalmaz a hibára vonatkozóan. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "A rendszer eredeti állapotának helyreállítása" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "\"%s\" visszaportolt változatának letöltése" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Csomagkezelő ellenőrzése" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "A frissítés előkészítése meghiúsult" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -473,15 +473,15 @@ msgstr "" "\"update-manager\" csomaghoz és vegye be a /var/log/dist-upgrade/ " "könyvtárban található fájlokat a hibajelentésbe." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Csomagtároló-információk frissítése" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Érvénytelen csomaginformációk" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -496,19 +496,19 @@ msgstr "" "csomaghoz és vegye be a /var/log/dist-upgrade/ könyvtárban található " "fájlokat a hibajelentésbe." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Megerősítés kérése" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Frissítés folyamatban" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Elavult szoftverek keresése" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "A rendszer frissítése befejeződött." @@ -581,11 +581,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "A 'diff' parancs nem található" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Végzetes hiba történt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -600,25 +600,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d csomag el lesz távolítva." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d új csomag kerül telepítésre." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d csomag frissítve lesz." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -629,7 +629,7 @@ msgstr "" "\n" "Összes letöltendő adatmennyiség: %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -637,19 +637,19 @@ msgstr "" "A frissítés letöltése és telepítése több órát is igénybe vehet és a " "későbbiek során nem lehet bármikor megszakítani." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Az esetleges adatvesztés elkerülése érdekében zárjon be minden nyitott " "alkalmazást és dokumentumot." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "A rendszere naprakész" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -657,17 +657,17 @@ msgstr "" "Nem állnak rendelkezésre frissítések a rendszeréhez. A frissítés most " "megszakad." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "%s eltávolítása" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "%s telepítése" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "%s frissítése" @@ -703,11 +703,11 @@ msgstr "" "A letöltés körülbelül %s-ig tart 1 Mbit DSL kapcsolaton és %s-ig 56k modem " "használatával" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Újraindítás szükséges" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/id.po b/po/id.po index 9efb2317..7086109c 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Andy Apdhani \n" "Language-Team: Indonesian \n" @@ -160,20 +160,20 @@ msgstr "" "perangkat lunak ini. Silakan perbaiki terlebih dahulu dengan menggunakan " "synaptic atau apt-get sebelum melanjutkan hal ini." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Tidak dapat memutakhirkan meta-paket yang dibutuhkan" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Paket esensial akan dihapus" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menghitung pemutakhiran" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgstr "" "bug." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Kesalahan membuktikan keabsahan beberapa paket" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -199,12 +199,12 @@ msgstr "" "mungkin karena masalah pada jaringan. Anda dapat mencobanya beberapa saat " "lagi. Lihat senarai dari paket yang belum terbukti keabsahnya dibawah ini." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Tidak dapat menginstal '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -213,11 +213,11 @@ msgstr "" "ini sebagai bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Tidak dapat menebak meta-paket" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -331,11 +331,11 @@ msgstr "" "dapat mengaktifkan kembali setelah upgrade dengan alat 'software-properties' " "atau dengan synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Kesalahan pada waktu pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -343,11 +343,11 @@ msgstr "" "Terjadi masalah pada waktu pemutakhiran. Ini biasanya karena masalah " "jaringan, silakan periksa koneksi jaringan anda dan ulangi." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Kapasitas cakram tidak mencukupi" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +359,15 @@ msgstr "" "instalasi terdahulu dengan menggunakan 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Apakah anda ingin memulai pemutakhiran?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Tidak dapat menginstal pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -379,11 +379,11 @@ msgstr "" "Upgrade dibatalkan sekarang. Sistem anda dapat menjadi tidak dapat " "digunakan. Perbaikan sedang berjalan (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Tidak dapat mengunduh pemutakhiran" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -391,11 +391,11 @@ msgstr "" "Upgrade dibatalkan sekarang. Silakan periksa koneksi internet anda atau " "media instalasi dan coba lagi nanti. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -410,23 +410,23 @@ msgstr "" "Jika anda tidak mengaktifkan komponen 'universe' paket ini akan diajurkan " "untuk penghapusan dalam langkah selanjutnya." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Hapus paket usang?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Lewati Langkah Ini" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Hapus" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Kesalahan pada waktu commit" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -435,28 +435,28 @@ msgstr "" "bawah untuk informasi lebih lanjut. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Sistem dikembalikan ke keadaan awal" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Memeriksa manajer paket" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Menyiapkan upgrade" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -466,15 +466,15 @@ msgstr "" "Terjadi masalah saat menghitung pemutakhiran. Silakan laporkan ini sebagai " "bug." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Memutakhirkan informasi gudang" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Informasi paket tidak valid" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -488,19 +488,19 @@ msgstr "" "Ini mengindikasikan adanya kesalahan serius, silakan laporkan ini sebagai " "bug." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Menanyakan konfigurasi" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Meng-upgrade" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Mencari perangkat lunak usang" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Upgrade sistem telah selesai." @@ -569,11 +569,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Perintah 'diff' tidak dapat ditemukan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Terjadi kesalahan fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -588,25 +588,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s paket akan dihapus." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s paket baru akan diinstal." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s paket akan diupgrade." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -617,7 +617,7 @@ msgstr "" "\n" "Anda harus mengunduh sebanyak %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -626,34 +626,34 @@ msgstr "" "Upgrade membutuhkan waktu beberapa jam dan tidak dapat dibatalkan setelah " "itu." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Untuk mencegah kehilangan data silakan tutup seluruh aplikasi dan dokumen." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sistem anda telah up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Hapus %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instal %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" @@ -687,11 +687,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Diperlukan reboot" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/it.po b/po/it.po index 54e1bdde..6ff78572 100644 --- a/po/it.po +++ b/po/it.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:03+0000\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-22 10:13+0000\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" @@ -152,31 +152,31 @@ msgstr "Inserire un disco nell'unità:" #: ../DistUpgrade/DistUpgradeCache.py:91 msgid "Broken packages" -msgstr "Pacchetti danneggiati" +msgstr "Pacchetti non integri" #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"Il sistema contiene pacchetti danneggiati che non possono essere aggiustati " +"Il sistema contiene pacchetti non integri che non possono essere aggiustati " "con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-get" -"\" per risolvere il problema." +"\" per risolvere il probelma." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Impossibile aggiornare i meta-pacchetti richiesti" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Un pacchetto essenziale dovrebbe essere rimosso" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Impossibile calcolare l'aggiornamento" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -190,26 +190,26 @@ msgstr "" "includere nella notifica i file della cartella «/var/log/dist-upgrade»." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Errore nell'autenticare alcuni pacchetti" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Non è stato possibile autenticare alcuni pacchetti. Questo potrebbe essere " -"un problema di rete passeggero, riprovare più tardi. Segue l'elenco dei " +"un problema di rete passeggero, riprovare più tardi. Segue una lista di " "pacchetti non autenticati." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" -msgstr "Impossibile installare «%s»" +msgstr "Impossibile installare \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -218,11 +218,11 @@ msgstr "" "evento come bug. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Impossibile indovinare il meta-pacchetto" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -290,14 +290,14 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"Durante la scansione delle informazioni sui repository in uso non è stata " +"Durante la scansione delle informazioni sui repository in uso non è strata " "trovata nessuna voce di mirror per l'aggiornamento. Questo può verificarsi " "qualora si abbia in esecuzione un mirror interno o qualora le informazioni " "sul mirror siano datate.\n" "\n" -"Riscrivere lo stesso il proprio file «sources.list»? Scegliendo di «Sì», " -"tutte le voci «%s» verranno aggiornate a «%s»\n" -"Scegliendo «No» l'aggiornamento verrà annullato." +"Riscrivere lo stesso il proprio file «sources.list»? Scegliendo di sì, tutte " +"le voci «%s» verranno aggiornate a «%s»\n" +"Scegliendo di no, l'aggiornamento verrà annullato." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:267 @@ -312,8 +312,8 @@ msgid "" "Should default entries for '%s' be added? If you select 'No' the update will " "cancel." msgstr "" -"Dopo la scansione del proprio file «sources.list», non è stata trovata " -"alcuna voce valida per «%s».\n" +"Dopo la scansione del proprio file «sorces.list», non è stata trovata alcuna " +"voce valida per «%s».\n" "\n" "Aggiungere le voci predefinite per «%s»? Selezionando «No», l'aggiornamento " "verrà annullato." @@ -344,11 +344,11 @@ msgstr "" "list». È possibile abilitarle di nuovo dopo l'aggiornamento con lo strumento " "«software-properties» o con synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Errore durante l'aggiornamento" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -356,11 +356,11 @@ msgstr "" "Si è verificato un problema durante l'aggiornamento. Solitamente si tratta " "di problemi di rete, controllare la connessione di rete e riprovare." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Spazio libero su disco insufficiente" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -372,15 +372,15 @@ msgstr "" "usando \"sudo apt-get clean\"." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Iniziare l'aggiornamento?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Impossibile installare gli aggiornamenti" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -395,11 +395,11 @@ msgstr "" "Riportare questo bug per il pacchetto 'update-manager' includendo i file in /" "var/log/dist-upgrade/ nel rapporto." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Impossibile scaricare gli aggiornamenti" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -407,11 +407,11 @@ msgstr "" "Interruzione immediata dell'aggiornamento. Controllare la connessione a " "internet o il supporto di installazione e riprovare. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Supporto terminato per alcune applicazioni" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -426,23 +426,23 @@ msgstr "" "(«universe»), verrà suggerita la rimozione di questi pacchetti al prossimo " "passo." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Rimuovere i pacchetti obsoleti?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Salta questo passo" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Rimuovi" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Errore durante il commit" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -451,27 +451,27 @@ msgstr "" "seguente per maggiori informazioni. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Ripristino dello stato originale del sistema" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Recupero del backport di «%s»" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" -msgstr "Controllo del gestore di pacchetti" +msgstr "Controllo gestore dei pacchetti" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Preparazione dell'aggiornamento fallito" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -481,15 +481,15 @@ msgstr "" "evento come bug per il pacchetto «update-manager» includendo i file in «/var/" "log/dist-upgrade/» nel rapporto." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Aggiornamento delle informazioni sui repository" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Informazioni di pacchetto non valide" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -504,19 +504,19 @@ msgstr "" "pacchetto «update-manager» includendo i file in «/var/log/dist-upgrade/» nel " "rapporto." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Richiesta di conferma" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Aggiornamento" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Ricerca di software obsoleto" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "L'aggiornamento del sistema è stato completato." @@ -524,7 +524,7 @@ msgstr "L'aggiornamento del sistema è stato completato." #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "Inserire «%s» nell'unità «%s»" +msgstr "Inserire \"%s\" nell'unità \"%s\"" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 msgid "Fetching is complete" @@ -556,7 +556,7 @@ msgstr "Applicazione dei cambiamenti" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "Impossibile installare «%s»" +msgstr "Impossibile installare \"%s\"" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 msgid "" @@ -589,11 +589,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Il comando «diff» non è stato trovato" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Si è verificato un errore fatale" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -608,28 +608,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pacchetto sta per essere rimosso." msgstr[1] "%d pacchetti stanno per essere rimossi." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nuovo pacchetto sta per essere installato." msgstr[1] "%d nuovi pacchetti stanno per essere installati." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pacchetto sta per essere aggiornato." msgstr[1] "%d pacchetti stanno per essere aggiornati." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -640,7 +640,7 @@ msgstr "" "\n" "È necessario scaricare un totale di %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -648,19 +648,19 @@ msgstr "" "Il recupero e l'installazione degli aggiornamenti può richiedere diverse ore " "e non può essere annullato in un momento successivo." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" -"Per prevenire la perdita di dati, chiudere tutte le applicazioni e i " -"documenti aperti." +"Chiudere tutte le applicazioni e i documenti aperti per prevenire la perdita " +"di dati." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" -msgstr "Il sistema è aggiornato" +msgstr "Il sistema è aggiornato!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -668,17 +668,17 @@ msgstr "" "Non ci sono aggiornamenti disponibili per questo sistema. L'aggiornamento " "sarà annullato." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Rimuovere %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Installare %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Aggiornare %s" @@ -714,11 +714,11 @@ msgstr "" "Con una connessione DSL a 1 Mbit questo scaricamento richiede circa %s, con " "una connessione via modem a 56k circa %s" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" -msgstr "Richiesto riavvio" +msgstr "Riavvio richiesto" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "L'aggiornamento è finito ed è richiesto un riavvio. Riavviare ora?" @@ -869,12 +869,12 @@ msgstr "Strumento di aggiornamento" #: ../UpdateManager/DistUpgradeFetcher.py:208 msgid "Failed to fetch" -msgstr "Recupero fallito" +msgstr "Prelievo fallito" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" -"Recupero dell'aggiornamento fallito. Potrebbe dipendere da un problema di " +"Fallito il prelievo dell'aggiornamento. Potrebbe dipendere da un problema di " "rete. " #: ../UpdateManager/DistUpgradeFetcher.py:214 @@ -887,7 +887,7 @@ msgid "" "with the server. " msgstr "" "Fallita l'estrazione dell'aggiornamento. Potrebbe dipendere da un problema " -"con la connessione di rete o con il server. " +"con la connesione di rete o con il server. " #: ../UpdateManager/DistUpgradeFetcher.py:221 msgid "Verfication failed" @@ -1003,11 +1003,11 @@ msgstr[1] "È possibile installare %s aggiornamenti" #: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." -msgstr "Attendere, l'operazione potrebbe richiedere del tempo." +msgstr "Attendere, potrebbe richiedere del tempo." #: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" -msgstr "L'aggiornamento è stato completato" +msgstr "Aggiornamento completato" #: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" @@ -1041,7 +1041,7 @@ msgid "" msgstr "" "Non si riceveranno più aggiornamenti di sicurezza o critici. Passare a una " "versione più aggiornata di Ubuntu Linux. Per maggiori informazioni " -"consultare http://www.ubuntu.com." +"consultare http://www.ubuntu.com" #: ../UpdateManager/UpdateManager.py:863 #, python-format @@ -1051,7 +1051,7 @@ msgstr "È disponibile il nuovo rilascio «%s» della distribuzione" #. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" -msgstr "L'indice del software è danneggiato" +msgstr "L'indice dei programmi è rovinato" #: ../UpdateManager/UpdateManager.py:903 msgid "" @@ -1060,8 +1060,8 @@ msgid "" "this issue at first." msgstr "" "Impossibile installare o rimuovere alcun programma. Utilizzare il gestore " -"dei pacchetti \"Synaptic\" o eseguire in un terminale \"sudo apt-get install " -"-f\" per risolvere il problema." +"dei pacchetti \"Synaptic\" o inserire il comando \"sudo apt-get install -f\" " +"in un terminale per risolvere il problema." #. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 @@ -1125,7 +1125,7 @@ msgstr "_Verifica" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" -msgstr "Verifica la presenza di nuovi aggiornamenti nei canali software" +msgstr "Verifica la presenza di nuovi aggiornamenti nei canali software" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" @@ -1263,7 +1263,7 @@ msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" msgstr "" -"Solo gli aggiornamenti di sicurezza dai server ufficiali di Ubuntu saranno " +"Solo gli aggiornamenti di sicurezza dai servers ufficiali di Ubuntu saranno " "installati automaticamente" #: ../data/glade/SoftwareProperties.glade.h:16 @@ -1534,7 +1534,7 @@ msgstr "Aggiornamenti di backport" #. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 «Breezy Badger»" +msgstr "Ubuntu 5.10 \"Breezy Badger\"" #. Description #: ../data/channels/Ubuntu.info.in:123 @@ -1544,17 +1544,17 @@ msgstr "CD-ROM con Ubuntu 5.10 «Breezy Badger»" #. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" -msgstr "Aggiornamenti di sicurezza per Ubuntu 5.10" +msgstr "Ubuntu 5.10 - Aggiornamenti di sicurezza" #. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" -msgstr "Aggiornamenti per Ubuntu 5.10" +msgstr "Ubuntu 5.10 - Aggiornamenti" #. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" -msgstr "Backport per Ubuntu 5.10" +msgstr "Backport di Ubuntu 5.10" #. Description #: ../data/channels/Ubuntu.info.in:152 @@ -1574,12 +1574,12 @@ msgstr "Supportati ufficialmente" #. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" -msgstr "Aggiornamenti di sicurezza per Ubuntu 5.04" +msgstr "Ubuntu 5.04 - Aggiornamenti di sicurezza" #. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" -msgstr "Aggiornamenti per Ubuntu 5.04" +msgstr "Ubuntu 5.04 - Aggiornamenti" #. Description #: ../data/channels/Ubuntu.info.in:187 @@ -1594,12 +1594,12 @@ msgstr "Ubuntu 4.10 «Warty Warthog»" #. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" -msgstr "Mantenuti dalla comunità (universe)" +msgstr "Mantenuti dalla comunità (Universe)" #. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" -msgstr "Non libero (multiverse)" +msgstr "Non libero (Multiverse)" #. Description #: ../data/channels/Ubuntu.info.in:206 @@ -1619,12 +1619,12 @@ msgstr "Copyright con restrizioni" #. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" -msgstr "Aggiornamenti di sicurezza per Ubuntu 4.10" +msgstr "Ubuntu 4.10 - Aggiornamenti di sicurezza" #. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" -msgstr "Aggiornamenti per Ubuntu 4.10" +msgstr "Aggiornamenti di Ubuntu 4.10" #. Description #: ../data/channels/Ubuntu.info.in:228 @@ -1640,7 +1640,7 @@ msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" -msgstr "Debian 3.1 «Sarge»" +msgstr "Debian 3.1 \"Sarge\"" #. BaseURI #: ../data/channels/Debian.info.in:19 @@ -1650,12 +1650,12 @@ msgstr "http://security.debian.org/" #. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" -msgstr "Aggiornamenti di sicurezza per Debian 3.1 «Sarge»" +msgstr "Aggiornamenti di sicurezza per Debian 3.1 \"Sarge\"" #. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" -msgstr "Debian «Etch» (testing)" +msgstr "Debian \"Etch\" (testing)" #. BaseURI #: ../data/channels/Debian.info.in:47 @@ -1665,7 +1665,7 @@ msgstr "http://http.us.debian.org/debian/" #. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" -msgstr "Debian «Sid» (unstable)" +msgstr "Debian \"Sid\" (Unstable)" #. CompDescription #: ../data/channels/Debian.info.in:54 @@ -1940,14 +1940,13 @@ msgstr "Software non compatibile con le DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Download delle modifiche in corso\n" +#~ "Scaricamento cambiamenti\n" #~ "\n" -#~ "Devo scaricare le modifiche dal server centrale" +#~ "È necessario scaricare i cambiamenti dal server centrale" #~ msgid "Show available updates and choose which to install" #~ msgstr "" -#~ "Visualizza gli aggiornamenti disponibili e seleziona quelli da installare" +#~ "Mostra gli aggiornamenti disponibili e seleziona quelli da installare" #, fuzzy #~ msgid "Error fetching the packages" @@ -1966,7 +1965,7 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Repository" #~ msgid "Temporary files" -#~ msgstr "File Temporanei" +#~ msgstr "File temporanei" #~ msgid "User Interface" #~ msgstr "Interfaccia utente" @@ -1979,34 +1978,35 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "" #~ "Chiavi di autenticazione\n" #~ "\n" -#~ "Puoi aggiungere o eliminare le chiavi di autenticazione. Una chiave ti " -#~ "permette di verificare l'integrità del software che scarichi." +#~ "In questo dialogo è possibile aggiungere o eliminare le chiavi di " +#~ "autenticazione. Una chiave permette di verificare l'integrità del " +#~ "software scaricato." #~ msgid "" #~ "Add a new key file to the trusted keyring. Make sure that you received " #~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Aggiungi un nuovo file per una chiave nel portachiavi fidato. Assicurati " -#~ "di aver ricevuto la chiave attraverso un canale sicuro e di fidarti del " -#~ "proprietario. " +#~ "Aggiunge un nuovo file di chiave nel portachiavi fidato. Assicurarsi di " +#~ "aver ricevuto la chiave attraverso un canale sicuro e ci si possa fidare " +#~ "del proprietario. " #~ msgid "Add repository..." #~ msgstr "Aggiungi repository" #~ msgid "Automatically check for software _updates." -#~ msgstr "Controlla automaticamente gli aggiornamenti" +#~ msgstr "Controllare automaticamente gli aggiornamenti _software" #~ msgid "Automatically clean _temporary packages files" -#~ msgstr "Elimina automaticamente i file temporanei dei pacchetti" +#~ msgstr "_Pulire automaticamente i file temporanei dei pacchetti" #~ msgid "Clean interval in days: " -#~ msgstr "Intervallo della pulizia in giorni: " +#~ msgstr "Intervallo di pulizia in giorni: " #~ msgid "Delete _old packages in the package cache" -#~ msgstr "Elimina i pacchetti _vecchi dalla cache" +#~ msgstr "Eliminare i pacchetti _vecchi dalla cache dei pacchetti" #~ msgid "Edit Repository..." -#~ msgstr "Modifica Repository..." +#~ msgstr "Modifica repository..." #~ msgid "Maximum age in days:" #~ msgstr "Età massima in giorni:" @@ -2018,11 +2018,11 @@ msgstr "Software non compatibile con le DFSG" #~ "Restore the default keys shipped with the distribution. This will not " #~ "change user installed keys." #~ msgstr "" -#~ "Ripristina le chiavi di default della distribuzione.\n" -#~ "Questo non modificherà le chiavi installate dal'utente." +#~ "Ripristina le chiavi predefinite fornite con la distribuzione. Questo non " +#~ "modificherà le chiavi installate dal'utente." #~ msgid "Set _maximum size for the package cache" -#~ msgstr "Configura la _dimensione della cache dei pacchetti" +#~ msgstr "Imposta la dimensione _massima per la cache dei pacchetti" #~ msgid "Settings" #~ msgstr "Impostazioni" @@ -2031,7 +2031,7 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "Mostra le versioni dettagliate dei pacchetti" #~ msgid "Show disabled software sources" -#~ msgstr "Mostra sorgenti software diabilitate" +#~ msgstr "Mostrare le sorgenti software diabilitate" #~ msgid "Update interval in days: " #~ msgstr "Intervallo di aggiornamenti in giorni: " @@ -2040,7 +2040,7 @@ msgstr "Software non compatibile con le DFSG" #~ msgstr "_Aggiungi repository" #~ msgid "_Download upgradable packages" -#~ msgstr "_Scarica i pacchetti aggiornabili" +#~ msgstr "_Scaricare i pacchetti aggiornabili" #~ msgid "Status:" #~ msgstr "Stato:" @@ -2051,16 +2051,16 @@ msgstr "Software non compatibile con le DFSG" #~ "The following packages are found to be upgradable. You can upgrade them " #~ "by using the Install button." #~ msgstr "" -#~ "Aggiornamenti Disponibili\n" +#~ "Aggiornamenti disponibili\n" #~ "\n" -#~ "I seguenti pacchetti possono essere aggiornati. Puoi aggiornarli usando " -#~ "il pulsante Installa." +#~ "I seguenti pacchetti possono essere aggiornati. È possibile effettuare " +#~ "l'aggiornamento usando il pulsante Installa." #~ msgid "Cancel downloading the changelog" -#~ msgstr "Cancella il download delle modifiche" +#~ msgstr "Annulla lo scaricamento del changelog" #~ msgid "You need to be root to run this program" -#~ msgstr "Devi essere root per eseguire questo programma" +#~ msgstr "È necessario essere root per eseguire questo programma" #~ msgid "Binary" #~ msgstr "Binario" @@ -2085,15 +2085,15 @@ msgstr "Software non compatibile con le DFSG" #~ msgid "Ubuntu Archive Automatic Signing Key " #~ msgstr "" -#~ "Chiave di Firma Automatica per l'Archivio Ubuntu " +#~ "Chiave di firma automatica per l'archivio Ubuntu " #~ msgid "Ubuntu CD Image Automatic Signing Key " #~ msgstr "" -#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu " #~ msgid "Choose a key-file" -#~ msgstr "Scegli un file di chiave" +#~ msgstr "Scegliere un file di chiave" #~ msgid "There is one package available for updating." #~ msgstr "C'è un pacchetto disponibile per l'aggiornamento" @@ -2127,8 +2127,8 @@ msgstr "Software non compatibile con le DFSG" #~ "You can run only one package management application at the same time. " #~ "Please close this other application first." #~ msgstr "" -#~ "Puoi eseguire una sola applicazione di gestione dei pacchetti " -#~ "contemporaneamente. Per favore prima chiudi quest'altra applicazione." +#~ "È possibile eseguire solo una applicazione di gestione dei pacchetti per " +#~ "volta. Chiudere prima quest'altra applicazione." #~ msgid "Updating package list..." #~ msgstr "Aggiornamento della lista dei pacchetti..." @@ -2144,20 +2144,20 @@ msgstr "Software non compatibile con le DFSG" #~ "running will no longer get security fixes or other critical updates. " #~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Per favore aggiornati ad una nuova versione di Ubuntu Linux. La versione " -#~ "che stai usando non riceverà più aggiornamenti di sicurezza o altri " -#~ "aggiornamenti critici. Per favore guarda su http://www.ubuntulinux.org " -#~ "per informazioni riguardo all'aggiornamento." +#~ "Effettuare l'aggiornamento ad una nuova versione di Ubuntu Linux. La " +#~ "versione in uso non riceverà più aggiornamenti di sicurezza o altri " +#~ "aggiornamenti critici. Consultare http://www.ubuntulinux.org per " +#~ "informazioni riguardo all'aggiornamento." #~ msgid "There is a new release of Ubuntu available!" -#~ msgstr "È disponibile una nuova release di Ubuntu!" +#~ msgstr "È disponibile un nuovo rilascio di Ubuntu!" #~ msgid "" #~ "A new release with the codename '%s' is available. Please see http://www." #~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "Una nuova release con nome '%s' è disponbile. Per favore guarda su http://" -#~ "www.ubuntulinux.org/ per informazioni sull'aggiornamento" +#~ "È disponibile un nuovo rilascio, nome in codice «%s». Consultare http://" +#~ "www.ubuntulinux.org/ per le istruzioni sull'aggiornamento." #~ msgid "Never show this message again" #~ msgstr "Non mostrare più questo messaggio" diff --git a/po/ja.po b/po/ja.po index bfa72652..41470c3f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:03+0000\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: Ubuntu Japanese Team \n" @@ -159,20 +159,20 @@ msgstr "" "システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれていま" "す。 Synaptic や apt-get を使って最初に修正してください。" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "要求されたメタパッケージがアップグレードできません" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "必須パッケージが削除されます" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "アップグレードが算定できません" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -182,11 +182,11 @@ msgid "" msgstr "算定中に解決できない問題がおきました。バグとして報告してください。" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "いくつかのパッケージが認証されませんでした" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -196,12 +196,12 @@ msgstr "" "クの問題でしょう。あとで再び試してみてください。下に認証できなかったパッケー" "ジが表示されます。" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "'%s' がインストールできません" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -209,11 +209,11 @@ msgstr "" "要求されたパッケージのインストールができません。バグとして報告してください。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "メタパッケージを推測できません" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -332,11 +332,11 @@ msgstr "" "アップグレード後に 'ソフトウェアの配布元' ツールか Synaptic を使用してくださ" "い。" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "アップデート中にエラー発生" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -344,11 +344,11 @@ msgstr "" "アップデート中に問題が発生しました。おそらくある種のネットワークの問題です。" "ネットワーク接続をチェックし、再びアップデートしてください。" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "ディスクの空き領域が足りません" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -360,15 +360,15 @@ msgstr "" "た一時パッケージを削除してください。" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "アップグレードを開始しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "アップグレードをインストールできません" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -382,11 +382,11 @@ msgstr "" "このバグを 'update-manager' パッケージのバグとして報告して下さい。その際、バ" "グ報告に /var/log/dist-upgrade/ 中のファイルを含めて下さい。" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "アップグレードをダウンロードできません" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -394,11 +394,11 @@ msgstr "" "アップグレードを中断しました。インターネット接続またはインストールメディア" "(CD-ROMなど)をチェックし。再試行してください。 " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -413,23 +413,23 @@ msgstr "" "'universe' を有効にしないと、これらのパッケージは次のステップで削除することを" "提案します。" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "不要なパッケージを削除しますか?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "このステップをスキップ(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "削除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "コミット中にエラー" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -438,28 +438,28 @@ msgstr "" "ください。 " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "システムを元に戻し中" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "パッケージマネージャをチェック中" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "アップグレードの準備中" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -467,15 +467,15 @@ msgid "" "upgrade/ in the bugreport." msgstr "算定中に解決できない問題がおきました。バグとして報告してください。" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "リポジトリ情報をアップデート" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "無効なパッケージ情報" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -487,19 +487,19 @@ msgstr "" "パッケージ情報のアップデートのあと、重要パッケージ '%s' が見つかりません。\n" "このメッセージは深刻なエラーです。バグとして報告してください。" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "確認する" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "アップグレード中" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "古いソフトウェアを検索する" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "システムのアップグレードが完了しました。" @@ -568,11 +568,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "'diff' コマンドが見つかりません" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "重大なエラーが発生しました" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -587,25 +587,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d 個のパッケージが削除されます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d 個のパッケージがインストールされます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d 個のパッケージがアップグレードされます。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -616,7 +616,7 @@ msgstr "" "\n" "全部で %s つのパッケージをダウンロードする必要があります。 " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -624,35 +624,35 @@ msgstr "" "アップグレードの取得とインストールには数時間かかり、今後一切キャンセルはでき" "ません。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "データの損失を避けるため、すべてのアプリケーションとドキュメントを閉じてくだ" "さい。" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "システムは最新の状態です!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "削除されるパッケージ: %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "インストール %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "アップグレード %s" @@ -686,11 +686,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "再起動してください" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "アップグレードが終了しました。再起動が必要ですが、すぐに実行しますか?" diff --git a/po/ka.po b/po/ka.po index d3a1b6a9..7b34056f 100644 --- a/po/ka.po +++ b/po/ka.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:04+0000\n" -"Last-Translator: Vladimer Sichinava \n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-18 01:28+0000\n" +"Last-Translator: Malkhaz Barkalaya \n" "Language-Team: Georgian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -92,9 +92,8 @@ msgstr "საკუთარი სერვერები" #: ../SoftwareProperties/SoftwareProperties.py:604 #: ../SoftwareProperties/SoftwareProperties.py:621 -#, fuzzy msgid "Software Channel" -msgstr "პროგრამული განახლებები" +msgstr "პროგრამების მიღება წყაროებიდან" #: ../SoftwareProperties/SoftwareProperties.py:612 #: ../SoftwareProperties/SoftwareProperties.py:629 @@ -133,13 +132,13 @@ msgstr "" "ამორჩეული გასაღების წაშლა ვერ მოხერხდა. გთხოვთ აცნობოთ ეს როგორც ხარვეზი." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" "%s" msgstr "" -"ვერ მოხერხდა CD-ს წაკითხვა\n" +"დაიშვა შეცდომა CD-ს წაკითხვისას\n" "\n" "%s" @@ -164,39 +163,37 @@ msgstr "" "პროგრამით. ჯერ გამართეთ დაზიანებული პაკეტები synaptic ან apt-get პროგრამით " "და შემდეგ გააგრძელეთ." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "საჭირო მეტა-პაკეტების განახლება ვერ მოხერხდა" -#: ../DistUpgrade/DistUpgradeCache.py:217 -#, fuzzy +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "ამით საჭირო პაკეტი წაიშლება" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 -#, fuzzy +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "სისტემა ვერ მომზადდა განახლებისათვის" -#: ../DistUpgrade/DistUpgradeCache.py:221 -#, fuzzy +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" "Please report this bug against the 'update-manager' package and include the " "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -"მოხდა დაუდგენელი შეცდომა განახლებისათვის მზადებისას. შეატყობინეთ ეს ხარვეზი " -"'update-manager' პაკეტის საშუალებით, შეტყობინებას დაურთეთ ფაილები /var/log/" -"dist-upgrade/-დან." +"მოხდა დაუდგენელი შეცდომა განახლებისათვის მზადებისას.\n" +"\n" +"შეატყობინეთ ეს ხარვეზი 'update-manager' პაკეტის საშუალებით, შეტყობინებას " +"დაურთეთ ფაილები /var/log/dist-upgrade/-დან." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "ზოგიერთი პაკეტის ავთენთიფიკაციის შეცდომა" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -205,24 +202,23 @@ msgstr "" "ვერ ხერხდება ზოგიერთი პაკეტის ავთენთიფიკაცია. ეს შეიძლება იყოს კავშირის " "ბრაკი. სცადეთ მოგვიანებით. ქვევით იხილეთ არა-ავთენთიფიცერული პაკეტების სია." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "'%s' ვერ დაყენდა" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "საჭირო პაკეტის დაყენება ვერ მოხერხდა. შეატყობინეთ ეს როგორც ხარვეზი. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "მეტა-პაკეტი ვერ შეირჩა" -#: ../DistUpgrade/DistUpgradeCache.py:321 -#, fuzzy +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -232,11 +228,10 @@ msgid "" msgstr "" "თქვენს სისტემაში არ არის ubuntu-desktop, kubuntu-desktop ან edubuntu-desktop " "პაკეტებიდან არცერთი, რის გამოც უბუნტუს ვერსიის დადგენა ვერ ხერხდება.\n" -"სანამ გააგრძელებდეთ, დააყენეთ რომელიმე მათგანი synaptic ან apt-get-ის " +" სანამ გააგრძელებდეთ, დააყენეთ რომელიმე მათგანი synaptic ან apt-get-ის " "გამოყენებით." #: ../DistUpgrade/DistUpgradeControler.py:75 -#, fuzzy msgid "Failed to add the CD" msgstr "ვერ განხორციელდა CD-ს დამატება" @@ -249,6 +244,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"შეცდომა CD-ს დამატებისას; განახლების პროცესი შეწყვეტილია. თუ დარწმუნებული " +"ხართ, რიმ ეს უბუნტუს CD0ს ბრალი არ არის, შეატყობინეთ ამ ხარვეზის შესახებ.\n" +"\n" +"ინფორმაცია შეცდომის შესახებ:\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" @@ -256,7 +256,7 @@ msgstr "ქეშის კითხვა" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" -msgstr "ნივიღოთ ქსელიდან მონაცემები განახლების შესახებ?" +msgstr "მივიღოთ ქსელიდან მონაცემები განახლების შესახებ?" #: ../DistUpgrade/DistUpgradeControler.py:157 msgid "" @@ -286,7 +286,7 @@ msgid "" "If you select 'no' the update will cancel." msgstr "" "რეპოზიტორიის შესახებ ინფორმაციაში არ არის მითითებული სარკე სისტემის " -"განახლებისათვის. შესაძლოა თქვენ შიდა სარკეს იყენებდეთ, ან ინფორმაცია სარკის " +"განახლებისათვის. შესაძლოა თქვენ შიდა სარკეს იყენებთ, ან ინფორმაცია სარკის " "შესახებ მოძველებულია.\n" "\n" "თუ თქვენ მაინც გინდათ 'sources.list' ფაილის განახლება, დასტურის შემთხვევაში " @@ -295,7 +295,6 @@ msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:267 -#, fuzzy msgid "Generate default sources?" msgstr "გავუშვათ ნაგულისხმევი წყაროების გენერაცია?" @@ -326,12 +325,10 @@ msgstr "" "ხარვეზი." #: ../DistUpgrade/DistUpgradeControler.py:309 -#, fuzzy msgid "Third party sources disabled" msgstr "მესამე მხარის წყაროები გამორთულია" #: ../DistUpgrade/DistUpgradeControler.py:310 -#, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " @@ -340,11 +337,11 @@ msgstr "" "მესამე მხარის ზოგი წყარო sources.list-ში გამორთულია. განახლების შემდეგ " "შეგეძლებათ მათი ჩართვა 'software-properties' ან synaptic-ის საშუალებით." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "განახლებისას მოხდა შეცდომა" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -352,11 +349,11 @@ msgstr "" "განახლებისას მოხდა შეცდომა. როგორც წესი ეს არის კავშირის პრობლემა, შეამოწმეთ " "თქვენი კავშირი და სცადეთ კიდევ ერთხელ." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "დისკზე არ არის საკმარისი თავისუფალი ადგილი" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -364,21 +361,19 @@ msgid "" "apt-get clean'." msgstr "" "განახლება შეწყვეტილია. გაათავისუფლეთ არანაკლებ %s ზომის ადგილი %s დისკზე. " -"გამოიყენეთ 'sudo apt-get clean' სანაგვიდან ფაილებისა და წინა ინსტალაციის " +"გამოიყენეთ 'sudo apt-get clean' ურნიდან ფაილებისა და წინა ინსტალაციის " "დროებითი პაკეტების წასაშლელად." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "გნებავთ განახლების დაწყება?" -#: ../DistUpgrade/DistUpgradeControler.py:465 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "განახლებების დაყენება ვერ ხერხდება" -#: ../DistUpgrade/DistUpgradeControler.py:466 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -389,27 +384,24 @@ msgstr "" "განახლება შეწყვეტილია. სისტემამ, შესაძლოა, დაკარგა მუშაობის უნარი. " "გაშვებულია აღდგენის პროცესი (dpkg --configure -a).\n" "\n" -"შეატყობინეთ ხარვეზის შესახებ 'update-manager' პაკეთის საშუალებით, " +"შეატყობინეთ ხარვეზის შესახებ 'update-manager' პაკეტის საშუალებით, " "შეტყობინებაში ჩართეთ ფაილები var/log/dist-upgrade/-დან." -#: ../DistUpgrade/DistUpgradeControler.py:484 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "განახლებების ჩამოტვირთვა ვერ ხერხდება" -#: ../DistUpgrade/DistUpgradeControler.py:485 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "განახლება შეწყვეტილია. შეამოწმეთ ხელახლა ქსელი და საინსტალაციო დისკი. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "ზოგ პროგრამას მხარდაჭერა აღარა აქვს" -#: ../DistUpgrade/DistUpgradeControler.py:522 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -419,73 +411,70 @@ msgid "" msgstr "" "ამ პაკეტებს Canonical Ltd.-ს ნაცვლად საზოგადოება უჭერს მხარს.\n" "\n" -"თუ თქვენ არა გაქვთ საზოგადოების უზრუნველყოფა (universe), მაშინ შემდეგ ეტაპზე " +"თუ თქვენ არა გაქვთ საზოგადოების რეპოზიტორია (universe), მაშინ შემდეგ ეტაპზე " "შემოთავაზებული იქნება ამ პაკეტების წაშლა." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "წავშალოთ მოძველებული პაკეტები?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "ეტაპის გა_მოტოვება" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_წაშლა" -#: ../DistUpgrade/DistUpgradeControler.py:568 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "შეცდომა გადაცემისას" -#: ../DistUpgrade/DistUpgradeControler.py:569 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "შეცდომა გასუფთავებისას. დაწვრილებით იხილეთ ქვემოთ. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "სისტემის საწყისი მდგომარეობის აღდგენა" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "%s'-ის მიღება backport-იდან" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" -msgstr "ვამოწმებ პროგრამულ მენეჯერს" +msgstr "პროგრამულ მენეჯერის შემოწმება" -#: ../DistUpgrade/DistUpgradeControler.py:676 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" -msgstr "განახლების ჩადგმის მომზადება" +msgstr "შეცდომა განახლების მომზადებისას" -#: ../DistUpgrade/DistUpgradeControler.py:677 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -"მოხდა დაუდგენელი შეცდომა განახლების დათვლისას. შეატყობინეთ ეს როგორხ ხარვეზი." +"მოხდა დაუდგენელი შეცდომა განახლების მომზადებისას. შეატყობინეთ 'update-" +"manager'-ის ეს ხარვეზი, ანგარიშს დაურთეთ ფაილები /var/log/dist-upgrade/-დან." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" -msgstr "რეპოზტორიის ინფორმაციის განახლება" +msgstr "რეპოზიტორიის ინფორმაციის განახლება" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" -msgstr "გაფუჭებული პაკეტის შესახებ ინფორმაცია" +msgstr "ინფორმაცია პაკეტის შესახებ არასწორია" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -494,52 +483,52 @@ msgid "" "manager' package and include the files in /var/log/dist-upgrade/ in the " "bugreport." msgstr "" +"პაკეტის შესახებ ინფორმაციის განახლების შემდეგ ვერ მოიძებნა მნიშვნელოვანი " +"პაკეტი '%s'.\n" +"ეს სერიოზული შეცდომაა, შეატყობინეთ 'update-manager'-ის ეს ხარვეზი, ანგარიშს " +"დაურთეთ ფაილები /var/log/dist-upgrade/-დან." -#: ../DistUpgrade/DistUpgradeControler.py:738 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" -msgstr "-თვის" +msgstr "დასტურის მოთხოვნა" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" -msgstr "მიმდინარეობს განახლებების ჩაყენება" +msgstr "მიმდინარეობს განახლება" -#: ../DistUpgrade/DistUpgradeControler.py:749 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" -msgstr "ვეძებ -თვის" +msgstr "მოძველებული პროდუქტების ძებნა" -#: ../DistUpgrade/DistUpgradeControler.py:754 -#, fuzzy +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." -msgstr "სისტემა ტოლია სრული." +msgstr "სისტემის განახლება დასრულებულია." #. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "" +msgstr "ჩადევით '%s' '%s'-ში" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "განახლება გასრულებულია" +msgstr "ჩატვირთვა დასრულებულია" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 #, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "" +msgstr "იტვირთება %li ფაილი %li-დან, სიჩქარე - %s/წმ" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #, python-format msgid "About %s remaining" -msgstr "" +msgstr "დარჩა დაახლოებით %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 #, python-format msgid "Fetching file %li of %li" -msgstr "" +msgstr "იტვირთება %li ფაილი %li-დან" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) @@ -551,13 +540,15 @@ msgstr "ცვლილებების დამტკიცება" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "ვერ ჩავდგი '%s'" +msgstr "ვერ დადგა '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 msgid "" "The upgrade aborts now. Please report this bug against the 'update-manager' " "package and include the files in /var/log/dist-upgrade/ in the bugreport." msgstr "" +"განახლება შეწყვეტილია. შეატყობინეთ 'update-manager'-ის ეს ხარვეზი, ანგარიშს " +"დაურთეთ ფაილები /var/log/dist-upgrade/-დან." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 @@ -566,95 +557,105 @@ msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" +"გადავაწეროთ ადრინდელს კონფიგურაციის განახლებული ფაილი\n" +"'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"თუ დაეთანხმებით, კონფიგურაციის ფაილში თქვენს მიერ ადრე შეტანილი ცვლილებები " +"დაიკარგება." #: ../DistUpgrade/DistUpgradeViewGtk.py:217 -#, fuzzy msgid "The 'diff' command was not found" -msgstr "არა" +msgstr "'diff' ბრძანება ვერ მოინახა" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" -msgstr "A შეცდომა" +msgstr "ფატალური შეცდომა" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " "now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." -msgstr "a და შემცველობა და -ში ახლა თავდაპირველი სია -ში სია." +msgstr "" +"შეატყობინეთ ეს ხარვეზი, ანგარიშს დაურთეთ ფაილები /var/log/dist-upgrade/main." +"log და var/log/dist-upgrade/apt.log-დან. განახლება შეწყვეტილია.\n" +"თქვენი პირვანდელი sources.list შენახულია /etc/apt/sources.list.distUpgrade-" +"ში." #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 +#, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "A არსებითი -სკენ" +msgstr[0] "წაიშლება %d პაკეტი." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "" +msgstr[0] "დადგება %d ახალი პაკეტი." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "" +msgstr[0] "განახლდება %d პაკეტი." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" +"\n" +"\n" +"სულ გადმოიტვირთება %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." -msgstr "საათი და ნებისმიერი დრო." +msgstr "" +"განახლების გადმოტვირთვასა და დაყენებას სჭირდება რამდენიმე საათი და მისი " +"შეწყვეტა არ არის სასურველი." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." -msgstr "ვის დახურვა ყველა გახსნა და დოკუმენტები." +msgstr "" +"დახურეთ გახსნილი პროგრამები და დოკუმენტები, მონაცემების დაკარგვის თავიდან " +"ასაცილებლად." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "თქვენი სისტემა განახლებულია" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." -msgstr "" +msgstr "თქვენი სისტემისათვის არ არის განახლებები. პროცედურა შეწყვეტილია." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr " ამოშლა %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "დაყენება %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "ჩასაყენებელი განახლება %s" @@ -662,22 +663,22 @@ msgstr "ჩასაყენებელი განახლება %s" #: ../DistUpgrade/DistUpgradeView.py:27 #, python-format msgid "%li days %li hours %li minutes" -msgstr "" +msgstr "%li დღე %li საათი %li წუთი" #: ../DistUpgrade/DistUpgradeView.py:29 #, python-format msgid "%li hours %li minutes" -msgstr "" +msgstr "%li საათი %li წუთი" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li წუთი" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format msgid "%li seconds" -msgstr "" +msgstr "%li წამი" #. 56 kbit #. 1Mbit = 1024 kbit @@ -687,16 +688,16 @@ msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"ჩამოტვირთვის ხანგრძლივობა: %s - 1Mbit DSL-სათვის, %s 56k-მოდემისათვის." -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "საჭიროა გადატვირთვა" -#: ../DistUpgrade/DistUpgradeView.py:110 -#, fuzzy +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" -msgstr "ტოლია დასრულდა და a ტოლია -სკენ ახლა?" +msgstr "განახლება დასრულდა, საჭიროა გადატვირთვა. გადავიტვირთოთ ახლა?" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): @@ -704,31 +705,33 @@ msgstr "ტოლია დასრულდა და a ტოლია -ს #. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 +#, fuzzy msgid " " -msgstr " " +msgstr "ეს არ ვიცი როგორ ვთარგმნო, ვერცერთ ლექსიკონში ვერ ვნახე :) " #: ../DistUpgrade/DistUpgrade.glade.h:2 -#, fuzzy msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." -msgstr " გაუქმება გაშვებული n -ში გაუქმება თქვენ -სკენ." +msgstr "" +"შევწყვიტოთ განახლების პროცესი?\n" +"\n" +"განახლების შეწყვეტამ შეიძლება სისტემას მუშაობის უნარი დაუკარგოს. დაბეჯითებით " +"გირჩევთ არ შეწყვიტოთ განახლების პროცესი." #: ../DistUpgrade/DistUpgrade.glade.h:5 -#, fuzzy msgid "Restart the system to complete the upgrade" -msgstr " გადატვირთვა -სკენ სრული" +msgstr "სისტემის გადატვირთვა განახლების დასასრულებლად" #: ../DistUpgrade/DistUpgrade.glade.h:6 -#, fuzzy msgid "Start the upgrade?" -msgstr " გაშვება" +msgstr "განახლების დაწყება" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Ubuntu-ს განახლება 6.10 ვერსიამდე" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -739,220 +742,208 @@ msgid "Details" msgstr "ცნობები" #: ../DistUpgrade/DistUpgrade.glade.h:10 -#, fuzzy msgid "Difference between the files" -msgstr "განსხვავება" +msgstr "განსხვავება ფაილებს შორის" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "მიმდინარეობს ჩამოქაჩვა და" +msgstr "მიმდინარეობს განახლებების ჩამოქაჩვა და დაყენება" #: ../DistUpgrade/DistUpgrade.glade.h:12 +#, fuzzy msgid "Modifying the software channels" -msgstr "" +msgstr "პროგრამების მიღების არხების შეცვლა" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "განახლების ჩადგმის მომზადება" +msgstr "განახლებისათვის მომზადება" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" -msgstr "" +msgstr "სისტემის გადატვირთვა" #: ../DistUpgrade/DistUpgrade.glade.h:15 -#, fuzzy msgid "Terminal" msgstr "ტერმინალი" #: ../DistUpgrade/DistUpgrade.glade.h:16 -#, fuzzy msgid "_Cancel Upgrade" -msgstr "განახლება _გაგრძელება" +msgstr "განახლების _შეწყვეტა" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_გაგრძელება" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" -msgstr "_დატოვე" +msgstr "_დატოვება" #: ../DistUpgrade/DistUpgrade.glade.h:19 #: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" -msgstr "_ჩაანაცვლე" +msgstr "_ჩანაცვლება" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "_შეცდომის-ოქმის გაგავნა" +msgstr "_ხარვეზის ანგარიშის გაგზავნა" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" -msgstr "_მყისვე გადატვირთვა" +msgstr "_გადატვირთვა" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "განახლება _გაგრძელება" +msgstr "განახლების _გაგრძელება" #: ../DistUpgrade/DistUpgrade.glade.h:23 -#, fuzzy msgid "_Start Upgrade" -msgstr "განახლება _გაგრძელება" +msgstr "განახლების _დაწყება" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" -msgstr "ვერ ვპოულობ ვერსიის შენიშვნებს" +msgstr "ვერ მოინახა ჩანაწერი გამოშვების შესახებ" #: ../UpdateManager/DistUpgradeFetcher.py:69 msgid "The server may be overloaded. " -msgstr "შესაძლებელია რომ ამ მომენტისთვის სერვერი გადატვირთულია. " +msgstr "შესაძლებელია სერვერი გადატვირთულია. " #: ../UpdateManager/DistUpgradeFetcher.py:79 msgid "Could not download the release notes" -msgstr "შეუძლებელია ვერსიის შენიშვნების გადმოწერა" +msgstr "შეუძლებელია გამოშვების შესახებ ჩანაწერის ჩამოქაჩვა" #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." -msgstr "გთხოვთ შეამოწმოთ თქვენი ინტერნეტ კავშირი." +msgstr "გთხოვთ შეამოწმოთ თქვენი ინტერნეტ-კავშირი." #. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "ვერ ვრთავ განახლების ჩადგმის ხელსაწყოს" +msgstr "განახლების უტილიტა ვერ გაიშვა" #: ../UpdateManager/DistUpgradeFetcher.py:150 -#, fuzzy msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug" -msgstr "ტოლია a -ში a" +msgstr "" +"როგორც სჩანს, ეს განახლების უტილიტის ბრალია. გაგზავნეთ ხარვეზის შეტყობინება" #: ../UpdateManager/DistUpgradeFetcher.py:171 -#, fuzzy msgid "Downloading the upgrade tool" -msgstr "მიმდინარეობს ჩამოქაჩვა" +msgstr "მიმდინარეობს განახლების უტილიტის ჩამოქაჩვა" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "" +msgstr "განახლების უტილიტა დაგეხმარებათ განახლების მიმდინარეობისას." #: ../UpdateManager/DistUpgradeFetcher.py:180 -#, fuzzy msgid "Upgrade tool signature" -msgstr "განახლება" +msgstr "განახლების უტილიტის ხელმოწერა" #: ../UpdateManager/DistUpgradeFetcher.py:183 msgid "Upgrade tool" -msgstr "განახლების ჩაყენების ხელსაწყო" +msgstr "განახლების უტილიტა" #: ../UpdateManager/DistUpgradeFetcher.py:208 -#, fuzzy msgid "Failed to fetch" -msgstr "ვერ განხორციელდა -სკენ" +msgstr "მიღება ვერ მოხერხდა" #: ../UpdateManager/DistUpgradeFetcher.py:209 -#, fuzzy msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "ვერ შედგა a " +msgstr "ვერ მოხერხდა განახლების მიღება. შესაძლოა ქსელის პრობლემა იყოს. " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "ამოარქივება ვერ განხორციელდა" +msgstr "განარქივება ვერ განხორციელდა" #: ../UpdateManager/DistUpgradeFetcher.py:215 -#, fuzzy msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "ამოღება ვერ შედგა a ან " +msgstr "" +"განახლების განარქივება ვერ განხორციელდა. შესაძლოა ქსელის ან სერვერის " +"პრობლემა იყოს. " #: ../UpdateManager/DistUpgradeFetcher.py:221 -#, fuzzy msgid "Verfication failed" -msgstr "ვერ შედგა" +msgstr "შეცდომა გადამოწმებისას" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " -msgstr "ვერ შედგა a ან " +msgstr "" +"განახლების შეჯერება წარუმატებლად დამთავრდა. შესაძლოა ქსელის ან სერვერის " +"პრობლემა იყოს. " #: ../UpdateManager/DistUpgradeFetcher.py:228 -#, fuzzy msgid "Authentication failed" -msgstr "იდენთიფიკაციამ ჩაიშალა" +msgstr "აუტენტიფიკაცია ვერ მოხერხდა" #: ../UpdateManager/DistUpgradeFetcher.py:229 -#, fuzzy msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " -msgstr "მიმდენარეობს აუტენტიფიკაცია ვერ შედგა a ან " +msgstr "" +"განახლების აუტენტიფიკაცია ვერ მოხერხდა. შესაძლოა ქსელის ან სერვერის პრობლემა " +"იყოს. " #: ../UpdateManager/GtkProgress.py:108 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" -msgstr "" +msgstr "მე-%(current)li ფაილის ჩამოქაჩვა %(total)li-დან. სიჩქარე - %(speed)s/s" #: ../UpdateManager/GtkProgress.py:113 #, python-format msgid "Downloading file %(current)li of %(total)li" -msgstr "" +msgstr "მე-%(current)li ფაილის ჩამოქაჩვა %(total)li-დან" #: ../UpdateManager/UpdateManager.py:206 -#, fuzzy msgid "The list of changes is not available" -msgstr "" -"ცვლილებების სია ჯერ-ჯერობით არ არის ხელმისაწვდომი. გთხოვთ სცადოთ მოგვიანებით." +msgstr "ცვლილებების სია არ არის ხელმისაწვდომი." #: ../UpdateManager/UpdateManager.py:212 -#, fuzzy msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" -"ცვლილებების სია ჯერ-ჯერობით არ არის ხელმისაწვდომი. გთხოვთ სცადოთ მოგვიანებით." +"ცვლილებების სია ჯერჯერობით არ არის ხელმისაწვდომი. \n" +"სცადეთ მოგვიანებით." #: ../UpdateManager/UpdateManager.py:217 -#, fuzzy msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." -msgstr "ვერ განხორციელდა -სკენ სია ის ინტერნეტი." +msgstr "" +"ვერ განხორციელდა ცვლილებების სიის ჩამოქაჩვა.\n" +"შეამოწმეთ ინტერნეტ-კავშირი." #. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 -#, fuzzy msgid "Important security updates" -msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" +msgstr "უსაფრთხოების მნიშვნელოვანი განახლებები" #. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" -msgstr "" +msgstr "რეკომენდებული განახლებები" #. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 -#, fuzzy msgid "Proposed updates" -msgstr "განახლებების _დაყენება" +msgstr "შემოთავაზებული განახლებები" #: ../UpdateManager/UpdateManager.py:241 #, fuzzy msgid "Backports" -msgstr "Ubuntu 5.10 დამატებითი პროგრამები" +msgstr "ბექპორტები" #: ../UpdateManager/UpdateManager.py:242 -#, fuzzy msgid "Distribution updates" -msgstr "განახლება _გაგრძელება" +msgstr "დისტრიბუტივის განახლებები" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 -#, fuzzy msgid "Other updates" -msgstr "განახლებების _დაყენება" +msgstr "სხვა განახლებები" #: ../UpdateManager/UpdateManager.py:478 #, python-format @@ -960,18 +951,16 @@ msgid "Version %s: \n" msgstr "ვერსია %s: \n" #: ../UpdateManager/UpdateManager.py:539 -#, fuzzy msgid "Downloading list of changes..." -msgstr "მიმდინარეობს ჩამოქაჩვა სია ის." +msgstr "მიმდინარეობს ცვლილებათა სიის ჩამოქაჩვა..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" -msgstr "" +msgstr "_ყველას გაუქმება" #: ../UpdateManager/UpdateManager.py:572 -#, fuzzy msgid "_Check All" -msgstr "შ_ემოწმება" +msgstr "_ყველას მონიშვნა" #. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 @@ -987,51 +976,50 @@ msgstr[0] "თქვენ შეგიძლიათ %s განახლე #: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." -msgstr "გთხოვთ მოითმინოთ, მიმდინარე პროცესს საკმაო დრო ესაჭიორება." +msgstr "გთხოვთ მოითმინოთ, მიმდინარე პროცესს საკმაო დრო სჭირდება." #: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" msgstr "განახლება გასრულებულია" #: ../UpdateManager/UpdateManager.py:719 -#, fuzzy msgid "Checking for updates" -msgstr "განახლებების _დაყენება" +msgstr "განახლებების არსებობის შემოწმება" #: ../UpdateManager/UpdateManager.py:826 -#, fuzzy, python-format +#, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "ახალი ვერსია: %s (ზომა: %s)" +msgstr "%(old_version)s ვერსიიდან %(new_version)s-მდე" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, python-format msgid "Version %s" -msgstr "ვერსია %s:" +msgstr "ვერსია %s" #. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" -msgstr "" +msgstr "(ზომა: %s)" #: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" -msgstr "თქვენი დისტრიბუტივს აღარ გააჩნია მხარდაჭერა" +msgstr "თქვენს დისტრიბუტივს აღარ გააჩნია მხარდაჭერა" #: ../UpdateManager/UpdateManager.py:844 -#, fuzzy msgid "" "You will not get any further security fixes or critical updates. Upgrade to " "a later version of Ubuntu Linux. See http://www.ubuntu.com for more " "information on upgrading." msgstr "" -"თქვენ არა ნებისმიერი ან კრიტიკული განახლება -სკენ a ვერსია ის ლინუქსი " -"იხილეთhttp://www.ubuntu.com -თვის ინფორმაცია ჩართულია." +"თქვენ ვეღარ მიიღებთ უსაფრთხოების შესწორებებსა და კრიტიკულ განახლებებს. " +"განაახლეთ სისტემა უბუნტუ-ლინუქსის ახალ ვერსიამდე. იხილეთ http://www.ubuntu." +"com." #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "ხელმისწვდომია ახალი გამოშვება '%s'" #. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 @@ -1039,64 +1027,61 @@ msgid "Software index is broken" msgstr "პროგრამების სიის ინდექსი დაზიანებულია" #: ../UpdateManager/UpdateManager.py:903 -#, fuzzy msgid "" "It is impossible to install or remove any software. Please use the package " "manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " "this issue at first." msgstr "" -"ტოლია -სკენ ან წაშლა ნებისმიერი Synaptic ან sudo -ში a ტერმინალი -სკენ." +"შეუძლებელია პროგრამების დაყენება ან წაშლა. ჯერ გამოასწორეთ დეფექტი პაკეტების " +"მენეჯერით Synaptic ან ტერმინალში \"sudo apt-get install -f\" ბრძანებით." #. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 +#, fuzzy msgid "None" -msgstr "" +msgstr "არაფერი" #. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 კბ" #. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f კბ" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" -msgstr "" +msgstr "%.1f მბ" #: ../data/glade/UpdateManager.glade.h:1 -#, fuzzy msgid "" "You must check for updates manually\n" "\n" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" -" თქვენ -თვის n არა -თვის თქვენ -ში სისტემა ადმინისტრაცია " -"პროგრამა პარამეტრები." +"თქვენ თვითონ მოსინჯეთ განახლებები\n" +"\n" +"სისტემამ არ ეძებს განახლებებს ავტომატურ რეჟიმში. შეგიძლიათ ეს თვისება " +"შეცვალოთ ჩანართში განახლება ინტერნეტიდან ფანჯარაში წყარო-" +"პროგრამები." #: ../data/glade/UpdateManager.glade.h:4 -#, fuzzy msgid "Keep your system up-to-date" -msgstr " დატოვება -სკენ თარიღი" +msgstr "განაახლეთ ხოლმე სისტემა" #: ../data/glade/UpdateManager.glade.h:5 -#, fuzzy msgid "Not all updates can be installed" -msgstr "" -"ვერ მოხერხდა CD-ს წაკითხვა\n" -"\n" -"%s" +msgstr "ვერ მოხერხდა ყველა განახლების დაყენება" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr " გაშვება" +msgstr "განახლების მენეჯერის გაშვება" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1104,16 +1089,15 @@ msgstr "ცვლილებები" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "განახლების აღწერა და ცვლილებები" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" msgstr "შე_მოწმება" #: ../data/glade/UpdateManager.glade.h:10 -#, fuzzy msgid "Check the software channels for new updates" -msgstr "შემოწმება -თვის ახალი" +msgstr "პროგრამათა წყაროების შემოწმება განახლებების არსებობაზე" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" @@ -1121,7 +1105,7 @@ msgstr "აღწერილობა" #: ../data/glade/UpdateManager.glade.h:12 msgid "Release Notes" -msgstr "ვერსიის მონაცემები" +msgstr "გამოშვების მონაცემები" #: ../data/glade/UpdateManager.glade.h:13 msgid "" @@ -1130,80 +1114,78 @@ msgid "" "This can be caused by an uncompleted upgrade, unofficial software packages " "or by running a development version." msgstr "" +"მაქსიმალური განახლებისათვის გაუშვით დისტრიბუტივის განახლება.\n" +"\n" +"ამის მიზეზი შეიძლება იყოს განახლების შეწყვეტა, არაოფიციალური პროგრამებისა და " +"დეველოპერ-ვერსიის გამოყენება." #: ../data/glade/UpdateManager.glade.h:16 -#, fuzzy msgid "Show progress of single files" -msgstr "ჩვენება მიმდინარეობა ის ცალი" +msgstr "პროგრესის ჩვენება ცალკეული ფაილებისათვის" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" -msgstr "პროგრამული განახლებები" +msgstr "პროგრამათა განახლებები" #: ../data/glade/UpdateManager.glade.h:18 -#, fuzzy msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." -msgstr "პროგრამა სწორეა და ახალი." +msgstr "" +"პროგრამათა განახლებები ასწორებს შეცდომებს, უსაფრთხოების ხარვეზებს და ამატებს " +"ახალ შესაძლებლობებს." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" -msgstr "" +msgstr "_განახლება" #: ../data/glade/UpdateManager.glade.h:20 -#, fuzzy msgid "Upgrade to the latest version of Ubuntu" -msgstr "განახლება -სკენ ვერსია ის" +msgstr "განახლება უბუნტუს ბოლო ვერსიამდე" #: ../data/glade/UpdateManager.glade.h:21 msgid "_Check" msgstr "შ_ემოწმება" #: ../data/glade/UpdateManager.glade.h:22 -#, fuzzy msgid "_Distribution Upgrade" -msgstr "განახლება _გაგრძელება" +msgstr "_დისტრიბუტივის განახლება" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" -msgstr "_დამალე მომავალში მოცემული ინფორმაცია" +msgstr "_დავმალოთ ეს ინფორმაცია მომავალში" #: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" msgstr "განახლებების _დაყენება" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "_Upgrade" -msgstr "ჩასაყენებელი განახლება %s" +msgstr "_განახლება" #: ../data/glade/UpdateManager.glade.h:26 -#, fuzzy msgid "changes" msgstr "ცვლილებები" #: ../data/glade/UpdateManager.glade.h:27 msgid "updates" -msgstr "" +msgstr "განახლებები" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "ინტერნეტ განახლებები" +msgstr "ავტომატური განახლებები" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" -msgstr "" +msgstr "CDROM/DVD" #: ../data/glade/SoftwareProperties.glade.h:4 msgid "Internet updates" -msgstr "ინტერნეტ განახლებები" +msgstr "ინტერნეტ-განახლებები" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "ინტერნეტ განახლებები" +msgstr "ინტერნეტი" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1215,95 +1197,92 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"მიიღეთ მონაწილეობა პოპულარობის რეიტინგის შექმნაში - ამით თქვენ ხელს " +"შეუწყობთ უბუნტუს გაუმჯობესებას; შეიქმნება თქვენს მიერ დაყენებული პროგრამების " +"სია მათი გამოყენების სიხშირის ჩვენებით, რომელიც ანონიმურად, კვირაში ერთხელ " +"გაიგზავნება უბუნტუს პროექტში.\n" +"\n" +"შედეგები გამოყენებულ იქნება პოპულარული პროგრამების უკეთ მხარდაჭერისათვის და " +"ძებნის შედეგებში პროგრამების რეიტინგის შესაფასებლად." #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" -msgstr "დამატება" +msgstr "Cdrom-ის დამატება" #: ../data/glade/SoftwareProperties.glade.h:10 -#, fuzzy msgid "Authentication" msgstr "აუთენტიფიკაცია" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" -msgstr "ჩამოტვირთული პაკეტების ფაილების წ_აშლა:" +msgstr "ჩამოტვირთული პროგრამების ფაილების წ_აშლა:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "ჩამოტვირთვა ტოლია სრული" +msgstr "ჩამოტვირთვა წყაროდან:" #: ../data/glade/SoftwareProperties.glade.h:13 -#, fuzzy msgid "Import the public key from a trusted software provider" -msgstr "იმპორტი გასაღები a" +msgstr "სანდო პროგრამების მომწოდებლის ღია გასაღების იმპორტი" #: ../data/glade/SoftwareProperties.glade.h:14 msgid "Internet Updates" -msgstr "ინტერნეტ განახლებები" +msgstr "ინტერნეტ-განახლებები" #: ../data/glade/SoftwareProperties.glade.h:15 -#, fuzzy msgid "" "Only security updates from the official Ubuntu servers will be installed " "automatically" -msgstr "მხოლოდ" +msgstr "" +"ავტომატურად დაყენდება მხოლოდ უსაფრთხოების განახლებები უბუნტუს ოფიციალური " +"სერვერებიდან" #: ../data/glade/SoftwareProperties.glade.h:16 -#, fuzzy msgid "Restore _Defaults" -msgstr "ნაგულისხმები პარამეტრები" +msgstr "ნაგულისხმევი პარამეტრების აღდგენა" #: ../data/glade/SoftwareProperties.glade.h:17 -#, fuzzy msgid "Restore the default keys of your distribution" -msgstr "ნაგულისხმევი ის დისტრიბუტივი" +msgstr "ნაგულისხმევი გასაღებების აღდგენა დისტრიბუტივიდან" #: ../data/glade/SoftwareProperties.glade.h:18 #: ../data/software-properties.desktop.in.h:2 -#, fuzzy msgid "Software Sources" -msgstr "პროგრამა პარამეტრები" +msgstr "წყარო-პროგრამები" #: ../data/glade/SoftwareProperties.glade.h:19 msgid "Source code" -msgstr "" +msgstr "საწყისი კოდი" #: ../data/glade/SoftwareProperties.glade.h:20 msgid "Statistics" -msgstr "" +msgstr "სტატისტიკა" #: ../data/glade/SoftwareProperties.glade.h:21 msgid "Submit statistical information" -msgstr "" +msgstr "სტატისტიკური ინფორმაციის გაგზავნა" #: ../data/glade/SoftwareProperties.glade.h:22 msgid "Third Party" -msgstr "" +msgstr "სხვა მომწოდებლები" #: ../data/glade/SoftwareProperties.glade.h:23 msgid "_Check for updates automatically:" msgstr "განახლებების ავტომატური შ_ემოწმება:" #: ../data/glade/SoftwareProperties.glade.h:24 -#, fuzzy msgid "_Download updates automatically, but do not install them" -msgstr "ჩამოტვირთვა -ში არა" +msgstr "_განახლებების ავტომატური ჩამოტვირთვა დაყენების გარეშე" #: ../data/glade/SoftwareProperties.glade.h:25 -#, fuzzy msgid "_Import Key File" -msgstr "იმპორტი გასაღები ფაილი" +msgstr "_გასაღები ფაილის იმპორტი" #: ../data/glade/SoftwareProperties.glade.h:26 -#, fuzzy msgid "_Install security updates without confirmation" -msgstr "დაყენება" +msgstr "_უსაფრთხოების განახლებების დაყენება შეკითხვის გარეშე" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 -#, fuzzy msgid "" "The information about available software is out-of-date\n" "\n" @@ -1312,8 +1291,10 @@ msgid "" "\n" "You need a working internet connection to continue." msgstr "" -" ინფორმაცია ტოლია ის თარიღი n -სკენ ინფორმაცია -სკენ და ან " -"შეცვლილი n a -სკენ." +"ინფორმაცია ხელმისაწვდომი პროგრამების შესახებ ვადაგასულია\n" +"\n" +"ახალი ან შეცვლილი წყაროდან პროგრამის დასაყენებლად განაახლეთ ინფორმაცია " +"ხელმისაწვდომი პროგრამების შესახებ." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" @@ -1321,7 +1302,7 @@ msgstr "კომენტარი:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 msgid "Components:" -msgstr "Components:" +msgstr "კომპონენტები:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 msgid "Distribution:" @@ -1336,7 +1317,6 @@ msgid "URI:" msgstr "URI:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 -#, fuzzy msgid "" "Enter the complete APT line of the repository that you want to add " "as source\n" @@ -1344,32 +1324,36 @@ msgid "" "The APT line includes the type, location and components of a repository, for " "example \"deb http://ftp.debian.org sarge main\"." msgstr "" -" შეყვანა სრული ის -სკენ დამატება n ტიპი მდებარეობა და " -"კომპონენტები ის a -თვის მაგალითიhttp://ftp.debian.org." +"შეიყვანეთ წყაროდ დასამატებელი რეპოზიტორიის სრული APT-სტრიქონი\n" +"\n" +"\n" +"APT-სტრიქონი შეიცავს რეპოზიტორიის ტიპს, მდებარეობასა და კომპონენტებს. " +"მაგალითად \"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" -msgstr "" +msgstr "APT-სტრიქონი:" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 -#, fuzzy msgid "" "Binary\n" "Source" -msgstr "ორობითი" +msgstr "" +"ორობითი\n" +"წყარო" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 msgid "Edit Source" -msgstr "" +msgstr "წყაროს შეცვლა" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 -#, fuzzy msgid "Scanning CD-ROM" msgstr "CD-ROM-ის სკანირება" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 msgid "_Add Source" -msgstr "" +msgstr "_წყაროს დამატება" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" @@ -1377,75 +1361,71 @@ msgstr "_გადატვირთვა" #: ../data/update-manager.desktop.in.h:1 msgid "Show and install available updates" -msgstr "ახალი განახლებების შემოწმება და ჩადგმა" +msgstr "ახალი განახლებების ჩვენება და ჩადგმა" #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" msgstr "განახლების მენეჯერი" #: ../data/update-manager.schemas.in.h:1 -#, fuzzy msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." -msgstr "შემოწმება a ახალი ვერსია ის დისტრიბუტივი ტოლია და -სკენ." +msgstr "" +"დისტრიბუტივის ახალი ვერსიის ავტომატური მონახვა და თუ შესაძლებელია, " +"განახლების შემოთავაზება." #: ../data/update-manager.schemas.in.h:2 -#, fuzzy msgid "Check for new distribution releases" -msgstr "შემოწმება -თვის ახალი დისტრიბუტივი" +msgstr "დისტრიბუტივის ახალი გამოშვების მოსინჯვა" #: ../data/update-manager.schemas.in.h:3 -#, fuzzy msgid "" "If automatic checking for updates is disabled, you have to reload the " "channel list manually. This option allows to hide the reminder shown in this " "case." -msgstr "-თვის ტოლია -სკენ სია -სკენ -ში." +msgstr "" +"როცა განახლებების ავტომატური მოსინჯვის ფუნქცია გამორთულია, თქვენ ხელით უნდა " +"მოახდინოთ წყაროთა სიის განახლება, რასაც სისტემა შეგახსენებთ. ამ პარამეტრით " +"შეიძლება შეხსენების აკრძალვა." #: ../data/update-manager.schemas.in.h:4 -#, fuzzy msgid "Remind to reload the channel list" -msgstr "-სკენ სია" +msgstr "წყაროთა სიის განახლების შეხსენება" #: ../data/update-manager.schemas.in.h:5 -#, fuzzy msgid "Show details of an update" -msgstr "ჩვენება ის განახლება" +msgstr "განახლების დეტალების ჩვენება" #: ../data/update-manager.schemas.in.h:6 -#, fuzzy msgid "Stores the size of the update-manager dialog" -msgstr "ზომა ის განახლება დიალოგი" +msgstr "ინახავს განახლების მენეჯერის ფანჯრის ზომას" #: ../data/update-manager.schemas.in.h:7 -#, fuzzy msgid "" "Stores the state of the expander that contains the list of changes and the " "description" -msgstr "ის შეიცავს სია ის და აღწერა" +msgstr "" +"ინახავს ცვლილებებისა და აღწერილობების შემცველი ექსპანდერის მდგომარეობას" #: ../data/update-manager.schemas.in.h:8 -#, fuzzy msgid "The window size" -msgstr "ფანჯარა ზომა" +msgstr "ფანჯრის ზომა" #: ../data/software-properties.desktop.in.h:1 -#, fuzzy msgid "Configure the sources for installable software and updates" -msgstr "კონფიგურირება და" +msgstr "პროგრამების დაყენებისა და განახლების წყაროების კონფიგურირება" #. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 -#, fuzzy, no-c-format +#, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/ s s s s s" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description #: ../data/channels/Ubuntu.info.in:8 -#, fuzzy msgid "Ubuntu 6.10 'Edgy Eft'" -msgstr "Ubuntu 5.10 განახლებები" +msgstr "Ubuntu 6.10 'Edgy Eft'" #. CompDescription #: ../data/channels/Ubuntu.info.in:13 @@ -1455,72 +1435,67 @@ msgstr "" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" -msgstr "" +msgstr "მოწყობილობების საკუთარი დრაივერები" #. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "არათავისუფალი (Multiverse)" +msgstr "არათავისუფალი პროგრამები" #. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" -msgstr "" +msgstr "Ubuntu 6.10 'Edgy Eft'-ს ლაზერული დისკი" #. Description #: ../data/channels/Ubuntu.info.in:59 -#, fuzzy msgid "Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" -msgstr "" +msgstr "თავისუფალი პროგრამები (Open Source) Canonical-ის მხარდაჭერით" #. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" -msgstr "" +msgstr "universe საზოგადოების მხრდაჭერით" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" -msgstr "" +msgstr "თავისუფალი პროგრამები (Open Source) universe საზოგადოების მხარდაჭერით" #. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "არათავისუფალი (Multiverse)" +msgstr "არათავისუფალი დრაივერები" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " -msgstr "" +msgstr "მოწყობილობების საკუთარი დრაივერები " #. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "არათავისუფალი (Multiverse)" +msgstr "არათავისუფალი პროგრამები (Multiverse)" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "პატენტებითა და კანონებით შეზღუდული პროგრამები" #. Description #: ../data/channels/Ubuntu.info.in:76 -#, fuzzy msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" -msgstr "Ubuntu 6.06 'Dapper Drake'" +msgstr "Ubuntu 6.06 LTS 'Dapper Drake'-ის ლაზერული დისკი" #. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" -msgstr "" +msgstr "Backport-განახლებები" #. Description #: ../data/channels/Ubuntu.info.in:110 @@ -1529,9 +1504,8 @@ msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.10 'Breezy Badger'-ის ლაზერული დისკი" #. Description #: ../data/channels/Ubuntu.info.in:135 @@ -1546,52 +1520,47 @@ msgstr "Ubuntu 5.10 განახლებები" #. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" -msgstr "Ubuntu 5.10 დამატებითი პროგრამები" +msgstr "Ubuntu 5.10 ბექპორტები" #. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'" #. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'-ის ლაზერული დისკი" #. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" -msgstr "" +msgstr "ოფიციალური მხარდაჭერით" #. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" +msgstr "Ubuntu 5.04 უსაფრთხოების განახლება" #. Description #: ../data/channels/Ubuntu.info.in:182 -#, fuzzy msgid "Ubuntu 5.04 Updates" -msgstr "Ubuntu 5.10 განახლებები" +msgstr "Ubuntu 5.04 განახლებები" #. Description #: ../data/channels/Ubuntu.info.in:187 -#, fuzzy msgid "Ubuntu 5.04 Backports" -msgstr "Ubuntu 5.10 დამატებითი პროგრამები" +msgstr "Ubuntu 5.04 ბექპორტები" #. Description #: ../data/channels/Ubuntu.info.in:193 -#, fuzzy msgid "Ubuntu 4.10 'Warty Warthog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 4.10 'Warty Warthog'" #. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" -msgstr "" +msgstr "საზოგადოების მხარდაჭერით (Universe)" #. CompDescription #: ../data/channels/Ubuntu.info.in:201 @@ -1601,43 +1570,38 @@ msgstr "არათავისუფალი (Multiverse)" #. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" -msgstr "" +msgstr "Ubuntu 4.10 'Warty Warthog'-ის ლაზერული დისკი" #. CompDescription #: ../data/channels/Ubuntu.info.in:209 -#, fuzzy msgid "No longer officially supported" -msgstr "არა" +msgstr "მოხსნილი აქვს ოფიციალური მხარდაჭერა" #. CompDescription #: ../data/channels/Ubuntu.info.in:211 -#, fuzzy msgid "Restricted copyright" -msgstr "შეზღუდული" +msgstr "შეზღუდული საავტორო უფლება" #. Description #: ../data/channels/Ubuntu.info.in:218 -#, fuzzy msgid "Ubuntu 4.10 Security Updates" -msgstr "Ubuntu 5.10 უსაფრთხოების განახლება" +msgstr "Ubuntu 4.10 უსაფრთხოების განახლებები" #. Description #: ../data/channels/Ubuntu.info.in:223 -#, fuzzy msgid "Ubuntu 4.10 Updates" -msgstr "Ubuntu 5.10 განახლებები" +msgstr "Ubuntu 4.10 განახლებები" #. Description #: ../data/channels/Ubuntu.info.in:228 -#, fuzzy msgid "Ubuntu 4.10 Backports" -msgstr "Ubuntu 5.10 დამატებითი პროგრამები" +msgstr "Ubuntu 4.10 ბექპორტები" #. ChangelogURI #: ../data/channels/Debian.info.in.h:4 -#, fuzzy, no-c-format +#, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://packages.debian.org/changelogs/pool/ s s s s s" +msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" #. Description #: ../data/channels/Debian.info.in:6 @@ -1647,40 +1611,37 @@ msgstr "Debian 3.1 \"Sarge\"" #. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" -msgstr "" +msgstr "http://security.debian.org/" #. Description #: ../data/channels/Debian.info.in:20 -#, fuzzy msgid "Debian 3.1 \"Sarge\" Security Updates" -msgstr "უსაფრთხოება" +msgstr "Debian 3.1 \"Sarge\" უსაფრთხოების განახლებები" #. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" -msgstr "" +msgstr "Debian \"Etch\" (testing)" #. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" -msgstr "" +msgstr "http://http.us.debian.org/debian/" #. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" -msgstr "" +msgstr "Debian \"Sid\" (unstable)" #. CompDescription #: ../data/channels/Debian.info.in:54 -#, fuzzy msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "პროგრამა თავისუფალი დამოკიდებულებანი" +msgstr "არათავისუფალ პროგრამებზე დამოკიდებული DFSG-თავსებადი პროგრამები" #. CompDescription #: ../data/channels/Debian.info.in:57 -#, fuzzy msgid "Non-DFSG-compatible Software" -msgstr "პროგრამა" +msgstr "DFSG-არათავსებადი პროგრამები" #, fuzzy #~ msgid "Normal updates" diff --git a/po/ko.po b/po/ko.po index 74bb9644..4c94054b 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Eungkyu Song \n" "Language-Team: Korean \n" @@ -156,20 +156,20 @@ msgstr "" "이 소프트웨어로 고칠 수 없는 망가진 패키지가 있습니다. 진행하기 전에 먼저 시" "냅틱이나 apt-get을 사용하여 복구하십시오." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "요청한 메타 패키지를 업그레이드 할 수 없습니다" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "필수적인 패키지를 제거해야만 합니다." #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "업그레이드에 필요한 의존성을 계산할 수 없습니다." -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -183,11 +183,11 @@ msgstr "" "log/dist-upgrade/에 있는 파일을 포함하여 주십시오." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "패키지 인증 오류" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -196,23 +196,23 @@ msgstr "" "인증할 수 없는 패키지가 있습니다. 일시적인 네트워크 문제일 수 있으니 이 경우" "라면 나중에 다시 시도하십시오. 인증되지 않은 패키지의 목록은 다음과 같습니다." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "'%s'을(를) 설치할 수 없습니다" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "요청한 패키지를 설치할 수 없습니다. 버그를 보고하여 주십시오. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "메타 패키지를 추측할 수 없습니다" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -331,11 +331,11 @@ msgstr "" "properties' 도구나 시냅틱으로 업그레이드 한 후에 다시 사용가능하게 할 수 있습" "니다." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "업데이트 중 오류" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -343,11 +343,11 @@ msgstr "" "업데이트를 하는 동안에 문제가 발생했습니다. 보통 네트워크 문제인 경우가 많습" "니다. 네트워크의 연결 상태를 확인하시고 다시 시도하십시오." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "디스크 여유 공간이 충분하지 않습니다." -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -359,15 +359,15 @@ msgstr "" "에 사용했던 임시 패키지들을 삭제하시기 바랍니다." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "업그레이드를 시작하시겠습니까?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "업그레이드를 설치하지 못했습니다." -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -381,11 +381,11 @@ msgstr "" "'update-manager' 패키지의 버그를 보고하여 주십시오. 그리고 버그 보고에 /var/" "log/dist-upgrade/에 있는 파일을 포함하여 주십시오." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "업그레이를 다운로드 할 수 없습니다." -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -393,11 +393,11 @@ msgstr "" "업그레이드가 중단되었습니다. 인터넷 연결과 설치 미디어를 확인하시고 다시 시도" "하십시오. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "일부 프로그램의 지원이 종료되었습니다" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -411,23 +411,23 @@ msgstr "" "커뮤니티 관리 소프트웨어를 (universe) 활성화하지 않았다면, 다음 단계에서 이 " "패키지들을 삭제하도록 제안할 것입니다." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "구식 패키지를 삭제하시겠습니까?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "이 단계 건너뛰기(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "제거(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "커밋 도중 오류 발생" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -436,42 +436,42 @@ msgstr "" "할 수 있습니다. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "시스템을 원래의 상태로 복구하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "'%s'의 백포트를 받고 있습니다" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "패키지 관리자를 확인하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "저장소 정보를 업데이트하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "잘못된 패키지 정보" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -484,19 +484,19 @@ msgstr "" "심각한 오류입니다. 'update-manager' 패키지의 버그를 보고하여 주십시오. 그리" "고 버그 보고에 /var/log/dist-upgrade/에 있는 파일을 포함하여 주십시오." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "확인을 요청하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "업그레이드하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "구식 소프트웨어를 검색하고 있습니다" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "완전히 시스템을 업그레이드하였습니다." @@ -567,11 +567,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "'diff' 명령어를 찾지 못했습니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "심각한 오류 발생" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -585,25 +585,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "패키지 %d개를 삭제할 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "새로운 패키지 %d개를 설치할 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "패키지 %d개를 업그레이드할 것입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -614,7 +614,7 @@ msgstr "" "\n" "총 %s개의 패키지를 다운로드해야 합니다. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -622,33 +622,33 @@ msgstr "" "업그레이드를 받아 설치하는 것은 여러 시간이 걸릴 수 있으며, 이후 어떤 경우에" "도 취소할 수 없습니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "데이터 손실을 막으려면 열려있는 모든 프로그램과 문서를 닫으십시오." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "시스템이 최신의 상태입니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "시스템에 업그레이드할 것이 없습니다. 업그레이드를 취소합니다." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "%s 제거" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "%s 설치" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "%s 업그레이드" @@ -682,11 +682,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "다시 시작해야 합니다" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "업그레이드가 끝났으며 다시 시작해야 합니다. 지금 하시겠습니까?" diff --git a/po/ku.po b/po/ku.po index cf2c6d52..fddd1e29 100644 --- a/po/ku.po +++ b/po/ku.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:04+0000\n" -"Last-Translator: ElîxanLoran \n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-17 09:50+0000\n" +"Last-Translator: rizoye-xerzi \n" "Language-Team: Kurdish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +23,7 @@ msgstr "Rojane" #: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" -msgstr "Her du roj" +msgstr "Her du rojan" #: ../SoftwareProperties/SoftwareProperties.py:138 msgid "Weekly" @@ -31,12 +31,12 @@ msgstr "Heftane" #: ../SoftwareProperties/SoftwareProperties.py:139 msgid "Every two weeks" -msgstr "Her du hefte" +msgstr "Her du hefteyan" #: ../SoftwareProperties/SoftwareProperties.py:144 #, python-format msgid "Every %s days" -msgstr "Her %s roj" +msgstr "Her %s rojan" #: ../SoftwareProperties/SoftwareProperties.py:167 msgid "After one week" @@ -44,7 +44,7 @@ msgstr "Piştî hefteyekê" #: ../SoftwareProperties/SoftwareProperties.py:168 msgid "After two weeks" -msgstr "Piştî du hefte" +msgstr "Piştî du hefteyan" #: ../SoftwareProperties/SoftwareProperties.py:169 msgid "After one month" @@ -127,8 +127,8 @@ msgstr "Di dema rakirina mifteyan de çewtî" #: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -"Mifteya ku te hilbijart nehate rakirin. Ji kerema xwe re vê yekê weke " -"çewtiyekê ragihîne." +"Mifteya ku te hilbijart nehate rakirin. Ji kerema xwe re vê weke çewtiyekê " +"ragihîne." #: ../SoftwareProperties/SoftwareProperties.py:1039 #, python-format @@ -159,23 +159,23 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Pergala te tevî vê nivîsbariyê hin pakêtên xerabe yên ku nayên sererastkirin " -"dihewîne. Berî ku tu berdewam bikî ji kerema xwe re van bernameyan bi " -"synaptic an jî i apt-get sererast bikî" +"dihewîne. Berî ku tu berdewam bikî ji kerema xwe van bernameyan bi synaptic " +"an jî i apt-get sererast bikî." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" -msgstr "Pakêtên agahiyan yên pêwist nayên rojanekirin" +msgstr "Pakêtên agahiyan yên pêwist nayên rojanekirin." -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" -msgstr "Divê pakêteke pêwist jê were rakirin" +msgstr "Dê pêwiste be ku pakêta bingehîn were jêbirin" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Rojanekirin nikaribû were hesabkirin" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -188,11 +188,11 @@ msgstr "" "var/log/dist-upgrade/ de ye jî li rapora çewtiyan zêde bike." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Di piştrastkirina çend paketan de çewtî derket" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -201,12 +201,12 @@ msgstr "" "Hin pakêt nehatin piştrastkirin. Dibe ku ev pirsgirêkeke derbasdar ya torê " "be. Ji bo lîsteya pakêtên ku nehatine piştrastkirin li jêr binihêre." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Nikarî '%s' saz bike" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -215,11 +215,11 @@ msgstr "" "ragihîne. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Pakêta-meta nehate kifşkirin" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -254,7 +254,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" -msgstr "Pêşbîr tê xwendin" +msgstr "veşartok tê xwendin" #: ../DistUpgrade/DistUpgradeControler.py:156 msgid "Fetch data from the network for the upgrade?" @@ -312,7 +312,7 @@ msgstr "" "Piştî ku çav li 'sources.list' gerand ji bo '%s' tu têketineke derbasdar " "nedît.\n" "\n" -"Ji bo '%s' bila têketinên heyî lê zêde bibe? Heke tu bibêjî 'Na' dê " +"Ji bo '%s' bila têketinên heyî lê zêde bibe? Heke tu bibêjî 'Na' dê " "rojanekirin were betalkirin." #: ../DistUpgrade/DistUpgradeControler.py:302 @@ -324,7 +324,7 @@ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"Karê rojanekirina agahiya depoyê, dosyeyeke nederbasdar çêkir. Ji kerema xwe " +"Karê rojanekirina agahiya depoyê, dosyeye nederbasdar çêkir. Ji kerema xwe " "re vê çewtiyê ragihîne." #: ../DistUpgrade/DistUpgradeControler.py:309 @@ -337,12 +337,15 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" +"Ketanên aligirên sêyemîn yên di pelê sources.listê de ne bandora wan hate " +"rakirin. Piştî bilindkirinê tu dikarî van ketanan bi 'software-properties' " +"yan jî bi synapticê dîsa çalak bike." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Di rojanekirinê de çewtî derket" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -350,11 +353,11 @@ msgstr "" "Di dema rojanekirinê de çewtiyek derket. Ev çewtî piranî pirsgirêka torê ye, " "ji kerema xwe re girêdana xwe ya torê kontrol bike û ji nû ve biceribîne." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Cihê vala yê diskê têr nake" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -362,19 +365,19 @@ msgid "" "apt-get clean'." msgstr "" "Bilindkirin diqede. Ji kerema xwe re di %s de herî kêm %s qada dîskê vala " -"bike. Çopa xwe vala bikin û bi 'sudo apt-get clean' pakêtên derbasdar yên " +"bike. Çopa xwe vala bikin û xêra 'sudo apt-get clean' pakêtên derbasdar yên " "sazkirinên berê rake." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Tu dixwazî dest bi bilindkirinê bikî?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Sazkirina hemû bilindkirinan biserneket" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -388,11 +391,11 @@ msgstr "" "Ji kerema xwe re bo pakêta 'update-manager' vê çewtiyê ragihîne. Dosyeyên ku " "li /var/log/dist-upgrade/ de ye jî li peyama çewtiyê zêde bike." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Daxistina bilindkirinan serneket" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -400,11 +403,12 @@ msgstr "" "Rojanekirin niha tê betalkirin. Ji kerema xwe girêdana înternetê an medyaya " "sazkirinê kontrol bike û ji nû ve biceribîne. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Ji bo hin sepanan piştrastkirin qediya" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 +#, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -412,24 +416,29 @@ msgid "" "If you have not enabled community maintained software (universe), these " "packages will be suggested for removal in the next step." msgstr "" +"Canonical Ltd. êdî nema xizmetan ji van pakêtên nermalav re pêşkêş dike. Tu " +"hê jî dikarî sûdê ji komeleyê bigire.\n" +"\n" +"heke destûra te ji bo nivîsbariyê tunebe, Di gava duyemîn de ev pakêt dê ji " +"bo jêbirinê werin tercîhkirin." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" -msgstr "Bila pakêtên ku nayên bikaranîn werine rakirin?" +msgstr "Bila pakêtên ku nayên bikaranîn were rakirin?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "Vê gavê derbas bike" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Jê bibe" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" -msgstr "Di dema xebatê de çewtî" +msgstr "çewtî di dema xebitandinê de" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -438,42 +447,45 @@ msgstr "" "re li peyama jêr binihêre. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Vedigere rewşa pergala orjînal" -#: ../DistUpgrade/DistUpgradeControler.py:637 -#, python-format +#: ../DistUpgrade/DistUpgradeControler.py:641 +#, fuzzy, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "backport a '%s' vedigerîne" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Bireveberiya paketan tê kontrol kirin" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Amadekrinên nûjenkirinê biserneket" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 +#, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" +"Pergalê ji bo têkçûneke mezin amade dike. Ji kerema xwe re bike rapor li " +"dijî pakêta rojanekirina gerînende 'update-manager'" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Agahiyên depoyê tê rojanekirin" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Agahiya paketê nederbasdar e" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -488,19 +500,19 @@ msgstr "" "vê çewtiyê ragihîne. Dosyeyên ku li /var/log/dist-upgrade/ de ye jî li " "peyama çewtiyê zêde bike." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Pirsa piştrastkirinê" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Tê bilindkirin" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Li nivîsbariya kevin tê gerandin" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Bilindkirina sîstemê temam bû." @@ -511,7 +523,6 @@ msgid "Please insert '%s' into the drive '%s'" msgstr "Ji kerema xwe '%s' bixe nav ajokera '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" msgstr "Rojanekirin temam bû" @@ -567,16 +578,18 @@ msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Heke tu vê guhertoyê bi yeke nû biguherînî tu yê hemû guhertinên xwe yên di " +"pelê mîhengkirinê de winda bikî." #: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "Fermana 'diff' nehatiye dîtin" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Çewtiyeke giran derket" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -591,29 +604,29 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakêt dê were rakirin." msgstr[1] "%d pakêt dê werine rakirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Dê %d pakêtên nû were sazkirin." msgstr[1] "Dê %d pakêtên nû werine sazkirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Dê %d pakêt were bilindkirin" msgstr[1] "Dê %d pakêt werine bilindkirin" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 +#, python-format msgid "" "\n" "\n" @@ -621,9 +634,9 @@ msgid "" msgstr "" "\n" "\n" -"Pêwîst e tu bi tevahî %s daxî. " +"Pêwîst e tu %s bi tevahî daxî. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -631,17 +644,17 @@ msgstr "" "Daxistin û sazkirina bilindkirinê dibe ku bi saetan bidome û dû re jî tu " "nikare betal bike." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." -msgstr "Ji bo ku dane winda nebin hemû sepan û pelgeyên ku vekirî ne bigire" +msgstr "Ji bo ku dane winda nebin hemû sepan û pelgeyên ku vekirî ne bigire." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sîstema te rojane ye" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -649,17 +662,17 @@ msgstr "" "Ji bo pergala te bilindkirin tuneye. Karê bilindkirinê wê a niha were " "betalkirin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "%s rake" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "%s saz bike" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "%s bilind bike" @@ -692,12 +705,14 @@ msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Ev daxistin dê derdora %s bidomîne bi têkiliya 1Mbit DSL û derdora %s bi " +"56k modem." -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Destpêkirina nû pêwîst e" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -788,7 +803,7 @@ msgstr "Bide _ser" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "Çewtiyê _Ragihîne" +msgstr "_çewtiyeke sepanê" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" @@ -804,7 +819,7 @@ msgstr "_Destpêkirina nûjenkirinê" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" -msgstr "Nîşeyên weşandinê nayên dîtin" +msgstr "nîşeyên derxistinan nayên dîtin" #: ../UpdateManager/DistUpgradeFetcher.py:69 msgid "The server may be overloaded. " @@ -907,12 +922,16 @@ msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" +"Lîsteya guhertinan hîna jî ne derbasbare.\n" +"ji kerema xwe re piştre cardin biceribîne." #: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" +"Daxistina lîsteya guhertinan biserneket.\n" +"Ji kerema xwe re girêdana internetê kontrol bike." #. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 @@ -1002,7 +1021,7 @@ msgstr "(Mezinahî:%s)" #: ../UpdateManager/UpdateManager.py:843 msgid "Your distribution is not supported anymore" -msgstr "Belavkariya ku tu bikar tîne nayê destekirin" +msgstr "Belavkariya ku tu êdî bikar tîne nayê destekirin" #: ../UpdateManager/UpdateManager.py:844 msgid "" @@ -1032,9 +1051,7 @@ msgid "" msgstr "" "Sazkirin an jî rakirina nivîsbariyê qet ne gengaz e. Ji kerema xwe berî her " "tiştî vê pirsgirêkê bi gerînendeyê pakêtan ya \"Synaptic\" and jî bi fermana " -"\"sudo apt-get install -f\" re di termînalê de çareser bike.\r\n" -"\r\n" -"— By ElîxanLoran on 2006-08-25 06:29:14 UTC (2 more)" +"\"sudo apt-get install -f\" re di termînalê de çareser bike." #. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 @@ -1065,6 +1082,9 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" +"Divê tu bi destan rojane bikî\n" +"Pergala ta rê nade rojanekirina jixweber. Tu dikarî vê tevgerê mîheng bikî " +"Software Sources di tabloya rojanekirina internetêde." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1099,7 +1119,6 @@ msgid "Description" msgstr "Daxuyanî" #: ../data/glade/UpdateManager.glade.h:12 -#, fuzzy msgid "Release Notes" msgstr "Nîşeyên Weşanê" @@ -1156,7 +1175,6 @@ msgid "_Install Updates" msgstr "Rojanekirinan _Saz bike" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "_Upgrade" msgstr "_Bilindkirin" @@ -1194,6 +1212,13 @@ msgid "" "The results are used to improve the support for popular applications and to " "rank applications in the search results." msgstr "" +"Ji bo pêşvebirina azmûna Ubuntuyê ya bikarhêneran ji kerema xwe re tev li " +"pêşbirka populertiyê bibe. Heke tu beşdar bibe, wê nivîsbariyên ku tê de tu " +"agahiyên şexsî tê de tuneye û bikaranîna van tiştan wê bi hefteyî ji projeya " +"Ubuntuyê re were ragihandin.\n" +"\n" +"Encam wê ji bo pêşvebirina desteka ku ji bo sepanan û ji bo diyarkirina " +"rêzkirina lêgerînan were bikaranîn." #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" @@ -1208,9 +1233,8 @@ msgid "D_elete downloaded software files:" msgstr "Dosiyên nivîsbariyê yên daxistî _jê bibe:" #: ../data/glade/SoftwareProperties.glade.h:12 -#, fuzzy msgid "Download from:" -msgstr "Daxistin hatiye temam kirin" +msgstr "Daxistin ji:" #: ../data/glade/SoftwareProperties.glade.h:13 msgid "Import the public key from a trusted software provider" @@ -1360,8 +1384,8 @@ msgid "" "Check automatically if a new version of the current distribution is " "available and offer to upgrade (if possible)." msgstr "" -"Bixweber kontrol bike bê ka guhertoya nû ya belavkariya mevcûd heye yan na û " -"(heke pêkan be) bê ka bilindkirinan pêşkeş dike yan na." +"Bixweber kontrol bike bê ka guhertoya nû ya belavkariya mevcûd heye yan na " +"û (heke pêkan be) bê ka bilindkirinan pêşkeş dike yan na." #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" @@ -1373,6 +1397,8 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" +"Heke rojanekirinên jixweber ne çalak be, pêwiste tu qenalê lîsteyê bi destan " +"daxî. Ev vebijark xuyakirina bibîrxistker vedişêre." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1391,6 +1417,7 @@ msgid "" "Stores the state of the expander that contains the list of changes and the " "description" msgstr "" +"Rewşa pêşdebirên ku di wan de lîsteya guhertinan û şîrove hene , ambar dike" #: ../data/update-manager.schemas.in.h:8 msgid "The window size" @@ -1423,9 +1450,8 @@ msgstr "Ji bo cîhazan ajokerên ku çavkaniyên wan girtî ne" #. CompDescription #: ../data/channels/Ubuntu.info.in:19 -#, fuzzy msgid "Restricted software" -msgstr "Neazad (Multiverse)" +msgstr "Nivîsbariya bi sînor" #. Description #: ../data/channels/Ubuntu.info.in:25 @@ -1440,7 +1466,7 @@ msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" -msgstr "" +msgstr "Çavkaniya xwezayî ya li gorî bingeha nermalavê" #. CompDescription #: ../data/channels/Ubuntu.info.in:64 @@ -1455,9 +1481,8 @@ msgstr "" #. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Neazad (Multiverse)" +msgstr "Ajokerên ne azad" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 @@ -1466,9 +1491,8 @@ msgstr "Ji bo cîhazan ajokarên xwedî-bawername " #. CompDescription #: ../data/channels/Ubuntu.info.in:70 -#, fuzzy msgid "Restricted software (Multiverse)" -msgstr "Neazad (Multiverse)" +msgstr "Nivîsbariya bi sînor" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 @@ -1573,7 +1597,7 @@ msgstr "Mafê kopîkrinê yê sînorkirî" #. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" -msgstr "Rojanekirinên Ubuntu 4.10 yên Ewlekariyê" +msgstr "Rojanekirinên Ubuntu 4.10 yên Ewlekarî" #. Description #: ../data/channels/Ubuntu.info.in:223 diff --git a/po/lt.po b/po/lt.po index bc848fe7..7693c7ea 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Mantas Kriaučiūnas \n" "Language-Team: Lithuanian \n" @@ -160,20 +160,20 @@ msgstr "" "programa. Prieš tęsdami pirmiausia sutaisykite juos naudodamiesi „synaptic“ " "arba „apt-get“." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Negalima atnaujinti reikiamų metapaketų" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Turėtų būti pašalintas esminis paketas" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Nepavyko paskaičiuoti atnaujinimo" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgstr "" "tai kaip klaidą." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Klaida autentikuojant keletą paketų" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -198,12 +198,12 @@ msgstr "" "Nepavyko patvirtinti kelių paketų autentiškumo. Tai gali būti laikina tinklo " "problema. Galite bandyti vėliau. Žemiau yra nepatvirtintų paketų sąrašas." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Negalima įdiegti „%s“" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -211,12 +211,12 @@ msgstr "" "Buvo neįmanoma įdiegti reikalingo paketo. Praneškite apie tai, kaip klaidą. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 #, fuzzy msgid "Can't guess meta-package" msgstr "Negalima nuspėti meta paketo" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -320,11 +320,11 @@ msgstr "" "Juos galėsite vėl įjungti, kai baigsite atnaujinimą su „programų savybių“ " "įrankiu arba „Synaptic“ paketų tvarkykle." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Klaida atnaujinant" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -332,11 +332,11 @@ msgstr "" "Atnaujinant iškilo problema. Tai greičiausiai kokia nors tinklo problema, " "todėl iš naujo patikrinkite tinklo jungtis ir bandykite dar." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Diske nepakanka laisvos vietos" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -345,15 +345,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "At norite pradėti atnaujinimą?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Nepavyko įdiegti atnaujinimų" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -365,11 +365,11 @@ msgstr "" "Atnaujinimas dabar bus nutrauktas. Jūsų sistema gali būti netinkama naudoti. " "Dabar bus vykdomas atkūrimas (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Nepavyko atsiųsti atnaujinimų" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -377,11 +377,11 @@ msgstr "" "Atnaujinimas dabar bus nutrauktas. Patikrinkite Interneto ryšį arba įdiegimo " "laikmeną ir bandykite dar. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -396,23 +396,23 @@ msgstr "" "Jei nesate įjungę „universe“ skyriaus, šie paketai bus siūlomi pašalinimui " "kitame žingsnyje." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Pašalinti pasenusius paketus?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Praleisti šį žingsnį" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "P_ašalinti" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -421,28 +421,28 @@ msgstr "" "pranešime. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Perkraunama sistema" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Tikrinama paketų valdyklė" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Ruošiamas atnaujinimas" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -452,15 +452,15 @@ msgstr "" "Iškilo neišsprendžiama problema apskaičiuojant atnaujinimą. Praneškite apie " "tai kaip klaidą." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Atnaujinama saugyklų informacija" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Netinkama paketo informacija" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -473,19 +473,19 @@ msgstr "" "paketo „%s“.\n" "Tai labai rimta problema, praneškite apie tai kaip klaidą." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Klausiama patvirtinimo" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Atnaujinama" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Ieškoma pasenusios programinės įrangos" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Sistemos atnaujinimas baigtas." @@ -554,11 +554,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Nerasta komanda „diff“" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Įvyko lemtinga klaida" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -574,7 +574,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -582,7 +582,7 @@ msgstr[0] "Bus pašalintas %s paketas." msgstr[1] "Bus pašalinti %s paketai." msgstr[2] "Bus pašalinta %s paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -590,7 +590,7 @@ msgstr[0] "Bus įdiegtas %s naujas paketas." msgstr[1] "Bus įdiegti %s nauji paketai." msgstr[2] "Bus įdiegta %s naujų paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -598,7 +598,7 @@ msgstr[0] "Bus atnaujintas %s paketas." msgstr[1] "Bus atnaujinti %s paketai." msgstr[2] "Bus atnaujinta %s paketų." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -609,7 +609,7 @@ msgstr "" "\n" "Turite atsisiųsti viso %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -617,35 +617,35 @@ msgid "" msgstr "" "Atnaujinimas gali užtrukti keletą valandų ir vėliau jo negalima atšaukti." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Norint išvengti duomenų praradimo turite užverti visas atvertas programas ir " "dokumentus." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Jūsų sistema atnaujinta" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Pašalinti %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Įdiegti %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Atnaujinti %s" @@ -679,11 +679,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Reikia perkrauti kompiuterį" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/lv.po b/po/lv.po index 8ef74981..0de6e184 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-09-05 20:00+0000\n" "Last-Translator: Raivis Dejus \n" "Language-Team: Latvian \n" @@ -155,20 +155,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Nevar aprēķināt atjauninājumu" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -177,34 +177,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Nevar instalēt '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -294,21 +294,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -317,15 +317,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -334,21 +334,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -357,65 +357,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Izņemt" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -425,19 +425,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -503,11 +503,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -517,7 +517,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -525,7 +525,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -533,7 +533,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -541,7 +541,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -549,39 +549,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -615,11 +615,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/mk.po b/po/mk.po index 2d3da4e4..557290cc 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Арангел Ангов \n" "Language-Team: Macedonian \n" @@ -161,20 +161,20 @@ msgstr "" "Вашиот систем содржи оштетени пакети кои не може да се поправат со овој " "софтвер. Ве молам поправете ги со Синаптик или apt-get пред да продолжите." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Не може да се надградат потребните мета пакети" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Важен пакет мора да се отстрани" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Не може да се одреди надградбата" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -186,11 +186,11 @@ msgstr "" "како бубачка." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Грешка при автентикација на некои пакети" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -199,12 +199,12 @@ msgstr "" "Не можат да се автентицираат некои пакети. Може да има мрежни пречки. " "Обидете се повторно. Видете подолу за листа на неавтентицирани пакети." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Не може да се инсталира %s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -214,11 +214,11 @@ msgstr "" "како бубачка. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Не може да се погоди мета пакетот" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -324,12 +324,12 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 #, fuzzy msgid "Error during update" msgstr "Грешка при отстранување на клучот" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -337,11 +337,11 @@ msgstr "" "Се случи проблем при надградбата. Ова е обично некој проблем со мрежата и Ве " "молиме да ја проверете Вашата мрежна врска и да се обидете повторно." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Нема доволно место на дискот" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -353,15 +353,15 @@ msgstr "" "поранешни инсталации со помош на 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Дали сакате да ја започнете надградбата?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Не можам да ги инсталирам надградбите" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -370,11 +370,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Не можам да ги симнам надградбите" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -382,11 +382,11 @@ msgstr "" "Надградбата сега прекинува. Проверете ја Вашата интернет врска или медиумот " "за инсталација и обидете се повторно. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -395,24 +395,24 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Да ги отстранам застарените пакети?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Прескокни го овој чекор" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Отстрани" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 #, fuzzy msgid "Error during commit" msgstr "Грешка во извршувањето" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -421,29 +421,29 @@ msgstr "" "повеќе информации. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 #, fuzzy msgid "Checking package manager" msgstr "Веќе работи друг менаџер за пакети" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Преземам промени" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -453,15 +453,15 @@ msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Ги ажурирам информациите за складиштето" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Невалидни информации за пакетот" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -471,20 +471,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Прашувам за потврда" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 #, fuzzy msgid "Upgrading" msgstr "Надградбата е завршена" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Барам застарен софтвер" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Надградбата на системот е завршена." @@ -551,11 +551,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Командата „diff“ не беше пронајдена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Се случи фатална грешка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -565,7 +565,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -573,7 +573,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -581,7 +581,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -589,7 +589,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -597,42 +597,42 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "За да спречите загуба на податоци, затворете ги сите отворени апликации и " "документи." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Вашиот систем е надграден!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Отстрани %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Инсталирај %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Надгради %s" @@ -666,11 +666,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Потребно е рестартирање" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/mr.po b/po/mr.po new file mode 100644 index 00000000..9aefc25e --- /dev/null +++ b/po/mr.po @@ -0,0 +1,1502 @@ +# Marathi translation for update-manager +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Marathi \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\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "" + +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "" + +#. TRANSLATORS: %s is a country +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +msgid "Import key" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +msgid "Error importing selected file" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:992 +msgid "Error removing the key" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +msgid "The key you selected could not be removed. Please report this as a bug." +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:238 +msgid "Can't upgrade required meta-packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:242 +msgid "A essential package would have to be removed" +msgstr "" + +#. FIXME: change the text to something more useful +#: ../DistUpgrade/DistUpgradeCache.py:245 +msgid "Could not calculate the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#. FIXME: maybe ask a question here? instead of failing? +#: ../DistUpgrade/DistUpgradeCache.py:280 +msgid "Error authenticating some packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:281 +msgid "" +"It was not possible to authenticate some packages. This may be a transient " +"network problem. You may want to try again later. See below for a list of " +"unauthenticated packages." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:346 +#, python-format +msgid "Can't install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:347 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" + +#. FIXME: provide a list +#: ../DistUpgrade/DistUpgradeCache.py:354 +msgid "Can't guess meta-package" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:355 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +msgid "Failed to add the CD" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:76 +#, python-format +msgid "" +"There was a error adding the CD, the upgrade will abort. Please report this " +"as a bug if this is a valid Ubuntu CD.\n" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:108 +msgid "Reading cache" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:157 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +msgid "No valid mirror found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:250 +#, python-format +msgid "" +"While scaning your repository information no mirror entry for the upgrade " +"was found.This cam happen if you run a internal mirror or if the mirror " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" + +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 +msgid "Generate default sources?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:268 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "Repository information invalid" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:303 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:309 +msgid "Third party sources disabled" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:310 +msgid "" +"Some third party entries in your sources.list were disabled. You can re-" +"enable them after the upgrade with the 'software-properties' tool or with " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:364 +msgid "Error during update" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:365 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:374 +msgid "Not enough free disk space" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:375 +#, python-format +msgid "" +"The upgrade aborts now. Please free at least %s of disk space on %s. Empty " +"your trash and remove temporary packages of former installations using 'sudo " +"apt-get clean'." +msgstr "" + +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:447 +msgid "Do you want to start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:468 +msgid "Could not install the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:469 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:487 +msgid "Could not download the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:488 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:524 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:525 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:560 +msgid "Remove obsolete packages?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:561 +msgid "_Skip This Step" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:561 +msgid "_Remove" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:572 +msgid "Error during commit" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:573 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" + +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:585 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:641 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 +msgid "Checking package manager" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:681 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:682 +msgid "" +"Preparing the system for the upgrade failed. Please report this as a bug " +"against the 'update-manager' package and include the files in /var/log/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:705 +msgid "Updating repository information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:730 +msgid "Invalid package information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:731 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:743 +msgid "Asking for confirmation" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:747 +msgid "Upgrading" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:754 +msgid "Searching for obsolete software" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:759 +msgid "System upgrade is complete." +msgstr "" + +#. print "mediaChange %s %s" % (medium, drive) +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, python-format +msgid "About %s remaining" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +msgid "" +"The upgrade aborts now. Please report this bug against the 'update-manager' " +"package and include the files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#. self.expander.set_expanded(True) +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 +msgid "The 'diff' command was not found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 +msgid "A fatal error occured" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 +msgid "" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 +msgid "To prevent data loss close all open applications and documents." +msgstr "" + +#. FIXME: this should go into DistUpgradeController +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../UpdateManager/UpdateManager.py:622 +msgid "Your system is up-to-date" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 +#, python-format +msgid "Remove %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 +#, python-format +msgid "Install %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 +#, python-format +msgid "Upgrade %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "" + +#. 56 kbit +#. 1Mbit = 1024 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:111 +msgid "Reboot required" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:112 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#. app.openCache() +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 +msgid "_Replace" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "" + +#. no script file found in extracted tarbal +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "" + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#. Description +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#. Description +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#. TRANSLATORS: updates from an 'unknown' origin +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:478 +#, python-format +msgid "Version %s: \n" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:539 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:566 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:572 +msgid "_Check All" +msgstr "" + +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 +#, python-format +msgid "Download size: %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:633 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "" +msgstr[1] "" + +#: ../UpdateManager/UpdateManager.py:666 +msgid "Please wait, this can take some time." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:668 +msgid "Update is complete" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:719 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:826 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:830 +#, python-format +msgid "Version %s" +msgstr "" + +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:843 +msgid "Your distribution is not supported anymore" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:844 +msgid "" +"You will not get any further security fixes or critical updates. Upgrade to " +"a later version of Ubuntu Linux. See http://www.ubuntu.com for more " +"information on upgrading." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:863 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "" + +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:902 +msgid "Software index is broken" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:903 +msgid "" +"It is impossible to install or remove any software. Please use the package " +"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " +"this issue at first." +msgstr "" + +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"To improve the user experience of Ubuntu please take part in the " +"popularity contest. If you do so the list of installed software and how " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "" +"If automatic checking for updates is disabled, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#. ChangelogURI +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#. ChangelogURI +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#. Description +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "" + +#. BaseURI +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "" + +#. Description +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "" + +#. BaseURI +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "" + +#. Description +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "" + +#. CompDescription +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "" + +#. CompDescription +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "" diff --git a/po/ms.po b/po/ms.po index 804258b0..a821a844 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: azlinux \n" "Language-Team: Malay \n" @@ -161,20 +161,20 @@ msgstr "" "menggunakan sofwer ini. Sila baiki dahulu menggunakan synaptic atau apt-get " "sebelum meneruskan." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Tidak dapat menaikkan taraf pakej-meta yang diperlukan" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Satu pakej yang perlu terpaksa dikeluarkan" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menjangka penaikkan taraf" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -186,11 +186,11 @@ msgstr "" "penaikkan. Sila laporkan ini sebagai ralat pepijat." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Ralat mengesahkan sesetengah pakej" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -200,12 +200,12 @@ msgstr "" "masalah sementara rangkaian. Anda mungkin mahu mencuba lagi kemudian. Lihat " "dibawah untuk pakej-pakej yang belum disahkan." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Tidak dapat memasang '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,11 +214,11 @@ msgstr "" "pepijat. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Pakej meta tidak dapat diduga." -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -335,11 +335,11 @@ msgstr "" "selepas penaikkan taraf menggunakan alatan 'software-properties' ataupun " "'synaptic'." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Ralat semasa pengemaskinian." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -348,11 +348,11 @@ msgstr "" "yang berkaitan dengan masaalah rangkaian, sila periksa dan cuba lagi " "sambungan rangkaian anda." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Muatak cakera keras tidak mencukupi." -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -364,15 +364,15 @@ msgstr "" "pemasangan sebelum ini menggunakan 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Anda mahu mulakan penaikkan taraf?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Tidak dapat memasang pakej-pakej penaikkan taraf." -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -384,11 +384,11 @@ msgstr "" "Penaikkan taraf tidak dapat diteruskan. Sistem anda mungkin tidak stabil. " "Sistem 'recovery' telah dijalankan (dpkg --configure -a)" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Pakej-pakej penaikan taraf tidak dapat dicapai." -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -396,11 +396,11 @@ msgstr "" "Penaikkan taraf tidak dapat diteruskan. Sila semak sambungan 'internet' atau " "media pemasangan anda dan cuba lagi. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -414,50 +414,50 @@ msgstr "" "Jika anda tidak megaktifkan 'universe', pakej-pakej ini akan dicadangkan " "untuk dikeluarkan di peringkat selanjutnya." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Keluarkan pakej-pakej yang sudah luput?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Abaikan langkah ini" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -467,15 +467,15 @@ msgstr "" "Satu masaalah yang tidak dapat perbetulkan berlaku ketika menjangkakan taraf " "penaikkan. Sila laporkan ini sebagai ralat pepijat." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -485,19 +485,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Mengemaskini" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Mencari perisian yang lapuk" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Naiktaraf sistem sempurna." @@ -563,11 +563,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -577,28 +577,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Satu pakej yang perlu terpaksa dikeluarkan" msgstr[1] "Satu pakej yang perlu terpaksa dikeluarkan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -606,39 +606,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "Untuk mengelakkan kehilangan data tutup kesemua aplikasi dan dokumen." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Buang %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Pasang %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Naiktaraf %s" @@ -672,11 +672,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/nb.po b/po/nb.po index 54cffe84..5eacfe93 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:04+0000\n" "Last-Translator: Hans Petter Birkeland \n" "Language-Team: Norwegian Bokmal \n" @@ -166,20 +166,20 @@ msgstr "" "av dette programmet. Vennligst rett opp i dette ved å bruke Synaptic eller " "apt-get før du fortsetter." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Kan ikke oppgradere nødvendige meta-pakker" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "En nødvendig pakke må fjernes" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Kunne ikke forberede oppgraderingen" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -191,11 +191,11 @@ msgstr "" "rapporter dette som en feil." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Kunne ikke autentisere noen pakker" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -205,12 +205,12 @@ msgstr "" "nettverksproblem, så du bør prøve igjen senere. Se under for listen over " "pakker som ikke kunne autentiseres." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Kan ikke installere '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -218,11 +218,11 @@ msgstr "" "Kunne ikke installere en nødvendig pakke. Vennligst rapporter denne feilen. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Kan ikke gjette på meta-pakke" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -337,11 +337,11 @@ msgstr "" "aktivere dem etter oppgraderingen ved hjelp av verktøyet 'Egenskaper for " "programvare' eller med Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Feil under oppdatering" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -350,11 +350,11 @@ msgstr "" "problem med nettverkstilkoblingen. Vennligst sjekk nettverkstilkoblingen din " "og prøv igjen." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Ikke nok ledig diskplass" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -366,15 +366,15 @@ msgstr "" "bruke 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Ønsker du å starte oppgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Kunne ikke installere oppgraderingene" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -386,11 +386,11 @@ msgstr "" "Oppgraderingen avbrytes nå. Systemet ditt kan være ubrukelig. En reperasjon " "ble forsøkt kjørt (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Kunne ikke laste ned alle oppgraderingene." -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -398,11 +398,11 @@ msgstr "" "Oppgraderingen avbrytes nå. Vennligst sjekk internet-tilkoblingen eller " "installasjonsmediet og prøv på nytt. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -417,23 +417,23 @@ msgstr "" "Hvis du ikke har 'universe' aktivert vil disse pakkene bli foreslått fjernet " "i neste steg." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Ønsker du å fjerne utdaterte pakker?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Hopp over dette punktet" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Fjern" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Feil ved commit" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -442,28 +442,28 @@ msgstr "" "informasjon. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Gjenoppretter systemets originale tilstand" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Sjekker pakkehåndterer" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Forbereder oppgraderingen" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -473,15 +473,15 @@ msgstr "" "Et uløselig problem oppstod ved forberedelse av oppgraderingen. Vennligst " "rapporter dette som en feil." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Oppdaterer informasjon om arkivet" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Ugyldig pakkeinformasjon" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -494,19 +494,19 @@ msgstr "" "pakken '%s'.\n" "Dette indikerer en alvorlig feil, vennligst rapportér denne feilen." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Spør om bekreftelse" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Oppgraderer" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Søker etter utdatert programvare" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Systemoppgraderingen er fullført" @@ -575,11 +575,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Kommandoen 'diff' ble ikke funnet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "En uopprettelig feil oppsto" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -593,28 +593,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%s pakke vil bli fjernet." msgstr[1] "%s pakker vil bli fjernet" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%s pakke vil bli installert." msgstr[1] "%s pakker vil bli installert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%s pakke vil bli oppgradert." msgstr[1] "%s pakker vil bli oppgradert." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -625,7 +625,7 @@ msgstr "" "\n" "Du må laste ned totalt %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " @@ -634,34 +634,34 @@ msgstr "" "Oppgraderingen kan ta flere timer og kan ikke avbrytes på noe senere " "tidspunkt." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "For å forhindre tap av data bør du lukke alle åpne programmer og dokumenter." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Systemet ditt er oppdatert!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Fjern %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Installér %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Oppgradér %s" @@ -695,11 +695,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Omstart er nødvendig" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/ne.po b/po/ne.po index d47a5543..774056fe 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Jaydeep Bhusal \n" "Language-Team: Nepali \n" @@ -157,20 +157,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -180,23 +180,23 @@ msgid "" msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -204,11 +204,11 @@ msgid "" msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -298,22 +298,22 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 #, fuzzy msgid "Error during update" msgstr "कुञ्जि हटाउँदा त्रुटि" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -322,15 +322,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -339,21 +339,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -362,52 +362,52 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 #, fuzzy msgid "Checking package manager" msgstr "अर्को प्याकेज व्यवस्थापक चलिरेको छ" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "परिवर्तनहरु डाउनलोड गर्दै" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -415,15 +415,15 @@ msgid "" "upgrade/ in the bugreport." msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -433,20 +433,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 #, fuzzy msgid "Upgrading" msgstr "स्तरवृद्धि समाप्त" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -513,11 +513,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -527,28 +527,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -556,40 +556,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "तपाइं को प्रणालि अप-टु-डेट छ!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -623,11 +623,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/nl.po b/po/nl.po index d7f74737..252ff3de 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:13+0000\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-21 13:15+0000\n" "Last-Translator: Tino Meinen \n" "Language-Team: Nederlands \n" "MIME-Version: 1.0\n" @@ -56,7 +56,7 @@ msgstr "Na %s dagen" #. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 -#, fuzzy, python-format +#, python-format msgid "%s updates" msgstr "%s updates" @@ -84,7 +84,6 @@ msgid "Nearest server" msgstr "dichtsbijzijnde server" #: ../SoftwareProperties/SoftwareProperties.py:345 -#, fuzzy msgid "Custom servers" msgstr "Andere servers" @@ -162,20 +161,20 @@ msgstr "" "met deze software. Repareer deze eerst met synaptic of apt-get voordat u " "verder gaat." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Kan de vereiste meta-pakketten niet upgraden" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Een essentieel pakket zou verwijderd worden" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Kan de vereisten voor de upgrade niet berekenen" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -188,11 +187,11 @@ msgstr "" "voeg daarbij de bestanden die zich in /var/log/dist-upgrade/ bevinden." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Fout bij het bepalen van de echtheid van sommige pakketten" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -203,12 +202,12 @@ msgstr "" "proberen. Hieronder vindt u een lijst met pakketten waarvan de echtheid niet " "vastgesteld is." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Kan '%s' niet installeren" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -217,11 +216,11 @@ msgstr "" "fout te rapporteren. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Kan het meta-pakket niet raden" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -302,7 +301,7 @@ msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" -msgstr "De standaard bronnenlijst genereren?" +msgstr "De standaard bronnenlijst aanmaken?" #: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format @@ -344,11 +343,11 @@ msgstr "" "kunt ze na de upgrade weer inschakelen met het programma ‘software-" "eigenschappen’ of met ‘synaptic’." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Fout tijdens het updaten" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -356,11 +355,11 @@ msgstr "" "Tijdens het updaten is er iets misgegaan. Dit komt meestal door " "netwerkproblemen. Controleer uw netwerkverbinding en probeer opnieuw." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Niet genoeg vrije schijfruimte" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -372,15 +371,15 @@ msgstr "" "vorige installaties via 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Wilt u beginnen met de upgrade?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Kon de upgrades niet installeren" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -395,11 +394,11 @@ msgstr "" "Rapporteer deze fout voor het pakket 'update-manager' en voeg hierbij de " "bestanden die zich in /var/log/dist-upgrade/ bevinden." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Kon de upgrades niet downloaden" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -407,11 +406,11 @@ msgstr "" "De upgrade wordt nu afgebroken. Controleer uw internetverbinding of het " "installatiemedium en probeer opnieuw. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Ondersteuning voor bepaalde toepassingen is beëindigd." -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -426,23 +425,23 @@ msgstr "" "geactiveerd heeft zal bij de volgende stap gevraagd worden om deze pakketten " "te verwijderen." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Overbodige pakketten verwijderen?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Deze stap overslaan" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Verwijderen" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Fout bij het toepassen" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -451,27 +450,27 @@ msgstr "" "voor meer informatie. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "De oorspronkelijke toestand wordt hersteld" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Backport van ‘%s’ ophalen" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Pakkettenbeheer controleren" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Voorbereiden van de upgrade is mislukt" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -482,15 +481,15 @@ msgstr "" "Meld deze fout voor het pakket ‘update-manager’ in een foutrapportage en " "voeg daarbij de bestanden die zich in /var/log/dist-upgrade/ bevinden." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Updaten van de informatie over de pakketbronnen" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Ongeldige pakketinformatie" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -505,19 +504,19 @@ msgstr "" "het pakket ‘update-manager’ en voeg daarbij de bestanden die zich in /var/" "log/dist-upgrade/ bevinden." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Vragen om bevestiging" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Bezig met upgraden" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Zoeken naar overbodige software" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Systeemupgrade is voltooid." @@ -532,7 +531,7 @@ msgid "Fetching is complete" msgstr "Het downloaden is voltooid" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li at %s/s" msgstr "Downloaden van bestand %li uit %li met %s/s" @@ -543,7 +542,7 @@ msgid "About %s remaining" msgstr "Ongeveer %s resterend" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 -#, fuzzy, python-format +#, python-format msgid "Fetching file %li of %li" msgstr "Downloaden van bestand %li uit %li" @@ -590,11 +589,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "De opdracht 'diff' is niet gevonden" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Er is een ernstige fout ontstaan" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -609,29 +608,29 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakket zal verwijderd worden." msgstr[1] "%d pakketten zullen verwijderd worden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nieuw pakket zal geïnstalleerd worden." msgstr[1] "%d nieuwe pakketten zullen geïnstalleerd worden." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pakket zal een upgrade krijgen" msgstr[1] "%d pakketten zullen een upgrade krijgen." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 -#, fuzzy, python-format +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 +#, python-format msgid "" "\n" "\n" @@ -641,8 +640,7 @@ msgstr "" "\n" "U moet in totaal %s downloaden. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 -#, fuzzy +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -650,19 +648,19 @@ msgstr "" "Het upgraden kan enkele uren in beslag nemen en kan tussentijds niet worden " "afgebroken." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Sluit alle openstaande toepassingen en documenten om dataverlies te " "voorkomen." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Uw systeem is up-to-date" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -670,17 +668,17 @@ msgstr "" "Er zijn geen upgrades beschikbaar voor uw systeem. De upgrade wordt nu " "afgebroken." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "%s verwijderen" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "%s installeren" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "%s upgraden" @@ -716,11 +714,11 @@ msgstr "" "Deze download duurt ongeveer %s met een 1Mbit DSL-verbinding of %s met een " "56k modem" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "De computer moet opnieuw opgestart worden" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -772,7 +770,6 @@ msgid "Difference between the files" msgstr "Verschillen tussen de bestanden" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" msgstr "Downloaden en installeren van de upgrades" @@ -895,7 +892,6 @@ msgid "Verfication failed" msgstr "Verificatie is mislukt" #: ../UpdateManager/DistUpgradeFetcher.py:222 -#, fuzzy msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " @@ -987,9 +983,8 @@ msgid "_Uncheck All" msgstr "Alles _deselecteren" #: ../UpdateManager/UpdateManager.py:572 -#, fuzzy msgid "_Check All" -msgstr "_Controleren" +msgstr "Alles _controleren" #. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 @@ -1028,7 +1023,7 @@ msgstr "Versie %s" #. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 -#, fuzzy, python-format +#, python-format msgid "(Size: %s)" msgstr "(Grootte: %s)" diff --git a/po/nn.po b/po/nn.po index 5284803f..7acf476e 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Willy André Bergstrøm \n" "Language-Team: Norwegian Nynorsk \n" @@ -158,20 +158,20 @@ msgstr "" "Systemet ditt inneheld øydelagde pakkar som ikkje kunne reparerast med denne " "programvaren. Reparer dei med synaptic eller apt-get før du held fram." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Kan ikkje oppgradere naudsynte meta-pakkar" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Ein naudsynt pakke vil måtte fjernast" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Kunne ikkje forberede oppgraderinga" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -180,11 +180,11 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Kunne ikkje autentisere somme pakkar" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -194,12 +194,12 @@ msgstr "" "nettverksproblem, så du bør prøve att seinare. Sjå under lista over pakkar " "som ikkje kunne autentiserast." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Kan ikkje installere '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -208,11 +208,11 @@ msgstr "" "feilen. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Kan ikkje gjette på meta-pakke" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -316,11 +316,11 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Feil under oppdatering" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -328,11 +328,11 @@ msgstr "" "Eit problem oppsto under oppdateringa. Dette er vanlegvis ei form for " "nettverksproblem. Sjekk nettverkskoblinga di og prøv igjen." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Ikkje nok ledig diskplass" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -341,15 +341,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -358,21 +358,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -381,65 +381,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -449,19 +449,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -527,11 +527,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -541,28 +541,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -570,39 +570,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -636,11 +636,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/no.po b/po/no.po index 0459ea47..ee9f5505 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2005-06-08 23:10+0200\n" "Last-Translator: Terance Edward Sola \n" "Language-Team: Norwegian Bokmal \n" @@ -157,20 +157,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -181,23 +181,23 @@ msgstr "" "Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -206,11 +206,11 @@ msgstr "" "Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen." #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -300,22 +300,22 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 #, fuzzy msgid "Error during update" msgstr "Feil under fjerning av nøkkel" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -324,15 +324,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,21 +341,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -364,52 +364,52 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 #, fuzzy msgid "Checking package manager" msgstr "En annen pakkehåndterer kjører" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Laster ned endringer" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -418,15 +418,15 @@ msgid "" msgstr "" "Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -436,21 +436,21 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 #, fuzzy msgid "Asking for confirmation" msgstr "Undersøker systemkonfigurasjon" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 #, fuzzy msgid "Upgrading" msgstr "Oppgradering fullført" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -517,11 +517,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -531,28 +531,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -560,40 +560,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Systemet er helt oppdatert!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, fuzzy, python-format msgid "Remove %s" msgstr "Detaljer" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, fuzzy, python-format msgid "Install %s" msgstr "_Installer" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, fuzzy, python-format msgid "Upgrade %s" msgstr "Oppgradering fullført" @@ -627,11 +627,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/oc.po b/po/oc.po index 564e980b..83b9f84e 100644 --- a/po/oc.po +++ b/po/oc.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:16+0000\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-18 10:01+0000\n" "Last-Translator: Yannig MARCHEGAY (Kokoyaya) \n" "Language-Team: Occitan (post 1500) \n" @@ -83,7 +83,7 @@ msgstr "Servidor per %s" #: ../SoftwareProperties/SoftwareProperties.py:324 msgid "Nearest server" -msgstr "" +msgstr "Servidor mai prèp" #: ../SoftwareProperties/SoftwareProperties.py:345 msgid "Custom servers" @@ -118,7 +118,7 @@ msgstr "Error al moment d'importar lo fichièr seleccionat" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -"Lo fichièr seleccionat es benlèj pas una clau GPG o es possible que siá " +"Lo fichièr seleccionat es benlèu pas una clau GPG o es possible que siá " "corrumput." #: ../SoftwareProperties/SoftwareProperties.py:992 @@ -131,7 +131,7 @@ msgstr "" "Avem pas poscut suprimir la clau qu'avètz seleccionada. Raportatz l'anomalia." #: ../SoftwareProperties/SoftwareProperties.py:1039 -#, fuzzy, python-format +#, python-format msgid "" "Error scanning the CD\n" "\n" @@ -159,20 +159,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" -msgstr "Impossible calcular la mesa a jorn" +msgstr "Impossible de calcular la mesa a jorn" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -181,34 +181,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Impossible d'installar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -230,6 +230,11 @@ msgid "" "The error message was:\n" "'%s'" msgstr "" +"I a agut una error al moment d'apondre lo CD, anam anullar la mesa a jorn. " +"Raportatz aquò coma una anomalia s'es un CD valid d'Ubuntu.\n" +"\n" +"Lo messatge d'error era :\n" +"'%s'" #: ../DistUpgrade/DistUpgradeControler.py:108 msgid "Reading cache" @@ -298,21 +303,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Error al moment de metre a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Pas pro d'espaci liure" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -321,15 +326,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Volètz començar la mesa a jorn ?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" -msgstr "Impossible installar las mesas a jorn" +msgstr "Impossible d'installar las mesas a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -338,21 +343,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" -msgstr "Impossible descargar las mesas a jorn" +msgstr "Impossible de descargar las mesas a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -361,65 +366,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Suprimir los paquetatges obsolets ?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Suprimir" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" -msgstr "" +msgstr "Verificacion del gestionari de paquetatges" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" -msgstr "" +msgstr "Preparacion de la mesa a jorn impossibla" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -429,19 +434,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Demanda de confirmacion" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Mesa a jorn" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Recèrca de logicials obsolets" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "La mesa a jorn del sistèma es acabada." @@ -453,12 +458,12 @@ msgstr "Inserissètz lo disc '%s' dins lo legidor '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 msgid "Fetching is complete" -msgstr "" +msgstr "La telecarga dels fichièrs es terminada" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 #, python-format msgid "Fetching file %li of %li at %s/s" -msgstr "" +msgstr "Telecarga del fichièr %li sus %li a %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:130 #: ../DistUpgrade/DistUpgradeViewGtk.py:253 @@ -469,7 +474,7 @@ msgstr "Environ %s restantas" #: ../DistUpgrade/DistUpgradeViewGtk.py:132 #, python-format msgid "Fetching file %li of %li" -msgstr "" +msgstr "Telecarga del fichièr %li sus %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) @@ -496,6 +501,8 @@ msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" +"Remplaçar lo fichièr de configuracion personalisat\n" +"'%s' ?" #: ../DistUpgrade/DistUpgradeViewGtk.py:204 msgid "" @@ -507,11 +514,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Impossible de trobar la comanda 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" -msgstr "" +msgstr "I a agut una error fatala" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -521,28 +528,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Anam suprimir %d paquetatge." +msgstr[1] "Anam suprimir %d paquetatges." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Anam installar %d paquetatge nòu." +msgstr[1] "Anam installar %d paquetatges nòus." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Anam metre a jorn %d paquetatge." +msgstr[1] "Anam metre a jorn %d paquetatges." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -553,39 +560,39 @@ msgstr "" "\n" "Debètz telecargar un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" -msgstr "" +msgstr "Vòstre sistèma es a jorn" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Suprimir %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Installar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Metre a jorn %s" @@ -598,12 +605,12 @@ msgstr "%li jorns %li oras %li minutas" #: ../DistUpgrade/DistUpgradeView.py:29 #, python-format msgid "%li hours %li minutes" -msgstr "" +msgstr "%li jorns %li oras" #: ../DistUpgrade/DistUpgradeView.py:31 #, python-format msgid "%li minutes" -msgstr "" +msgstr "%li minutas" #: ../DistUpgrade/DistUpgradeView.py:32 #, python-format @@ -619,11 +626,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Debètz tornar aviar l'ordenador" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -647,15 +654,15 @@ msgstr "" #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" -msgstr "" +msgstr "Tornatz aviar lo sistèma per terminar la mesa a jorn" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "" +msgstr "Aviar la mesa a jorn ?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" -msgstr "" +msgstr "Mesa a jorn d'Ubuntu cap a la version 6.10" #: ../DistUpgrade/DistUpgrade.glade.h:8 msgid "Cleaning up" @@ -670,9 +677,8 @@ msgid "Difference between the files" msgstr "Diferéncia entre los fichièrs" #: ../DistUpgrade/DistUpgrade.glade.h:11 -#, fuzzy msgid "Fetching and installing the upgrades" -msgstr "Impossible installar las mesas a jorn" +msgstr "Impossible d'installar las mesas a jorn" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" @@ -692,11 +698,11 @@ msgstr "Terminal" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "" +msgstr "_Anullar la mesa a jorn" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Contunhar" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" @@ -709,7 +715,7 @@ msgstr "_Remplaçar" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "" +msgstr "_Raportar una anomalia" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" @@ -721,7 +727,7 @@ msgstr "_Contunhar la mesa a jorn" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "" +msgstr "_Aviar la mesa a jorn" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -737,7 +743,7 @@ msgstr "Impossible de telecargar las informacions de version" #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." -msgstr "Verificatz vòstra connexion internet." +msgstr "Verificatz vòstra connection internet." #. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 @@ -775,7 +781,7 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "" +msgstr "Impossible de traire" #: ../UpdateManager/DistUpgradeFetcher.py:215 msgid "" @@ -832,7 +838,7 @@ msgstr "" #. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" -msgstr "" +msgstr "Mesas a jorn de seguretat importantas" #. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 @@ -850,15 +856,13 @@ msgid "Backports" msgstr "Ubuntu 5.10 'Breezy Badger'" #: ../UpdateManager/UpdateManager.py:242 -#, fuzzy msgid "Distribution updates" -msgstr "Mesas a jorn per internet" +msgstr "Mesas a jorn de la distribucion" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 -#, fuzzy msgid "Other updates" -msgstr "Mesas a jorn per internet" +msgstr "Autras mesas a jorn" #: ../UpdateManager/UpdateManager.py:478 #, python-format @@ -867,16 +871,15 @@ msgstr "Version %s : \n" #: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." -msgstr "" +msgstr "Telecarga de la tièra de las modificacions" #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" msgstr "" #: ../UpdateManager/UpdateManager.py:572 -#, fuzzy msgid "_Check All" -msgstr "_Verificar" +msgstr "Tot _verificar" #. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 @@ -900,9 +903,8 @@ msgid "Update is complete" msgstr "La mesa a jorn es terminada" #: ../UpdateManager/UpdateManager.py:719 -#, fuzzy msgid "Checking for updates" -msgstr "Mesas a jorn per internet" +msgstr "Verificacion de mesas a jorn" #: ../UpdateManager/UpdateManager.py:826 #, python-format @@ -910,9 +912,9 @@ msgid "From version %(old_version)s to %(new_version)s" msgstr "" #: ../UpdateManager/UpdateManager.py:830 -#, fuzzy, python-format +#, python-format msgid "Version %s" -msgstr "Version %s :" +msgstr "Version %s" #. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 @@ -934,7 +936,7 @@ msgstr "" #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" -msgstr "" +msgstr "Una version nòva '%s' es disponibla" #. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 @@ -951,18 +953,18 @@ msgstr "" #. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" -msgstr "" +msgstr "Pas cap" #. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" -msgstr "" +msgstr "1 ko" #. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" -msgstr "" +msgstr "%.0f ko" #. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 @@ -985,18 +987,11 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:5 #, fuzzy msgid "Not all updates can be installed" -msgstr "" -"Error a moment d'examinar lo CD\n" -"\n" -"%s" +msgstr "Impossible d'installar totas las mesas a jorn" #: ../data/glade/UpdateManager.glade.h:6 -#, fuzzy msgid "Starting update manager" -msgstr "" -"Error a moment d'examinar lo CD\n" -"\n" -"%s" +msgstr "Aviada del gestionari de paquetatges" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" @@ -1004,7 +999,7 @@ msgstr "Cambis" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" -msgstr "" +msgstr "Cambis e descripcion de la mesa a jorn" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" @@ -1058,11 +1053,11 @@ msgstr "_Verificar" #: ../data/glade/UpdateManager.glade.h:22 msgid "_Distribution Upgrade" -msgstr "" +msgstr "Mesa a jorn de la _distribucion" #: ../data/glade/UpdateManager.glade.h:23 msgid "_Hide this information in the future" -msgstr "" +msgstr "_Amagar aquestas informacions a partir d'ara" #: ../data/glade/UpdateManager.glade.h:24 msgid "_Install Updates" @@ -1076,16 +1071,15 @@ msgstr "_Metre a jorn" #: ../data/glade/UpdateManager.glade.h:26 #, fuzzy msgid "changes" -msgstr "Cambis" +msgstr "cambis" #: ../data/glade/UpdateManager.glade.h:27 msgid "updates" msgstr "mesas a jorn" #: ../data/glade/SoftwareProperties.glade.h:2 -#, fuzzy msgid "Automatic updates" -msgstr "Mesas a jorn per internet" +msgstr "Mesas a jorn automaticas" #: ../data/glade/SoftwareProperties.glade.h:3 msgid "CDROM/DVD" @@ -1096,9 +1090,8 @@ msgid "Internet updates" msgstr "Mesas a jorn per internet" #: ../data/glade/SoftwareProperties.glade.h:5 -#, fuzzy msgid "Internet" -msgstr "Mesas a jorn per internet" +msgstr "Internet" #: ../data/glade/SoftwareProperties.glade.h:6 msgid "" @@ -1112,7 +1105,6 @@ msgid "" msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 -#, fuzzy msgid "Add Cdrom" msgstr "Apondre un CD-ROM" @@ -1122,7 +1114,7 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:11 msgid "D_elete downloaded software files:" -msgstr "" +msgstr "Suprimir los fichièrs dels logicials t_elecargats :" #: ../data/glade/SoftwareProperties.glade.h:12 #, fuzzy @@ -1360,9 +1352,8 @@ msgstr "" #. CompDescription #: ../data/channels/Ubuntu.info.in:67 -#, fuzzy msgid "Non-free drivers" -msgstr "Pas liure (multiverse)" +msgstr "Pilòts pas liures" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 @@ -1397,21 +1388,19 @@ msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description #: ../data/channels/Ubuntu.info.in:123 -#, fuzzy msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "CD-ROM amb Ubuntu 5.10 'Breezy Badger'" #. Description #: ../data/channels/Ubuntu.info.in:135 -#, fuzzy msgid "Ubuntu 5.10 Security Updates" -msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +msgstr "Mesas a jorn de seguretat per Ubuntu 5.10" #. Description #: ../data/channels/Ubuntu.info.in:140 #, fuzzy msgid "Ubuntu 5.10 Updates" -msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +msgstr "Mesas a jorn per Ubuntu 5.10" #. Description #: ../data/channels/Ubuntu.info.in:145 @@ -1421,9 +1410,8 @@ msgstr "Ubuntu 5.10 'Breezy Badger'" #. Description #: ../data/channels/Ubuntu.info.in:152 -#, fuzzy msgid "Ubuntu 5.04 'Hoary Hedgehog'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.04 'Hoary Hedgehog'" #. Description #: ../data/channels/Ubuntu.info.in:165 @@ -1437,9 +1425,8 @@ msgstr "" #. Description #: ../data/channels/Ubuntu.info.in:177 -#, fuzzy msgid "Ubuntu 5.04 Security Updates" -msgstr "Mesas a jorn per Ubuntu 6.06 LTS" +msgstr "Mesas a jorn de seguretat per Ubuntu 5.04" #. Description #: ../data/channels/Ubuntu.info.in:182 diff --git a/po/pa.po b/po/pa.po index cdedac54..515ff529 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:16+0000\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -154,20 +154,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -176,34 +176,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -293,21 +293,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -316,15 +316,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -333,21 +333,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -356,65 +356,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -424,20 +424,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 #, fuzzy msgid "Upgrading" msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -503,11 +503,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -517,28 +517,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -546,39 +546,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -612,11 +612,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/pl.po b/po/pl.po index 6e99e672..d281aa24 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,14 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: update-manager cvs\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-10 08:44+0000\n" -"Last-Translator: Tomasz Dominikowski \n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-21 12:05+0000\n" +"Last-Translator: Dominik Zablotny \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" @@ -111,7 +112,7 @@ msgstr "Zaimportuj klucz" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" -msgstr "Błąd podczas importu wybranego pliku" +msgstr "Błąd podczas importowania wybranego pliku" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." @@ -157,20 +158,20 @@ msgstr "" "kontynuowaniem należy je naprawić używając Synaptic Menedżer Pakietów lub " "apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Nie można zaktualizować wymaganych meta-pakietów" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Niezbędny pakiet musiałby zostać usunięty" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Nie można przetworzyć aktualizacji" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -183,11 +184,11 @@ msgstr "" "pliki z folderu /var/log/dist-upgrade/ ." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Błąd podczas uwierzytelniania niektórych pakietów" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -197,23 +198,23 @@ msgstr "" "sieci. Można spróbować ponownie później. Poniżej znajduje się lista " "nieuwierzytelnionych pakietów." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Nie można zainstalować \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić to jako błąd. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Nie można odnaleźć żadnego z wymaganych meta-pakietów" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -322,7 +323,7 @@ msgstr "" #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" -msgstr "Źródła stron niezależnych zostały wyłączone" +msgstr "Źródła niezależnych dostawców zostały wyłączone" #: ../DistUpgrade/DistUpgradeControler.py:310 msgid "" @@ -330,15 +331,15 @@ msgid "" "enable them after the upgrade with the 'software-properties' tool or with " "synaptic." msgstr "" -"Niektóre kanały osób trzecich w pliku sources.list zostały wyłączone. Możesz " -"ponownie je włączyć po aktualizacji używając narzędzia \"software-properties" -"\" lub programu Synaptic." +"Niektóre kanały niezależnych dostawców w pliku sources.list zostały " +"wyłączone. Możesz ponownie je włączyć po aktualizacji używając narzędzia " +"\"software-properties\" lub programu Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Błąd podczas aktualizacji" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -346,11 +347,11 @@ msgstr "" "Wystąpił problem podczas aktualizacji. Zazwyczaj wynika on z problemów z " "siecią, proszę sprawdzić połączenie sieciowe i spróbować ponownie." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Zbyt mało miejsca na dysku" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -362,15 +363,15 @@ msgstr "" "\"sudo apt-get clean\"." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Czy chcesz rozpocząć aktualizację?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Instalacja aktualizacji zakończyła się niepowodzeniem." -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -384,11 +385,11 @@ msgstr "" "Prosimy zgłosić błąd pakietu \"update-manager\" dołączając w zgłoszeniu " "pliki z folderu /var/log/dist-upgrade/ ." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Pobranie aktualizacji było niemożliwe" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -396,11 +397,11 @@ msgstr "" "Aktualizacja została przerwana. Proszę sprawdzić połączenie sieciowe oraz " "dysk instalacyjny i spróbować ponownie. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Wsparcie dla niektórych aplikacji zostało zakończone" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -414,23 +415,23 @@ msgstr "" "Jeśli nie włączyłeś repozytoriów utrzymywanych przez społeczność (universe), " "zostanie zasugerowane ich usunięcie w następnym kroku." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Usunąć niepotrzebne pakiety?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Pomiń ten krok" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Usuń" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Błąd podczas zatwierdzania" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -439,27 +440,27 @@ msgstr "" "poniższych wiadomościach. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Przywracanie pierwotnego stanu systemu" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Pobieranie backportu \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Sprawdzanie menedżera pakietów" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Przygotowanie aktualizacji nie powiodło się" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -469,15 +470,15 @@ msgstr "" "jako błąd pakietu \"update-manager\" i dołączyć do raportu pliki z /var/log/" "dist-upgrade ." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Aktualizowanie informacji o repozytoriach" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Błędne informacje o pakietach" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -491,19 +492,19 @@ msgstr "" "To wskazuje na poważny problem, proszę zgłosić błąd pakietu \"update-manager" "\" i dołączyć pliki zawarte w /var/log/dist-upgrade/ w raporcie." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Pytanie o potwierdzenie" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Aktualizacja w toku" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Wyszukiwanie zdezaktualizowanego oprogramowania" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Aktualizacja systemu zakończona powodzeniem." @@ -575,11 +576,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Polecenie \"diff\" nie zostało odnalezione" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Wystąpił błąd krytyczny" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -594,7 +595,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -602,7 +603,7 @@ msgstr[0] "%d pakiet zostanie usunięty." msgstr[1] "%d pakiety zostaną usunięte." msgstr[2] "%d pakietów zostanie usuniętych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -610,7 +611,7 @@ msgstr[0] "%d nowy pakiet zostanie zainstalowany." msgstr[1] "%d nowe pakiety zostaną zainstalowane." msgstr[2] "%d nowych pakietów zostanie zainstalowanych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -618,7 +619,7 @@ msgstr[0] "%d pakiet zostanie zaktualizowany." msgstr[1] "%d pakiety zostaną zaktualizowane." msgstr[2] "%d pakietów zostanie zaktualizowanych." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -629,7 +630,7 @@ msgstr "" "\n" "Musisz pobrać w sumie %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -637,35 +638,35 @@ msgstr "" "Pobieranie i instalacja aktualizacji może potrwać kilka godzin i nie może " "zostać przerwana." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Aby zapobiec utracie danych proszę zamknąć wszystkie otwarte aplikacje i " "dokumenty." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Twój system jest w pełni zaktualizowany" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Brak dostępnych aktualizacji. Aktualizacja zostanie anulowana." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Usuń %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instaluj %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Aktualizuj %s" @@ -701,11 +702,11 @@ msgstr "" "Pobieranie może trwać około %s przy łączu 1 Mbit i około %s przy łączu " "56kbit." -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Wymagane ponowne uruchomienie komputera" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -1174,8 +1175,9 @@ msgid "_Install Updates" msgstr "_Instaluj aktualizacje" #: ../data/glade/UpdateManager.glade.h:25 +#, fuzzy msgid "_Upgrade" -msgstr "" +msgstr "_Uaktualnij" #: ../data/glade/UpdateManager.glade.h:26 msgid "changes" @@ -1380,7 +1382,7 @@ msgstr "Wyświetl i zainstaluj dostępne aktualizacje" #: ../data/update-manager.desktop.in.h:2 msgid "Update Manager" -msgstr "Menedżer aktualizacji" +msgstr "Menadżer aktualizacji" #: ../data/update-manager.schemas.in.h:1 msgid "" @@ -1964,6 +1966,7 @@ msgstr "Oprogramowanie niekompatybilne z DFSG." #~ msgid "Proprietary drivers for devices (restricted) " #~ msgstr "Własnościowe sterowniki dla urządzeń (restricted) " +#, fuzzy #~ msgid "" #~ "Software that is restricted by copyright or legal issues (multiverse)" #~ msgstr "" diff --git a/po/ps.po b/po/ps.po new file mode 100644 index 00000000..ee20c5a6 --- /dev/null +++ b/po/ps.po @@ -0,0 +1,1498 @@ +# Pushto translation for update-manager +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Pushto \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "" + +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "" + +#. TRANSLATORS: %s is a country +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +msgid "Import key" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +msgid "Error importing selected file" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:992 +msgid "Error removing the key" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +msgid "The key you selected could not be removed. Please report this as a bug." +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:238 +msgid "Can't upgrade required meta-packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:242 +msgid "A essential package would have to be removed" +msgstr "" + +#. FIXME: change the text to something more useful +#: ../DistUpgrade/DistUpgradeCache.py:245 +msgid "Could not calculate the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#. FIXME: maybe ask a question here? instead of failing? +#: ../DistUpgrade/DistUpgradeCache.py:280 +msgid "Error authenticating some packages" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:281 +msgid "" +"It was not possible to authenticate some packages. This may be a transient " +"network problem. You may want to try again later. See below for a list of " +"unauthenticated packages." +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:346 +#, python-format +msgid "Can't install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:347 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" + +#. FIXME: provide a list +#: ../DistUpgrade/DistUpgradeCache.py:354 +msgid "Can't guess meta-package" +msgstr "" + +#: ../DistUpgrade/DistUpgradeCache.py:355 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +msgid "Failed to add the CD" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:76 +#, python-format +msgid "" +"There was a error adding the CD, the upgrade will abort. Please report this " +"as a bug if this is a valid Ubuntu CD.\n" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:108 +msgid "Reading cache" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:157 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +msgid "No valid mirror found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:250 +#, python-format +msgid "" +"While scaning your repository information no mirror entry for the upgrade " +"was found.This cam happen if you run a internal mirror or if the mirror " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" + +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 +msgid "Generate default sources?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:268 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "Repository information invalid" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:303 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:309 +msgid "Third party sources disabled" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:310 +msgid "" +"Some third party entries in your sources.list were disabled. You can re-" +"enable them after the upgrade with the 'software-properties' tool or with " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:364 +msgid "Error during update" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:365 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:374 +msgid "Not enough free disk space" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:375 +#, python-format +msgid "" +"The upgrade aborts now. Please free at least %s of disk space on %s. Empty " +"your trash and remove temporary packages of former installations using 'sudo " +"apt-get clean'." +msgstr "" + +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:447 +msgid "Do you want to start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:468 +msgid "Could not install the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:469 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:487 +msgid "Could not download the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:488 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:524 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:525 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:560 +msgid "Remove obsolete packages?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:561 +msgid "_Skip This Step" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:561 +msgid "_Remove" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:572 +msgid "Error during commit" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:573 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" + +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:585 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:641 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 +msgid "Checking package manager" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:681 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:682 +msgid "" +"Preparing the system for the upgrade failed. Please report this as a bug " +"against the 'update-manager' package and include the files in /var/log/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:705 +msgid "Updating repository information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:730 +msgid "Invalid package information" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:731 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:743 +msgid "Asking for confirmation" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:747 +msgid "Upgrading" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:754 +msgid "Searching for obsolete software" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:759 +msgid "System upgrade is complete." +msgstr "" + +#. print "mediaChange %s %s" % (medium, drive) +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, python-format +msgid "About %s remaining" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +msgid "" +"The upgrade aborts now. Please report this bug against the 'update-manager' " +"package and include the files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#. self.expander.set_expanded(True) +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 +msgid "The 'diff' command was not found" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 +msgid "A fatal error occured" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 +msgid "" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 +msgid "To prevent data loss close all open applications and documents." +msgstr "" + +#. FIXME: this should go into DistUpgradeController +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../UpdateManager/UpdateManager.py:622 +msgid "Your system is up-to-date" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 +#, python-format +msgid "Remove %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 +#, python-format +msgid "Install %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 +#, python-format +msgid "Upgrade %s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "" + +#. 56 kbit +#. 1Mbit = 1024 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:111 +msgid "Reboot required" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:112 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#. app.openCache() +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 +msgid "_Replace" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "" + +#. no script file found in extracted tarbal +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "" + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#. Description +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#. Description +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#. TRANSLATORS: updates from an 'unknown' origin +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:478 +#, python-format +msgid "Version %s: \n" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:539 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:566 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:572 +msgid "_Check All" +msgstr "" + +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 +#, python-format +msgid "Download size: %s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:633 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "" + +#: ../UpdateManager/UpdateManager.py:666 +msgid "Please wait, this can take some time." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:668 +msgid "Update is complete" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:719 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:826 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:830 +#, python-format +msgid "Version %s" +msgstr "" + +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:843 +msgid "Your distribution is not supported anymore" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:844 +msgid "" +"You will not get any further security fixes or critical updates. Upgrade to " +"a later version of Ubuntu Linux. See http://www.ubuntu.com for more " +"information on upgrading." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:863 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "" + +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:902 +msgid "Software index is broken" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:903 +msgid "" +"It is impossible to install or remove any software. Please use the package " +"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " +"this issue at first." +msgstr "" + +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"To improve the user experience of Ubuntu please take part in the " +"popularity contest. If you do so the list of installed software and how " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "" +"If automatic checking for updates is disabled, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#. ChangelogURI +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#. ChangelogURI +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" + +#. Description +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "" + +#. BaseURI +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "" + +#. Description +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "" + +#. BaseURI +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "" + +#. Description +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "" + +#. CompDescription +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "" + +#. CompDescription +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "" diff --git a/po/pt.po b/po/pt.po index 55ff5562..4ea5cbbf 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 11:04+0000\n" "Last-Translator: Tiago Silva \n" "Language-Team: Ubuntu Portuguese Team \n" @@ -159,20 +159,20 @@ msgstr "" "este software. Por favor corrija-os usando o synaptic ou apt-get antes de " "continuar." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Não foi possível actualizar os meta-pacotes necessários" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Impossível de calcular a actualização" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -185,11 +185,11 @@ msgstr "" "contidos em /var/log/dist-upgrade/ no seu relatório de erro." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Erro ao autenticar alguns pacotes" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -199,12 +199,12 @@ msgstr "" "rede transitório. Pode tentar novamente mais tarde. Verifique abaixo uma " "lista de pacotes não autenticados." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Impossível de instalar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -212,11 +212,11 @@ msgstr "" "Foi impossível instalar um pacote essencial. Por favor reporte este erro. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Impossível de descobrir meta-pacote" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -338,11 +338,11 @@ msgstr "" "reactivá-las depois da actualização com a ferramenta 'propriedades-software' " "ou com o synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Erro durante a actualização" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -351,11 +351,11 @@ msgstr "" "tipo de problema na rede, por favor verifique a sua ligação à rede e volte a " "tentar." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Não existe espaço livre em disco suficiente" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -367,15 +367,15 @@ msgstr "" "usando 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Deseja iniciar a actualização?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Impossível de instalar as actualizações" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -389,11 +389,11 @@ msgstr "" "Por favor relate este erro sobre o pacote 'update-manager' e inclua os " "ficheiros contidos em /var/log/dist-upgrade/ no relatório de erro." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Impossível de descarregar as actualizações" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -401,11 +401,11 @@ msgstr "" "A actualização abortará agora. Por favor verifique a sua ligação à internet " "ou media de instalação e volte a tentar. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "O suporte para algumas aplicações já terminou." -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -419,23 +419,23 @@ msgstr "" "Caso não tenha activado o software mantido pela comunidade (universe), irá " "ser sugerida a remoção destes pacotes no próximo passo." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Remover Pacotes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Saltar Este Passo" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Remover" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Erro ao submeter" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -444,27 +444,27 @@ msgstr "" "abaixo para mais informação. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "A restaurar o estado original do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "A obter backport de '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "A verificar gestor de pacotes" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "A preparação da actualização falhou" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -474,15 +474,15 @@ msgstr "" "reporte este erro no pacote 'update-manager' e inclua os ficheiros contidos " "em /var/log/dist-upgrade/ no relatório de erro." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "A Actualizar informação de repositórios" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Informação de pacotes inválida" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -497,19 +497,19 @@ msgstr "" "'update-manager' e inclua os ficheiros contidos em /var/log/dist-upgrade/ no " "relatório de erro." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "A pedir confirmação" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "A actualizar" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "À procura de software obsoleto" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "A actualização do sistema está completa." @@ -582,11 +582,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "O comando 'diff' não foi encontrado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Ocorreu um erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -601,28 +601,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "o pacote %d será removido." msgstr[1] "os pacotes %d serão removidos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d novo pacote será instalado." msgstr[1] "%d novos pacotes serão instalados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pacote será actualizado." msgstr[1] "%d pacotes serão actualizados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -633,7 +633,7 @@ msgstr "" "\n" "Tem que descarregar um de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -641,19 +641,19 @@ msgstr "" "A obtenção e instalação da actualização poderá demorar várias horas e não " "poderá ser cancelada a qualquer instante posteriormente." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Para prevenir a perda de dados feche todas as aplicações e documentos " "abertos." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "O seu sistema está actualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -661,17 +661,17 @@ msgstr "" "Não há actualizações disponíveis para o seu sistema. A actualização será " "agora cancelada." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Remover %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" @@ -707,11 +707,11 @@ msgstr "" "Esta transferência levará aprox. %s com uma ligação DSL de 1Mbit e aprox. %s " "com um modem 56k" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Necessário reiniciar" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index c56c5abc..6458ae12 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -5,9 +5,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:02+0000\n" -"Last-Translator: Andre Noel \n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-21 01:31+0000\n" +"Last-Translator: Rafael Proença \n" "Language-Team: Ubuntu-BR \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,7 +18,7 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:136 msgid "Daily" -msgstr "Diariamente" +msgstr "Diário" #: ../SoftwareProperties/SoftwareProperties.py:137 msgid "Every two days" @@ -107,11 +107,11 @@ msgstr "Código Fonte" #: ../SoftwareProperties/SoftwareProperties.py:969 msgid "Import key" -msgstr "Importar chave" +msgstr "Importar Chave" #: ../SoftwareProperties/SoftwareProperties.py:979 msgid "Error importing selected file" -msgstr "Erro importando o arquivo selecionado" +msgstr "Erro ao importar o arquivo selecionado" #: ../SoftwareProperties/SoftwareProperties.py:980 msgid "The selected file may not be a GPG key file or it might be corrupt." @@ -121,12 +121,12 @@ msgstr "" #: ../SoftwareProperties/SoftwareProperties.py:992 msgid "Error removing the key" -msgstr "Erro removendo a chave" +msgstr "Erro ao remover a chave" #: ../SoftwareProperties/SoftwareProperties.py:993 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -"A chave selecionada não pode ser removida. Por favor reporte isto como um " +"A chave selecionada não pôde ser removida. Por favor reporte isto como um " "bug." #: ../SoftwareProperties/SoftwareProperties.py:1039 @@ -157,24 +157,24 @@ msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -"O seu sistema possui pacotes quebrados que não puderam ser corrigidos com " -"este programa. Por favor, corrija-os primeiro utilizando o Synaptic ou apt-" -"get antes de continuar." +"O seu sistema possui pacotes quebrados que não puderam ser fixados com este " +"programa. Por favor, arrume-os primeiro usando o Synaptic ou apt-get antes " +"de continuar." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Não foi possível atualizar os meta-pacotes requeridos" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Um pacote essencial teria que ser removido" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" -msgstr "Não foi possível processar a atualização" +msgstr "Não foi possível calcular a atualização" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -188,39 +188,39 @@ msgstr "" "contidos em /var/log/dist-upgrade/ no relatório de erros." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Erro autenticando alguns pacotes" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Não foi possível autenticar alguns pacotes. Isso pode ser devido a um " -"problema momentâneo na rede. Você pode tentar de novo depois. Veja abaixo " -"uma lista dos pacotes não-autenticados." +"problema na rede. Você pode tentar novamente mais tarde. Veja abaixo uma " +"lista dos pacotes não-autenticados." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Não foi possível instalar '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" -"Não foi possível instalar um pacote requerido. Por favor relate isto como um " -"erro. " +"Não foi possível instalar um pacote requerido. Por favor reporte isto como " +"um erro. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" -msgstr "Não foi possível determinar o meta-pacote" +msgstr "Não foi possível adivinhar o meta-pacote" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -232,7 +232,7 @@ msgstr "" "edubuntu-desktop e não foi possível detectar qual a versão do Ubuntu você " "esta rodando.\n" " Por favor, instale um dos pacotes acima usando o synaptic ou apt-get antes " -"de seguir adiante." +"de continuar." #: ../DistUpgrade/DistUpgradeControler.py:75 msgid "Failed to add the CD" @@ -288,7 +288,7 @@ msgid "" "here it will update all '%s' to '%s' entries.\n" "If you select 'no' the update will cancel." msgstr "" -"Durante a busca de informações em seus repositórios nenhuma entrada para " +"Enquanto buscava informações em seus repositórios nenhuma entrada para " "atualizações foi encontrada. Isso pode acontecer se você está executando um " "repositório interno ou se a informação do repositório está desatualizada.\n" "\n" @@ -299,7 +299,7 @@ msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" -msgstr "Gerar fontes padrão?" +msgstr "Gerar sources padrão?" #: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format @@ -312,7 +312,7 @@ msgstr "" "Depois de checar seu 'sources.list' nenhuma entrada válida para '%s' foi " "encontrada.\n" "\n" -"Entradas padrão para '%s' devem ser adicionadas? Se você escolher 'Não' a " +"Entradas padrões para '%s' devem ser adicionadas? Se você escolher 'Não' a " "atualização será cancelada." #: ../DistUpgrade/DistUpgradeControler.py:302 @@ -324,15 +324,14 @@ msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"A atualização das informações de repositórios resultou em um arquivo " -"inválido. Por favor relate isso como um erro." +"Atualizando a informações de repositórios resultou em um arquivo inválido. " +"Por favor reporte isso como um erro." #: ../DistUpgrade/DistUpgradeControler.py:309 msgid "Third party sources disabled" msgstr "Fontes de terceiros desabilitadas" #: ../DistUpgrade/DistUpgradeControler.py:310 -#, fuzzy msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " @@ -342,11 +341,11 @@ msgstr "" "pode reabilitá-las após a atualização com a ferramenta 'software-properties' " "ou com o synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Erro durante a atualização" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -355,31 +354,31 @@ msgstr "" "problemas de rede, por favor verifique a sua conexão de rede e tente " "novamente." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Não há espaço suficiente no disco" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"A atualização será abortada agora. Por favor libere pelo menos %s de espaço " -"de disco no %s. Esvazie sua lixeira e remova pacotes temporários de " +"A atualização cancela agora. Por favor libere pelo menos %s de espaço de " +"disco no %s. Esvazie seu lixo e remova temporariamente pacotes de " "instalações anteriores usando 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Você quer iniciar a atualização?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Não foi possível instalar as atualizações" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -393,11 +392,11 @@ msgstr "" "Por favor, informe este erro no pacote 'update-manager' e inclua os arquivos " "contidos em /var/log/dist-upgrade/ no relatório de erros." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Não foi possível obter as atualizações" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -405,11 +404,11 @@ msgstr "" "A atualização será abortada agora. Por favor verifique sua conexão à " "Internet ou mídia de instalação e tente de novo. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "O suporte para algumas aplicações foi descontinuado" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -423,52 +422,52 @@ msgstr "" "Se você não tiver habilitado os softwares mantidos pela comunidade " "(universe), esses pacotes serão sugeridos para remoção no próximo passo." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" -msgstr "Remover pacotes obsoletos?" +msgstr "Remover Pacotes obsoletos?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Pular Este Passo" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Remover" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Erro ao aplicar as mudanças" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -"Alguns problemas ocorreram durante a limpeza. Por favor veja a mensagem " +"Alguns problemas ocorreram durante a limpeza. Por favor veja as mensagens " "abaixo para maiores informações. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Restaurando o estado original do sistema" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" -msgstr "" +msgstr "Baixando atualização de '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" -msgstr "Verificando o gerenciador de pacotes" +msgstr "Verificando o Gerenciador de Pacotes" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Preparação para a atualização falhou" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -478,15 +477,15 @@ msgstr "" "um bug do pacote 'update-manager' e inclua os arquivos no /var/log/dist-" "upgrade/ no relatório do bug." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Atualizando informação do repositório" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Informação do pacote inválida" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -501,21 +500,21 @@ msgstr "" "do 'update-manager' e inclua os arquivos contidos em /var/log/dist-upgrade/ " "no relatório de erros." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" -msgstr "Pedindo confirmação" +msgstr "Pedindi por confirmação" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Atualizando" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Buscando programas obsoletos" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." -msgstr "A atualização do sistema está completa." +msgstr "A Atualização do Sistema está completa." #. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 @@ -524,9 +523,8 @@ msgid "Please insert '%s' into the drive '%s'" msgstr "Por favor insira '%s' no drive '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 -#, fuzzy msgid "Fetching is complete" -msgstr "A extração foi completada" +msgstr "A extração foi finalizada" #: ../DistUpgrade/DistUpgradeViewGtk.py:129 #, python-format @@ -549,7 +547,7 @@ msgstr "Obtendo arquivo %li de %li" #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" -msgstr "Aplicando mudanças" +msgstr "..." #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format @@ -587,11 +585,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "O comando 'diff' não foi encontrado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Ocorreu um erro fatal" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -605,28 +603,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pacote será removido." msgstr[1] "%d pacotes serão removidos." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d novo pacote será instalado." msgstr[1] "%d novos pacotes serão instalados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pacote será atualizado." msgstr[1] "%d pacotes serão atualizados." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -637,7 +635,7 @@ msgstr "" "\n" "Você tem que baixar um total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -645,17 +643,17 @@ msgstr "" "A obtenção e instalação da atualização pode levar muitas horas e não poderá " "ser cancelada depois." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "Para evitar perda de dados, feche todas as aplicações e documentos." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Seu sistema está atualizado" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -663,17 +661,17 @@ msgstr "" "Não há atualizações disponíveis para o seu sistema. A atualização será " "cancelada agora." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Remover %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instalar %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Atualizar %s" @@ -709,11 +707,11 @@ msgstr "" "Esse download irá durar %s com uma conexão ADSL de 1Mbps e %s com um modem " "56k" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Reinicialização requerida" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -747,7 +745,7 @@ msgstr "Reinicie o seu sistema para finalizar a atualização" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "Iniciar a atualização?" +msgstr "Iniciar a Atualização?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" @@ -775,7 +773,7 @@ msgstr "Modificando os canais de software" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" -msgstr "Preparando a atualização" +msgstr "Preparando a Atualização" #: ../DistUpgrade/DistUpgrade.glade.h:14 msgid "Restarting the system" @@ -800,11 +798,11 @@ msgstr "_Manter" #: ../DistUpgrade/DistUpgrade.glade.h:19 #: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" -msgstr "_Substituir" +msgstr "_Subtituir" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "Relatar _Erro" +msgstr "Reportar _Erro" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" @@ -852,7 +850,7 @@ msgstr "Obtendo a ferramenta de atualização" #: ../UpdateManager/DistUpgradeFetcher.py:173 msgid "The upgrade tool will guide you through the upgrade process." -msgstr "A ferramenta de atualização irá guiá-lo durante o processo." +msgstr "A ferramenta de atualização irá guia-lo pelo processo." #: ../UpdateManager/DistUpgradeFetcher.py:180 msgid "Upgrade tool signature" @@ -997,11 +995,11 @@ msgstr[1] "Você pode instalar %s atualizações" #: ../UpdateManager/UpdateManager.py:666 msgid "Please wait, this can take some time." -msgstr "Aguarde por favor, isso pode levar algum tempo." +msgstr "Por favor, espere, isto pode levar algum tempo." #: ../UpdateManager/UpdateManager.py:668 msgid "Update is complete" -msgstr "A atualização está completa" +msgstr "Atualização completa" #: ../UpdateManager/UpdateManager.py:719 msgid "Checking for updates" @@ -1035,17 +1033,17 @@ msgid "" msgstr "" "Você não terá mais como instalar atualizações críticas ou correções para " "falhas de segurança. Atualize para uma versão mais nova do Ubuntu Linux. " -"Veja http://www.ubuntu-br.org para mais informações." +"Veja http://www.ubuntu-br.org" #: ../UpdateManager/UpdateManager.py:863 #, python-format msgid "New distribution release '%s' is available" -msgstr "Uma nova versão da distribuição '%s' está disponível" +msgstr "Nova versão da distribuição '%s' está disponível" #. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" -msgstr "O index do software está quebrado" +msgstr "A índex de software está quebrado" #: ../UpdateManager/UpdateManager.py:903 msgid "" @@ -1094,7 +1092,7 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" -msgstr "Manter o sistema atualizado" +msgstr "Manter o Sistema Atualizado" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" @@ -1106,7 +1104,7 @@ msgstr "Iniciando o gerenciador de atualizações" #: ../data/glade/UpdateManager.glade.h:7 msgid "Changes" -msgstr "Mudanças" +msgstr "Modificações" #: ../data/glade/UpdateManager.glade.h:8 msgid "Changes and description of the update" @@ -1147,18 +1145,17 @@ msgstr "Exibir progresso de arquivos únicos" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" -msgstr "Atualizações de Software" +msgstr "Atualizações de software" #: ../data/glade/UpdateManager.glade.h:18 msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -"Atualizações de programas podem corrigir erros, eliminar vulnerabilidades de " -"segurança e prover novas funcionalidades." +"Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades de " +"segurança, e prover novas funcionalidades para você." #: ../data/glade/UpdateManager.glade.h:19 -#, fuzzy msgid "U_pgrade" msgstr "At_ualizar" @@ -1183,7 +1180,6 @@ msgid "_Install Updates" msgstr "_Instalar Atualizações" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "_Upgrade" msgstr "At_ualizar" @@ -1259,7 +1255,7 @@ msgid "" "automatically" msgstr "" "Somente atualizações de segurança do servidor oficial do Ubuntu serão " -"instaladas automaticamente" +"instaladas automaticamente." #: ../data/glade/SoftwareProperties.glade.h:16 msgid "Restore _Defaults" @@ -1326,7 +1322,7 @@ msgstr "" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 msgid "Comment:" -msgstr "Comentário:" +msgstr "Comentário" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 msgid "Components:" @@ -1426,7 +1422,7 @@ msgstr "Exibir detalhes de uma atualização" #: ../data/update-manager.schemas.in.h:6 msgid "Stores the size of the update-manager dialog" -msgstr "Armazena o tamanho da caixa de diálogo do gerenciador de atualizações" +msgstr "Armazena o tamanho do diálogo do update-manager" #: ../data/update-manager.schemas.in.h:7 msgid "" @@ -1537,7 +1533,7 @@ msgstr "Cdrom com o Ubuntu 5.10 'Breezy Badger'" #. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" -msgstr "Atualizações de Segurança do Ubuntu 5.10" +msgstr "Atualizações de segurança do Ubuntu 5.10" #. Description #: ../data/channels/Ubuntu.info.in:140 @@ -1562,12 +1558,12 @@ msgstr "Cdrom com o Ubuntu 5.04 'Hoary Hedgehog'" #. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" -msgstr "Suportado oficialmente" +msgstr "Suportadas oficialmente" #. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" -msgstr "Atualizações de Segurança do Ubuntu 5.04" +msgstr "Atualizações de segurança do Ubuntu 5.04" #. Description #: ../data/channels/Ubuntu.info.in:182 @@ -1587,12 +1583,12 @@ msgstr "Ubuntu 4.10 'Warty Warthog'" #. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" -msgstr "Mantido pela Comunidade (Universe)" +msgstr "Mantido pela comunidade (Universo)" #. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" -msgstr "Não-livres (Multiverse)" +msgstr "Não-livres (Multiverso)" #. Description #: ../data/channels/Ubuntu.info.in:206 @@ -1612,7 +1608,7 @@ msgstr "Copyright restrito" #. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" -msgstr "Atualizações de Segurança do Ubuntu 4.10" +msgstr "Atualizações de segurança do Ubuntu 4.10" #. Description #: ../data/channels/Ubuntu.info.in:223 @@ -1648,7 +1644,7 @@ msgstr "Atualizações de Segurança do Debian 3.1 \"Sarge\"" #. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" -msgstr "Debian \"Etch\" (testando)" +msgstr "Debian \"Etch\" (testing)" #. BaseURI #: ../data/channels/Debian.info.in:47 @@ -1658,12 +1654,12 @@ msgstr "http://http.us.debian.org/debian/" #. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" -msgstr "Debian \"Sid\" (instável)" +msgstr "Debian \"Sid\" (unstable)" #. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" -msgstr "Programa compatível com a DFSG mas com Dependências Não-Livres" +msgstr "Programa compatível com a DFSG mas com dependências não-livres" #. CompDescription #: ../data/channels/Debian.info.in:57 @@ -1675,7 +1671,7 @@ msgstr "Programas não compatíveis com a DFSG" #~ "\n" #~ "%s" #~ msgstr "" -#~ "Erro durante a análise do CD\n" +#~ "Erro analisando o CD\n" #~ "\n" #~ "%s" @@ -1772,8 +1768,8 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Verfing the upgrade failed. There may be a problem with the network or " #~ "with the server. " #~ msgstr "" -#~ "Falha na verificação da atualização. Pode haver um problema com a rede ou " -#~ "com o servidor. " +#~ "Falha na verificação da atualização. Pode ter havido um problema com a " +#~ "rede ou com o servidor. " #~ msgid "Downloading file %li of %li with %s/s" #~ msgstr "Obtendo arquivo %li de %li a %s/s" @@ -1812,7 +1808,7 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Não foi possível instalar todas as atualizações disponíveis" #~ msgid "Downloading the list of changes..." -#~ msgstr "Obtendo a lista de alterações..." +#~ msgstr "Obtendo a lista de alterações" #~ msgid "Select _None" #~ msgstr "Selecionar _Nenhum" @@ -1830,7 +1826,7 @@ msgstr "Programas não compatíveis com a DFSG" #~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" #~ "\"." #~ msgstr "" -#~ "Você deve verificar por atualizações manualmente\n" +#~ "Você deve verificar as atualizações manualmente\n" #~ "\n" #~ "O seu sistema não procura por atualizações automaticamente. Você pode " #~ "configurar essa opção em \"Sistema\" -> \"Administração\" -> " @@ -2006,7 +2002,7 @@ msgstr "Programas não compatíveis com a DFSG" #~ "entrada válida para a atualização.\n" #~ msgid "Repositories changed" -#~ msgstr "Repositories changed" +#~ msgstr "Repositórios alterados" #~ msgid "" #~ "You need to reload the package list from the servers for your changes to " @@ -2022,7 +2018,7 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Procurar updates disponíveis" #~ msgid "Sections:" -#~ msgstr "Sections:" +#~ msgstr "Seções:" #~ msgid "Reload the latest information about updates" #~ msgstr "Recarregar as últimas informações sobre atualizações" @@ -2042,9 +2038,9 @@ msgstr "Programas não compatíveis com a DFSG" #~ "\n" #~ "Need to get the changes from the central server" #~ msgstr "" -#~ "Obtendo Mudanças\n" +#~ "Baixando modificações\n" #~ "\n" -#~ "É necessário obter as mudanças do servidor central" +#~ "É necessário obter as modificações do servidor central" #~ msgid "Show available updates and choose which to install" #~ msgstr "Exibir atualizações disponíveis e escolher quais instalar" @@ -2111,10 +2107,10 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Cancel downloading the ChangeLog" #~ msgid "Choose a key-file" -#~ msgstr "Choose a key-file" +#~ msgstr "Escolha um arquivo-chave" #~ msgid "Packages to install:" -#~ msgstr "Packages to install:" +#~ msgstr "Pacotes a instalar:" #~ msgid "" #~ "Available Updates\n" @@ -2122,19 +2118,19 @@ msgstr "Programas não compatíveis com a DFSG" #~ "The following packages are found to be upgradable. You can upgrade them " #~ "by using the Install button." #~ msgstr "" -#~ "Available Updates\n" +#~ "Atualizações disponíveis\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "Os seguintes pacotes podem ser atualizados. Você pode atualizá-los " +#~ "clicando no botão Instalar." #~ msgid "Repository" -#~ msgstr "Repository" +#~ msgstr "Repositório" #~ msgid "Temporary files" -#~ msgstr "Temporary files" +#~ msgstr "Arquivos temporários" #~ msgid "User Interface" -#~ msgstr "User Interface" +#~ msgstr "Interface de usuário" #, fuzzy #~ msgid "" @@ -2143,75 +2139,77 @@ msgstr "Programas não compatíveis com a DFSG" #~ "You can add and remove authentication keys in this dialog. A key makes it " #~ "possible to verify the integrity of the software you download." #~ msgstr "" -#~ "Authentication keys\n" +#~ "Chaves de autenticação\n" #~ "\n" -#~ "You can add and remove authentication keys in this dialogue. A key makes " -#~ "it possible to check verify the integrity of the software you download." +#~ "Você pode adicionar e remover chaves de autenticação neste diálogo. Uma " +#~ "chave torna possível verificar a integridade do software que você baixar." #~ msgid "A_uthentication" -#~ msgstr "A_uthentication" +#~ msgstr "A_utenticação" #, fuzzy #~ msgid "" #~ "Add a new key file to the trusted keyring. Make sure that you received " #~ "the key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Add a new key file to the trusted keyring. Make sure that you got the key " -#~ "over a secure channel and that you trust the owner. " +#~ "Adicionar uma nova chave ao chaveiro de confiança. Assegure-se de que " +#~ "você obteve a chave através de um canal seguro e que você confia no " +#~ "proprietário. " #~ msgid "Automatically clean _temporary packages files" -#~ msgstr "Automatically clean _temporary packages files" +#~ msgstr "Limpar automaticamente arquivos _temporários de pacotes" #~ msgid "Clean interval in days: " -#~ msgstr "Clean interval in days: " +#~ msgstr "Intervalo de limpeza, em dias: " #~ msgid "Delete _old packages in the package cache" -#~ msgstr "Delete _old packages in the package cache" +#~ msgstr "Excluir pacotes _antigos do cache de pacotes" #~ msgid "Edit Repository..." -#~ msgstr "Edit Repository..." +#~ msgstr "Editar repositório..." #~ msgid "Maximum age in days:" -#~ msgstr "Maximum age in days:" +#~ msgstr "Idade máxima em dias:" #~ msgid "Maximum size in MB:" -#~ msgstr "Maximum size in MB:" +#~ msgstr "Tamanho máximo em MB:" #, fuzzy #~ msgid "" #~ "Restore the default keys shipped with the distribution. This will not " #~ "change user installed keys." #~ msgstr "" -#~ "Restore the default keys shiped with the distribution. This will not " -#~ "change user-installed keys." +#~ "Restaura as chaves padrão fornecidas com a distribuição. Isso não irá " +#~ "alterar as chaves instaladas pelo usuário." #~ msgid "Set _maximum size for the package cache" -#~ msgstr "Set _maximum size for the package cache" +#~ msgstr "Definir o tamanho _máximo para o cache de pacotes" #~ msgid "Settings" -#~ msgstr "Settings" +#~ msgstr "Configurações" #~ msgid "Show disabled software sources" -#~ msgstr "Show disabled software sources" +#~ msgstr "Exibir fontes de software desabilitadas" #~ msgid "Update interval in days: " -#~ msgstr "Update interval in days: " +#~ msgstr "Intervalo de atualização em dias: " #~ msgid "_Add Repository" -#~ msgstr "_Add Repository" +#~ msgstr "_Adicionar repositório" #~ msgid "_Download upgradable packages" -#~ msgstr "_Download upgradable packages" +#~ msgstr "_Baixar pacotes atualizáveis" #~ msgid "" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "This means that some dependencies of the installed packages are not " -#~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." +#~ "Isso quer dizer que algumas dependências dos pacotes instalados não foram " +#~ "satisfeitas. Por favor use \"Synaptic\" ou \"apt-get\" para resolver a " +#~ "situação." #~ msgid "It is not possible to upgrade all packages." -#~ msgstr "It is not possible to upgrade all packages." +#~ msgstr "Não é possível atualizar todos os pacotes." #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " @@ -2219,65 +2217,69 @@ msgstr "Programas não compatíveis com a DFSG" #~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " #~ "situation." #~ msgstr "" -#~ "This means that besides the actual upgrade of the packages some further " -#~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Isso quer dizer que além da atualização dos pacotes, uma ação a mais será " +#~ "necessária (tais como instalar ou remover pacotes). Por favor use o " +#~ "Synaptic \"Smart Upgrade\" ou \"apt-get dist-upgrade\" para arrumar a " +#~ "situação." #~ msgid "Changes not found, the server may not be updated yet." -#~ msgstr "Changes not found, the server may not be updated yet." +#~ msgstr "" +#~ "Modificações não encontradas, o servidor pode não ter sido atualizado " +#~ "ainda." #~ msgid "The updates are being applied." -#~ msgstr "The updates are being applied." +#~ msgstr "As atualizações estão sendo aplicadas." #~ msgid "" #~ "You can run only one package management application at the same time. " #~ "Please close this other application first." #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "Você pode executar apenas uma aplicação gerenciadora de pacotes ao mesmo " +#~ "tempo. Por favor feche a outra aplicação primeiro." #~ msgid "Updating package list..." -#~ msgstr "Updating package list..." +#~ msgstr "Atualizando lista de pacotes..." #~ msgid "There are no updates available." -#~ msgstr "There are no updates available." +#~ msgstr "Não existem atualizações disponíveis." #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " #~ "running will no longer get security fixes or other critical updates. " #~ "Please see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "Por favor atualize para uma nova versão do Ubuntu Linux. A versão que " +#~ "você está utilizando não recebe mais atualizações de segurança ou outras " +#~ "atualizações críticas. Por favor veja http://www.ubuntulinux.org para " +#~ "informações sobre a atualização." #~ msgid "There is a new release of Ubuntu available!" -#~ msgstr "There is a new release of Ubuntu available!" +#~ msgstr "Existe uma nova versão do Ubuntu disponível!" #~ msgid "" #~ "A new release with the codename '%s' is available. Please see http://www." #~ "ubuntulinux.org/ for upgrade instructions." #~ msgstr "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "Uma nova versão nomeada '%s' está disponível. Por favor veja http://www." +#~ "ubuntulinux.org para instruções de atualização." #~ msgid "Never show this message again" -#~ msgstr "Never show this message again" +#~ msgstr "Nunca exibir esta mensagem novamente" #, fuzzy #~ msgid "" #~ "This usually means that another package management application (like apt-" #~ "get or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "Isso geralmente quer dizer que outra aplicação de gerenciamento de " +#~ "pacotes (como apt-get ou aptitude) está em execução. Por favor feche essa " +#~ "aplicação primeiro" #~ msgid "Initializing and getting list of updates..." -#~ msgstr "Initializing and getting list of updates..." +#~ msgstr "Inicializando e obtendo lista de atualizações..." #~ msgid "You need to be root to run this program" -#~ msgstr "You need to be root to run this program" +#~ msgstr "Você precisa ser root para executar este programa." #~ msgid "Edit software sources and settings" #~ msgstr "Edit software sources and settings" @@ -2286,19 +2288,21 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgstr "Ubuntu Update Manager" #~ msgid "Binary" -#~ msgstr "Binary" +#~ msgstr "Binário" #~ msgid "CD" #~ msgstr "CD" #~ msgid "Non-free software" -#~ msgstr "Non-free software" +#~ msgstr "Softwares não-livres" #~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "Ubuntu Archive Automatic Signing Key " +#~ msgstr "Chave de assinatura automática do Ubuntu " #~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "" +#~ "Chave de assinatura automática da imagem de CD do Ubuntu " #, fuzzy #~ msgid "" diff --git a/po/qu.po b/po/qu.po index a3b18c03..db05e8b5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Rosetta Administrators \n" "Language-Team: Quechua \n" @@ -152,20 +152,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -291,21 +291,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,65 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,19 +422,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -500,11 +500,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -514,28 +514,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -543,39 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -609,11 +609,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/ro.po b/po/ro.po index f679abc5..3a547f7f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:13+0000\n" "Last-Translator: Sami POTIRCA \n" "Language-Team: Romanian \n" @@ -161,20 +161,20 @@ msgstr "" "reparate cu acest program. Înainte de a continua vă rugăm să le remediaţi " "utilizând synaptic sau apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Este imposibilă actualizarea meta-pachetelor cerute" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Un pachet esenţial ar trebui şters" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Imposibil de calculat actualizarea" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -183,12 +183,12 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 #, fuzzy msgid "Error authenticating some packages" msgstr "Eroare la autentificarea unor pachete." -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -198,12 +198,12 @@ msgstr "" "unor probleme temporare pe reţea. Vă recomandăm să reveniţi mai târziu. " "Dedesubt sunt afişate lista pachetelor neidentificate." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Nu pot instala '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -212,11 +212,11 @@ msgstr "" "bug (eroare). " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Imposibl de ghicit meta-pachet" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -332,11 +332,11 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Eroare în timpul actualizării" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -344,11 +344,11 @@ msgstr "" "A apărut o problemă în timpul actualizării. De obicei este legată de reţea, " "vă rugăm să verificaţi conexiunea dumneavoastra şi să încercaţi din nou." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Spaţiu liber insuficient" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -360,15 +360,15 @@ msgstr "" "instalările vechi folosind 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Vrei sa începi upgrade-ul?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Nu s-au putut instalat upgrade-urile" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -382,11 +382,11 @@ msgstr "" "Vă rugăm raportaţi această eroare la pachetul 'update-manager' şi includeţi " "fişierele din /var/log/dist-upgrade/ în raport." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Nu pot descărca actualizările" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -394,11 +394,11 @@ msgstr "" "Actualizarea se opreşte acum. Vă rugăm să verificaţi conexiunea la Internet " "sau sursa de instalare şi să încercaţi din nou. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -407,23 +407,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Şterg pachetele vechi?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Sari peste acest pas" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "Şter_ge" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Eroare în timpul salvării" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -432,44 +432,44 @@ msgstr "" "de mai jos pentru informaţii suplimentare. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 #, fuzzy msgid "Restoring original system state" msgstr "Se reface starea iniţială a sistemului" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Se verifică managerul de pachete" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Se pregăteşte actualizarea" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Actualizez informaţii depozit" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Informaţii pachet nevalide" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -483,19 +483,19 @@ msgstr "" "Aceasta indică o eroare serioasă, vă rugăm raportaţi o eroare la pachetul " "'update-manager' şi includeţi fişierele din /var/log/dist-upgrade/ în raport." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Se aşteaptă confirmarea" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Se actualizează" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Caut software învechit" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Actualizarea sistemului este completă" @@ -563,11 +563,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Comanda 'diff' nu a putut fi localizată" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "S-a produs o eroare fatală" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -582,7 +582,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -590,7 +590,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -598,7 +598,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -606,7 +606,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -617,7 +617,7 @@ msgstr "" "\n" "Trebuie să descărcaţi un total de %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -625,35 +625,35 @@ msgstr "" "Descărcarea şi intalarea actualizărilor poate dura câteva ore şi nu poate fi " "abandonată mai târziu." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pentru a preveni pierderea datelor închideţi toate aplicaţiile şi " "documentele." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sistemul dumneavoastră este actualizat la zi!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Şterge %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Instalează %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Actualizează %s" @@ -687,11 +687,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Este necesară repornirea" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/ru.po b/po/ru.po index b419d671..f732cab3 100644 --- a/po/ru.po +++ b/po/ru.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:16+0000\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-18 09:11+0000\n" "Last-Translator: Igor Zubarev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" @@ -160,20 +160,20 @@ msgstr "" "данной программой. Пожалуйста, исправьте их, используя synaptic или apt-get, " "прежде чем продолжить." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Невозможно обновить требуемые мета-пакеты" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Будет удален необходимый пакет" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Невозможно подготовить обновление системы" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -186,11 +186,11 @@ msgstr "" "файлы в /var/log/dist-upgrade/ к отчету." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Ошибка при проверке подлинности некоторых пакетов" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -200,12 +200,12 @@ msgstr "" "кратковременная проблема с сетью и стоит попробовать позже. Ниже приведен " "список пакетов, не прошедших проверку." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Невозможно установить '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,11 +214,11 @@ msgstr "" "ошибке. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Невозможно подобрать мета-пакет" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -337,11 +337,11 @@ msgstr "" "обновления вы можете снова включить их с помощью утилиты 'software-" "properties' или synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Ошибка при обновлении" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -349,11 +349,11 @@ msgstr "" "При обновлении возникла проблема. Обычно это бывает вызвано проблемами в " "сети, проверьте сетевые подключения и повторите попытку." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Недостаточно свободного места на диске" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -365,15 +365,15 @@ msgstr "" "предыдущих установок с помощью команды 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Вы хотите начать обновление системы?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Невозможно установить обновления" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -387,11 +387,11 @@ msgstr "" "Пожалуйста, отправьте отчет об ошибке программы 'update-manager' и добавьте " "файлы в /var/log/dist-upgrade/ к отчету." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Невозможно загрузить обновления" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -399,11 +399,11 @@ msgstr "" "Обновление прервано. Проверьте соединение с Интернет или установочный диск и " "попробуйте снова. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Некоторые программы больше не поддерживаются" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -417,23 +417,23 @@ msgstr "" "Если у вас не подключен репозиторий сообщества (universe), на следующем шаге " "вам предложат удалить эти пакеты." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Удалить устаревшие пакеты?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" -msgstr "Пропустить этот шаг" +msgstr "_Пропустить этот шаг" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" -msgstr "Удалить" +msgstr "_Удалить" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Ошибка при фиксировании" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -442,27 +442,27 @@ msgstr "" "ниже. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Восстановление первоначального состояния системы" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Загрузка '%s' из репозитария backports" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Проверка менеджера пакетов" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Подготовка к обновлению завершилась неудачей" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -472,15 +472,15 @@ msgstr "" "отчет об ошибке приложения 'update-manager' и приложите к отчету файлы в /" "var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Обновление информации о репозитории" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Неверная информация о пакете" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -493,19 +493,19 @@ msgstr "" "Это серьёзная проблема, пожалуйста, сообщите об ошибке пакета 'update-" "manager', включив в отчёт об ошибке файлы, лежащие в /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Запрос подтверждения" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Обновление" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Поиск устаревших программ" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Обновление системы завершено." @@ -577,11 +577,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Не найдена команда 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Произошла неисправимая ошибка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -595,7 +595,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -603,7 +603,7 @@ msgstr[0] "%d пакет будет удален." msgstr[1] "%d пакета будут удалены." msgstr[2] "%d пакетов будут удалены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -611,7 +611,7 @@ msgstr[0] "%d новый пакет будет установлен." msgstr[1] "%d новых пакета будут установлены." msgstr[2] "%d новых пакетов будут установлены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -619,7 +619,7 @@ msgstr[0] "%d пакет будет обновлен." msgstr[1] "%d пакета будут обновлены." msgstr[2] "%d пакетов будут обновлены." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -630,7 +630,7 @@ msgstr "" "\n" "Всего требуется загрузить %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -638,35 +638,35 @@ msgstr "" "Загрузка и установка обновлений может занять несколько часов и не может быть " "прервано в любой момент." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Чтобы избежать потерь данных, закройте все открытые приложения и документы." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Ваша система не требует обновления" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Для вашей системы не доступно ни одно обновление. Обновление будет отменено." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Удалить %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Установить %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Обновить %s" @@ -702,11 +702,11 @@ msgstr "" "Эта загрузка займет примерно %s при использовании 1Мбит DSL-соединения и " "примерно %s при использовании модема на скорости 56кбит" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Требуется перезагрузка" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "Обновление завершено и требуется перезагрузка. Перезагрузиться сейчас?" @@ -762,7 +762,7 @@ msgstr "Загрузка и установка обновлений" #: ../DistUpgrade/DistUpgrade.glade.h:12 msgid "Modifying the software channels" -msgstr "Изменение источников приложений" +msgstr "Изменение каналов приложений" #: ../DistUpgrade/DistUpgrade.glade.h:13 msgid "Preparing the upgrade" @@ -786,24 +786,24 @@ msgstr "Продолжить" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" -msgstr "Оставить" +msgstr "_Оставить" #: ../DistUpgrade/DistUpgrade.glade.h:19 #: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 msgid "_Replace" -msgstr "Заменить" +msgstr "_Заменить" #: ../DistUpgrade/DistUpgrade.glade.h:20 msgid "_Report Bug" -msgstr "Отправить сообщение об ошибке" +msgstr "_Отправить сообщение об ошибке" #: ../DistUpgrade/DistUpgrade.glade.h:21 msgid "_Restart Now" -msgstr "Перезапустить сейчас" +msgstr "Перезапустить _сейчас" #: ../DistUpgrade/DistUpgrade.glade.h:22 msgid "_Resume Upgrade" -msgstr "Продолжить обновление" +msgstr "_Продолжить обновление" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" @@ -1105,11 +1105,11 @@ msgstr "Изменения и описание обновления" #: ../data/glade/UpdateManager.glade.h:9 msgid "Chec_k" -msgstr "Проверить" +msgstr "_Проверить" #: ../data/glade/UpdateManager.glade.h:10 msgid "Check the software channels for new updates" -msgstr "Проверить источники приложений на наличие обновлений" +msgstr "Проверить каналы приложений на наличие обновлений" #: ../data/glade/UpdateManager.glade.h:11 msgid "Description" @@ -1173,9 +1173,8 @@ msgid "_Install Updates" msgstr "Установить обновления" #: ../data/glade/UpdateManager.glade.h:25 -#, fuzzy msgid "_Upgrade" -msgstr "Обновить" +msgstr "_Обновить" #: ../data/glade/UpdateManager.glade.h:26 msgid "changes" @@ -1406,7 +1405,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" -msgstr "Напоминать обновить список источников" +msgstr "Напоминать обновить список каналов" #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" @@ -1424,7 +1423,7 @@ msgstr "Хранит состояние экспандера, содержаще #: ../data/update-manager.schemas.in.h:8 msgid "The window size" -msgstr "Размер окна" +msgstr "Размен окна" #: ../data/software-properties.desktop.in.h:1 msgid "Configure the sources for installable software and updates" @@ -1534,7 +1533,7 @@ msgstr "Обновления Ubuntu 5.10" #. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" -msgstr "Ubuntu 5.10 бэкпорты" +msgstr "Ubuntu 5.10 Backports" #. Description #: ../data/channels/Ubuntu.info.in:152 diff --git a/po/rw.po b/po/rw.po index 0f184568..e126b373 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" @@ -165,20 +165,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -188,23 +188,23 @@ msgid "" msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -212,11 +212,11 @@ msgid "" msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -306,22 +306,22 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 #, fuzzy msgid "Error during update" msgstr "i Urufunguzo" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -330,15 +330,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -347,21 +347,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -370,51 +370,51 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 #, fuzzy msgid "Checking package manager" msgstr "Muyobozi ni" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -422,15 +422,15 @@ msgid "" "upgrade/ in the bugreport." msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -440,20 +440,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 #, fuzzy msgid "Upgrading" msgstr "Byarangiye" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -520,11 +520,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -534,25 +534,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -560,40 +560,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Sisitemu ni Hejuru Kuri Itariki" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -627,11 +627,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/sk.po b/po/sk.po index 653c6f01..978e65cc 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Peter Chabada \n" "Language-Team: Slovak \n" @@ -160,20 +160,20 @@ msgstr "" "Váš systém obsahuje poškodené balíky, ktoré nemôžu byť týmto programom " "opravené. Pred pokračovaním ich opravte programom synaptic alebo apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Nemôžem aktualizovať požadované meta-balíky" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Musel by byť odstránený dôležitý balík" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Nemôžem vypočítať aktualizáciu" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -185,11 +185,11 @@ msgstr "" "ako chybu." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Chyba pri overovaní niektorých balíkov" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -199,23 +199,23 @@ msgstr "" "problémom v sieti. Môžete to opäť skúsiť neskôr. Nižšie je uvedený zoznam " "neoverených balíčkov." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Nemôžem inštalovať '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Požadovaný balík nebolo možné nainštalovať. Nahláste to ako chybu. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Nemôžem odhadnúť meta balík." -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -329,11 +329,11 @@ msgstr "" "Môžete ich povoliť po upgrade pomocou nástroja 'vlastnosti-softwaru' alebo " "pomocou synapticu." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Chyba počas aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -341,11 +341,11 @@ msgstr "" "Počas aktualizácie sa objavil problém, ktorý je zvyčajne spôsobený chybou " "sieťového pripojenia, preto skontrolujte vaše pripojenie a skúste znova." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Nedostatok voľného miesta na disku" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -357,15 +357,15 @@ msgstr "" "súborov z predchádzajúcich inštalácií pomocou príkazu 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Chcete začať s aktualizáciou?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Nebolo možné nainštalovať aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 #, fuzzy msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " @@ -377,11 +377,11 @@ msgstr "" "Aktualizácia teraz skončí. Váš systém môže byť v nepoužiteľnom stave, preto " "bol spustený príkaz na zotavenie sa z tohto stavu (dpkg --configure -a)." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Nebolo možné stiahnuť požadované balíky" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -389,11 +389,11 @@ msgstr "" "Aktualizácia bola neočakávane prerušená. Skontrolujte svoje internetové " "pripojenie alebo inštalačné médiá a skúste znova. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -408,23 +408,23 @@ msgstr "" "Pokiaľ nemáte zapnutý komunitou spravovaný zdroj softvéru 'universe', budú " "tieto balíky v ďalšom kroku navrhnuté na odstránenie." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Odstrániť zastarané balíky?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Preskočiť tento krok" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Odstrániť" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Chyba počas potvrdzovania" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -433,28 +433,28 @@ msgstr "" "uvedené správy. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Obnovuje sa pôvodný stav systému" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Kontrola správcu balíkov" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Prebieha príprava aktualizácie" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -464,15 +464,15 @@ msgstr "" "Počas prípravy aktualizácie sa vyskytol neriešiteľný problém. Nahláste to " "ako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Aktualizácia informácií o zdrojoch softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Neplatná informácia o balíku" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, fuzzy, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -485,19 +485,19 @@ msgstr "" "s'.\n" "To znamená závažný problém. Nahláste to ako chybu." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Požaduje sa potvrdenie" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Prebieha aktualizácia" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Vyhľadávanie zastaraného softvéru" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Aktualizácia systému je dokončená." @@ -566,11 +566,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Príkaz 'diff' nebol nájdený." -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Nastala závažná chyba" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -586,7 +586,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, fuzzy, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -594,7 +594,7 @@ msgstr[0] "Bude odstránený %s balík." msgstr[1] "Budú odstránené %s balíky." msgstr[2] "Bude odstránených %s balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, fuzzy, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -602,7 +602,7 @@ msgstr[0] "Bude nainštalovaný %s nový balík." msgstr[1] "Budú nainštalované %s nové balíky." msgstr[2] "Bude nainštalovaných %s nových balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, fuzzy, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -610,7 +610,7 @@ msgstr[0] "Bude aktualizovaný %s balík." msgstr[1] "Budú aktualizované %s balíky." msgstr[2] "Bude aktualizovaných %s balíkov." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -621,41 +621,41 @@ msgstr "" "\n" "Musíte stiahnuť celkom %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 #, fuzzy msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "Aktualizácia môže trvať niekoľko hodín a nemôže byť neskôr prerušená." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pre zamedzenie straty dát, zavrite všetky otvorené programy a dokumenty." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Váš systém je aktuálny" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Odstrániť %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Inštalovať %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Aktualizovať %s" @@ -689,11 +689,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Je potrebný reštart" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/sl.po b/po/sl.po index baba6c98..bb0eb461 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Tadej \n" "Language-Team: Slovenian \n" @@ -159,20 +159,20 @@ msgstr "" "Prosim, da popravite te pakete z uporabo synaptic ali apt-get, preden " "nadaljujete." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Ne morem nadgraditi zahtevanih meta-paketov" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Bistven paket se bo moral odstraniti" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Ne morem izračunati nadgradnje" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -181,11 +181,11 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Napaka pristnosti nekaterih paketov" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -195,12 +195,12 @@ msgstr "" "omrežju. Morda poskusite kasneje. Spodaj poglejte seznam nepreverjenih " "paketov." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, fuzzy, python-format msgid "Can't install '%s'" msgstr "Ne morem namestiti '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -208,11 +208,11 @@ msgstr "" "Nemogoče je bilo namestiti zahtevani paket. Prosim, javite to kot napaka. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Ne morem ugibati meta-paketa" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -316,11 +316,11 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Napaka med posodobitvijo" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -328,11 +328,11 @@ msgstr "" "Med posodobitvijo je prišlo do napake. Ponavadi je to lahko omrežna napaka, " "prosim, da preverite vaše omrežje in poskusite znova." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Premalo prostora na disku" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -344,15 +344,15 @@ msgstr "" "namesitev z uporabo 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Želite pričeti z nadgradnjo?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Ne morem namestiti nadgradenj." -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -361,11 +361,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Ne morem sneti nadgradenj" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -373,11 +373,11 @@ msgstr "" "Nadgradnja sedaj končuje. Prosim, preverite internetno povezavo ali " "namestitveni medij in poizkusite znova. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -386,23 +386,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Odstranim neuporabne pakete?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Preskoči ta korak" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Odstrani" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Napaka med izvedbo" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -411,42 +411,42 @@ msgstr "" "več informacij. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Preverjam paketni upravitelj" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Posodabljam shranjeno informacijo" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Neveljavna paketna informacija" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -456,19 +456,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Sprašujem za potrditev" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Nadgrajevanje" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Nadgrajevanje sistema je dokončano" @@ -534,11 +534,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -548,7 +548,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -557,7 +557,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -566,7 +566,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -575,7 +575,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -583,39 +583,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Odstrani %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Namesti %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Nadgradi %s" @@ -649,11 +649,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Potreben je ponoven zagon" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "Nadgrajevanje je končano in potreben je ponoven zagon" diff --git a/po/sq.po b/po/sq.po index 731d45af..fe0f2af0 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-09 15:50+0000\n" "Last-Translator: Alejdin Tirolli \n" "Language-Team: Albanian \n" @@ -162,20 +162,20 @@ msgstr "" "softuer.Ju lutemi riparoni këtë me Synaptic ose apt-get, para se të shkoni " "përpara." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Metapaketat e nevojshme nuk mund të aktualizohen." -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Një paketë themelore u deshtë të largohej" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Aktualizimi nuk mund të llogaritej" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -186,11 +186,11 @@ msgstr "" "raport për këtë gabim." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Gabim gjatë vërtetimit të origjinalitetit të disa paketave." -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -200,12 +200,12 @@ msgstr "" "problemet me rrjetin.Ju lutemi provoni më vonë edhe një herë.Paketat e " "mëposhtme nuk mund të vërtetohen për nga origjinaliteti." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "'%s' nuk mund të instalohet" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,11 +214,11 @@ msgstr "" "problem. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Can't guess meta-package" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -313,21 +313,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -336,15 +336,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -353,21 +353,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -376,65 +376,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -444,19 +444,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -522,11 +522,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -536,28 +536,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -565,39 +565,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -631,11 +631,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/sr.po b/po/sr.po index b5f6a382..b2549aea 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Vladimir Samardzic \n" "Language-Team: Serbian \n" @@ -165,20 +165,20 @@ msgstr "" "софтвером. Молим вас прво њих поправите користећи synaptic или apt-get прије " "него што наставите." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -187,34 +187,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -304,22 +304,22 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, fuzzy msgid "Not enough free disk space" msgstr "Нема довољно места на диску" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, fuzzy, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -331,15 +331,15 @@ msgstr "" "инсталација користећи команду 'sudo apt-get clean'." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -348,21 +348,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -371,65 +371,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Прескочи овај корак" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Уклони" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -439,19 +439,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 #, fuzzy msgid "System upgrade is complete." msgstr "Унапређење система је завршено" @@ -519,11 +519,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Команда 'diff' није нађена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -533,7 +533,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -541,7 +541,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -549,7 +549,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -557,7 +557,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -565,41 +565,41 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 #, fuzzy msgid "To prevent data loss close all open applications and documents." msgstr "" "Да би спречили губитак података затворите све активне програме и документа." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Инсталирај %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Унапреди %s" @@ -633,12 +633,12 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 #, fuzzy msgid "Reboot required" msgstr "Потребно је поново покретање система" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/sv.po b/po/sv.po index a690f9f9..aa6fc3a9 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 05:06+0000\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -160,20 +160,20 @@ msgstr "" "programmet. Reparera dem först med synaptic eller apt-get innan du " "fortsätter." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Kan inte uppdatera de obligatoriska meta-paketen" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Ett grundläggande paket skulle behöva tas bort" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Kunde inte beräkna uppgraderingen" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -186,11 +186,11 @@ msgstr "" "filerna i /var/log/dist-upgrade/ i felrapporten." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Det gick inte att autentisiera vissa paket" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -200,12 +200,12 @@ msgstr "" "nätverksfel. Det kan hjälpa med att försöka senare. Se nedan för en lista " "med icke-autentisierade paket." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Kan inte installera \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -214,11 +214,11 @@ msgstr "" "som ett fel. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Kan inte gissa meta-paket" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -340,11 +340,11 @@ msgstr "" "återaktivera dem efter uppgraderingen med verktyget \"software-properties\" " "eller med Synaptic." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Fel vid uppdatering" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -353,11 +353,11 @@ msgstr "" "av nätverksproblem, var god kontrollera din nätverksanslutning och försök " "igen." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Inte tillräckligt med ledigt diskutrymme" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -369,15 +369,15 @@ msgstr "" "att använda \"sudo apt-get clean\"." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Vill du starta uppgraderingen?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Det gick inte att installera uppgraderingarna" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -391,11 +391,11 @@ msgstr "" "Rapportera detta fel mot paketet \"update-manager\" och bifoga filerna i /" "var/log/dist-upgrade/ i felrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Det gick inte att hämta uppgraderingarna" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -403,11 +403,11 @@ msgstr "" "Uppgraderingen avbryts nu. Var god kontrollera din Internetanslutning eller " "ditt installationsmedia, och försök igen. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Stöd för vissa program har upphört" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -421,23 +421,23 @@ msgstr "" "Om du inte har aktiverat gemenskapsunderhållen programvara (universe), " "kommer dessa paket att föreslås för borttagning i nästa steg." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Ta bort föråldrade paket?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_Hoppa över det här steget" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Ta bort" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "Fel inträffade vid verkställandet" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -446,27 +446,27 @@ msgstr "" "information. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Återställer ursprungligt systemtillstånd" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "Hämtar bakåtportering av \"%s\"" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Kontrollerar pakethanterare" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "Förberedelse av uppgradering misslyckades" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -476,15 +476,15 @@ msgstr "" "som ett fel mot paketet \"update-manager\" och inkludera filerna i /var/log/" "dist-upgrade/ i felrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Uppdaterar förrådsinformation" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Ogiltig paketinformation" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -499,19 +499,19 @@ msgstr "" "fel mot paketet \"update-manager\" och bifoga filerna i /var/log/dist-" "upgrade/ i felrapporten." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Ber om bekräftelse" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Uppgraderar" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Söker efter föråldrad programvara" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Systemuppdateringen är klar." @@ -583,11 +583,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Kommandot \"diff\" hittades inte" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Ett ödesdigert fel uppstod" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -601,28 +601,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paket kommer att tas bort." msgstr[1] "%d paket kommer att tas bort." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nytt paket kommer att installeras." msgstr[1] "%d nya paket kommer att installeras." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paket kommer att uppgraderas." msgstr[1] "%d paket kommer att uppgraderas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -633,7 +633,7 @@ msgstr "" "\n" "Du måste hämta totalt %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -641,17 +641,17 @@ msgstr "" "Hämtning och installation av uppgraderingen kan ta flera timmar och kan inte " "avbrytas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "Stäng alla öppna program och dokument för att förhindra dataförlust." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Ditt system är uppdaterat" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -659,17 +659,17 @@ msgstr "" "Det finns inga tillgängliga uppgraderingar för ditt system. Uppgraderingen " "kommer nu att avbrytas." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Ta bort %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "Installera %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Uppgradera %s" @@ -705,11 +705,11 @@ msgstr "" "Den här hämtningen kommer att ta ungefär %s med en 1 Mbit DSL-anslutningen " "och ungefär %s med ett 56k-modem" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Omstart krävs" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/ta.po b/po/ta.po index ae266cae..d9af72cd 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:06+0000\n" "Last-Translator: Raghavan \n" "Language-Team: Tamil \n" @@ -152,20 +152,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "'%s' நிறுவமுடியவில்லை" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -291,23 +291,23 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 #, fuzzy msgid "Error during update" msgstr "புதுப்பிக்கும் பொழுது பிழை ஏற்பட்டுள்ளது" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 #, fuzzy msgid "Not enough free disk space" msgstr "வட்டுவில்் போதுமான காலி இடம் இல்லை" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -316,15 +316,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -333,21 +333,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -356,65 +356,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -424,20 +424,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 #, fuzzy msgid "Asking for confirmation" msgstr "உறுதிப்படுத்த கேட்கிறது" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "மேம்படுத்துகிறது" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 #, fuzzy msgid "System upgrade is complete." msgstr "கணிணி மேம்பாடு முடிந்தது." @@ -505,11 +505,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "'diff' என்ற கட்டளை இல்லை" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -519,28 +519,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -548,39 +548,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "%s நீக்கு" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "%s நிறுவு" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "%s மேம்படுத்து" @@ -614,12 +614,12 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 #, fuzzy msgid "Reboot required" msgstr "மறு தொடக்கம் தேவைப்படுகிறது" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/th.po b/po/th.po index c1891198..2b1fd350 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Roys Hengwatanakul \n" "Language-Team: Thai \n" @@ -156,20 +156,20 @@ msgstr "" "ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ กรุณาซ่อมโดยใช้โปรแกรม synaptic " "หรือ apt-get ก่อนดำเนินการต่อไป" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "ไม่สามารถปรับปรุง meta แพกเกจที่ต้องการได้" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "แพจเกจที่สำคัญจะถูกลบออก" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "ไม่สามารถคำนวนการปรับปรุงได้" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -182,11 +182,11 @@ msgstr "" "upgrade/ ในรายงานด้วย" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "ไม่ปัญหาในการยืนยันว่าเป็บของจริงสำหรับบางแพกเกจ" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -195,23 +195,23 @@ msgstr "" "ไม่สามารถที่จะยืนยันความถูกต้องของแพกเกจบางอันได้ นี่อาจจะเกี่ยวกับปัญหาในด้านเครือข่าย " "คุณอาจจะลองอีกครั้งภายหลังก็ได้ กรุณาตรวจดูรายการของแพกเกจที่ไม่ผ่านการยืนยัน" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "ไม่สามารถติดตั้ง '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "ไม่สามารถที่จะติดตั้งแพกเกจที่ต้องการได้ กรุณารายงานว่าเป็นปัญหา " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "ไม่สามารถเดาเมททาแพกเกจ(meta-package)ได้" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -324,11 +324,11 @@ msgstr "" "คุณสามารถเปลี่ยนให้ใช้ได้หลังการปรับปรุงด้วยเครื่องมือ 'software-properties' " "หรือด้วยโปรแกรม synaptic" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "เกิดข้อผิดพลาดขณะปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -336,11 +336,11 @@ msgstr "" "มีปัญหาเกิดขึ้นขณะทำการปรับปรุง โดยปกติแล้วจะเป็นปัญหาด้านเครือข่าย " "กรุณาตรวจสอบการสื่อสารในเครือข่ายของคุณแล้วลองใหม่อีกที" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "ไม่มีพื้นที่ว่างในดิสก์เพียงพอ" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -351,15 +351,15 @@ msgstr "" "เทถังขยะทิ้งและลบแพกเกจชั่วคราวจากการติดตั้งครั้งก่อนโดยใช้คำสั่ง 'sudo apt-get clean'" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "คุณต้องการที่จะเริ่มการปรับปรุงหรือไม่?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "ไม่สามารถปรับปรุงได้" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -373,11 +373,11 @@ msgstr "" "กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' และแนบไฟล์ใน /var/log/dist-" "upgrade/ ในรายงานด้วย" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "ไม่สามารถดาวน์โหลดข้อมูลปรับปรุงรุ่น" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -385,11 +385,11 @@ msgstr "" "การปรับปรุงถูกยกเลิก กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณหรือ installation " "mediaและลองอีกครั้ง " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "สนับสนุนสำหรับบางแอพพลิเคชันสิ้นสุดลง" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -402,50 +402,50 @@ msgstr "" "\n" "ถ้าคุณไม่ได้เลือกใช ้แพกเกจเหล่านี้จะถูกแนะนำให้ลบออกในขั้นต่อไป" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "ลบแพจเกจที่ล้าสมัยทิ้งหรือไม่?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "_ข้ามขั้นตอนนี้" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "เ_อาออก" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "เกิดข้อผิดพลาดขณะแก้ไขปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "เกิดปัญหาขึ้นขณะทำการเก็บกวาด กรุณาตรวจสอบข้อความข้างล่างสำหรับรายละเอียดเพิ่มเติม " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "คืนระบบสู่สถานะแรกเริ่ม" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "ดึงพอร์ตย้อนหลังของ '%s'" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "กำลังตรวจสอบโปรแกรมจัดการแพกเกจ" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "การเตรียมการปรับปรุงรุ่นมีปัญหา" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -454,15 +454,15 @@ msgstr "" "การเตรียมระบบสำหรับการปรับปรุงรุ่นมีปัญหา กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-" "manager' และแนบไฟล์ใน /var/log/dist-upgrade/ ในรายงานด้วย" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "ปรับปรุงข้อมูลของแหล่งข้อมูล" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "ข้อมูลของแพกเกจไม่ถูกต้อง" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -475,19 +475,19 @@ msgstr "" "นี่แสดงว่าเป็นปัญหาร้ายแรง กรุณารายงานปัญหานี้ภายใต้แพ็กเกจ 'update-manager' " "และแนบไฟล์ใน /var/log/dist-upgrade/ กับรายงานด้วย" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "_ถามการยืนยันจากคุณก่อน" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "กำลังปรับปรุง" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "ค้นหาซอฟแวร์ที่ล้าสมัย" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "ปรับปรุงระบบเสร็จแล้ว" @@ -557,11 +557,11 @@ msgstr "คุณจะสูญเสียข้อมูลปรับแต msgid "The 'diff' command was not found" msgstr "ไม่เจอคำสั่ง 'diff'" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "เกิดข้อผิดพลาดอย่างร้ายแรง" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -574,25 +574,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d แพกเกจจะถูกลบออก" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d แพกเกจใหม่จะถูกติดตั้ง" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d แพกเกจจะถูกปรับปรุงรุ่น" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, fuzzy, python-format msgid "" "\n" @@ -603,39 +603,39 @@ msgstr "" "\n" "คุณจะต้องดาวน์โหลดทั้งหมด %s " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "ดาวน์โหลดและติดตั้งอาจจะใช้เวลานานหลายชั่วโมง และไม่สามารถที่จะยกเลิกได้หลังจากนี้ไป" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "เพื่อป้องกันข้อมูลสูญหายกรุณาออกจากทุกโปรแกรมและเอกสารที่เปิดอยู่" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "ระบบของคุณทันสมัยแล้ว" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "ไม่มีข้อมูลปรับปรุงรุ่นสำหรับระบบของคุณ การปรับปรุงรุ่นจึงถูกยกเลิก" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "ลบออก %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "ติดตั้ง %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "ปรับปรุงรุ่น %s" @@ -671,11 +671,11 @@ msgstr "" "ดาวน์โหลดนี้จะใช้เวลาประมาณ %s ด้วยการสื่อสารแบบ 1Mbit DSL และประมาณ %s ถ้าใช้ 56K " "โมเดม" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "ต้องเริ่มระบบใหม่" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "การปรับปรุงเสร็จสิ้นแล้วและต้องการที่จะเริ่มระบบใหม่ คุณต้องการที่จะทำเดี๋ยวนี้หรือเปล่า?" diff --git a/po/tl.po b/po/tl.po new file mode 100644 index 00000000..48d4bcec --- /dev/null +++ b/po/tl.po @@ -0,0 +1,1565 @@ +# Tagalog translation for update-manager +# Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 +# This file is distributed under the same license as the update-manager package. +# FIRST AUTHOR , 2006. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: update-manager\n" +"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-09-16 15:44+0000\n" +"Last-Translator: Ariel S. Betan \n" +"Language-Team: Tagalog \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\n" + +#: ../SoftwareProperties/SoftwareProperties.py:136 +msgid "Daily" +msgstr "Araw-araw" + +#: ../SoftwareProperties/SoftwareProperties.py:137 +msgid "Every two days" +msgstr "Tuwing ikalawang araw" + +#: ../SoftwareProperties/SoftwareProperties.py:138 +msgid "Weekly" +msgstr "linggo-linggo" + +#: ../SoftwareProperties/SoftwareProperties.py:139 +msgid "Every two weeks" +msgstr "Tuwing ikalawang linggo" + +#: ../SoftwareProperties/SoftwareProperties.py:144 +#, python-format +msgid "Every %s days" +msgstr "Tuwing %s days" + +#: ../SoftwareProperties/SoftwareProperties.py:167 +msgid "After one week" +msgstr "Makalipas ang isang linggo" + +#: ../SoftwareProperties/SoftwareProperties.py:168 +msgid "After two weeks" +msgstr "Makalipas ang dalawang linggo" + +#: ../SoftwareProperties/SoftwareProperties.py:169 +msgid "After one month" +msgstr "Makalipas ang isang buwan" + +#: ../SoftwareProperties/SoftwareProperties.py:174 +#, python-format +msgid "After %s days" +msgstr "Makalipas ang %s araw" + +#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu +#: ../SoftwareProperties/SoftwareProperties.py:252 +#, python-format +msgid "%s updates" +msgstr "" + +#. TRANSLATORS: Label for the components in the Internet section +#. first %s is the description of the component +#. second %s is the code name of the comp, eg main, universe +#: ../SoftwareProperties/SoftwareProperties.py:264 +#, python-format +msgid "%s (%s)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:316 +msgid "Main server" +msgstr "" + +#. TRANSLATORS: %s is a country +#: ../SoftwareProperties/SoftwareProperties.py:320 +#: ../SoftwareProperties/SoftwareProperties.py:338 +#, python-format +msgid "Server for %s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:324 +msgid "Nearest server" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:345 +msgid "Custom servers" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:604 +#: ../SoftwareProperties/SoftwareProperties.py:621 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:612 +#: ../SoftwareProperties/SoftwareProperties.py:629 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:714 +msgid "(Source Code)" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:720 +msgid "Source Code" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:969 +msgid "Import key" +msgstr "Import key" + +#: ../SoftwareProperties/SoftwareProperties.py:979 +msgid "Error importing selected file" +msgstr "Error sa pagkuha ng napiling file" + +#: ../SoftwareProperties/SoftwareProperties.py:980 +msgid "The selected file may not be a GPG key file or it might be corrupt." +msgstr "Ang napiling file ay maaaring hindi isang GPG key o kaya'y may sira." + +#: ../SoftwareProperties/SoftwareProperties.py:992 +msgid "Error removing the key" +msgstr "Error sa pagtanggal ng key" + +#: ../SoftwareProperties/SoftwareProperties.py:993 +msgid "The key you selected could not be removed. Please report this as a bug." +msgstr "" +"Ang napiling key ay hindi matanggal. Mangyari lamang na ipagbigay alam ito " +"bilang isang bug." + +#: ../SoftwareProperties/SoftwareProperties.py:1039 +#, python-format +msgid "" +"Error scanning the CD\n" +"\n" +"%s" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:1096 +msgid "Please enter a name for the disc" +msgstr "Mangyari lamang na magpasok ng pangalan para sa disc" + +#: ../SoftwareProperties/SoftwareProperties.py:1112 +msgid "Please insert a disc in the drive:" +msgstr "Mangyari lamang na ipasok ang disc sa drive:" + +#: ../DistUpgrade/DistUpgradeCache.py:91 +msgid "Broken packages" +msgstr "Sirang mga pakete" + +#: ../DistUpgrade/DistUpgradeCache.py:92 +msgid "" +"Your system contains broken packages that couldn't be fixed with this " +"software. Please fix them first using synaptic or apt-get before proceeding." +msgstr "" +"Ang iyong sistema ay nagtataglay ng mga sirang pakete na hindi maisasaayos " +"ng software na ito. Mangyari lamang na ayusin muna ang mga ito sa " +"pamamagitan ng synaptic o apt-get bago magpatuloy." + +#: ../DistUpgrade/DistUpgradeCache.py:238 +msgid "Can't upgrade required meta-packages" +msgstr "Hindi ma-upgrade ang kinakailangang mga meta-pakete" + +#: ../DistUpgrade/DistUpgradeCache.py:242 +msgid "A essential package would have to be removed" +msgstr "Isang esensiyal na pakete ang kailangang tanggalin" + +#. FIXME: change the text to something more useful +#: ../DistUpgrade/DistUpgradeCache.py:245 +msgid "Could not calculate the upgrade" +msgstr "Hindi matantiya ang laki ng upgrade" + +#: ../DistUpgrade/DistUpgradeCache.py:246 +msgid "" +"A unresolvable problem occurred while calculating the upgrade.\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#. FIXME: maybe ask a question here? instead of failing? +#: ../DistUpgrade/DistUpgradeCache.py:280 +msgid "Error authenticating some packages" +msgstr "Error sa pagtiyak na tama ang ilang mga pakete" + +#: ../DistUpgrade/DistUpgradeCache.py:281 +msgid "" +"It was not possible to authenticate some packages. This may be a transient " +"network problem. You may want to try again later. See below for a list of " +"unauthenticated packages." +msgstr "" +"Hindi posibleng matiyak ang ilang mga pakete. Baka dulot ito ng isang " +"pansamantalang problema sa network. Maari mong subukang muli mamaya. Tingnan " +"sa ibaba ang listahan ng hindi matiyak na mga pakete." + +#: ../DistUpgrade/DistUpgradeCache.py:346 +#, python-format +msgid "Can't install '%s'" +msgstr "Hindi ma-install '%s'" + +#: ../DistUpgrade/DistUpgradeCache.py:347 +msgid "" +"It was impossible to install a required package. Please report this as a " +"bug. " +msgstr "" +"Hindi ma-install ang isang kinakailangang pakete. Mangyari lamang na " +"ipagbigay alam ito bilang isang bug. " + +#. FIXME: provide a list +#: ../DistUpgrade/DistUpgradeCache.py:354 +msgid "Can't guess meta-package" +msgstr "Hindi malaman ang meta-pakete" + +#: ../DistUpgrade/DistUpgradeCache.py:355 +msgid "" +"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" +"desktop package and it was not possible to detect which version of ubuntu " +"you are running.\n" +" Please install one of the packages above first using synaptic or apt-get " +"before proceeding." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:75 +msgid "Failed to add the CD" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:76 +#, python-format +msgid "" +"There was a error adding the CD, the upgrade will abort. Please report this " +"as a bug if this is a valid Ubuntu CD.\n" +"\n" +"The error message was:\n" +"'%s'" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:108 +msgid "Reading cache" +msgstr "Nagbabasa ng cache" + +#: ../DistUpgrade/DistUpgradeControler.py:156 +msgid "Fetch data from the network for the upgrade?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:157 +msgid "" +"The upgrade can use the network to check the latest updates and to fetch " +"packages that are not on the current CD.\n" +"If you have fast or inexpensive network access you should answer 'Yes' here. " +"If networking is expensive for you choose 'No'." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:249 +msgid "No valid mirror found" +msgstr "Walang makitang tamang mirror" + +#: ../DistUpgrade/DistUpgradeControler.py:250 +#, python-format +msgid "" +"While scaning your repository information no mirror entry for the upgrade " +"was found.This cam happen if you run a internal mirror or if the mirror " +"information is out of date.\n" +"\n" +"Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " +"here it will update all '%s' to '%s' entries.\n" +"If you select 'no' the update will cancel." +msgstr "" +"Habang sinusuri ang iyong sisidlan ng impormasyon walang makitang mirror " +"entry para sa upgrade. Baka dulot ito ng isang pinatatakbong panloob na " +"mirror o lumang impormasyon sa mirror.\n" +"\n" +"Gusto mo pa rin bang masulat ang iyong 'sources.list' file? Kung pipiliin mo " +"ang 'Yes' dito ma-a-update ang lahat ng '%s' to '%s' entries.\n" +"Kung pipiliin mo ang 'no' makakansela naman ang update." + +#. hm, still nothing useful ... +#: ../DistUpgrade/DistUpgradeControler.py:267 +msgid "Generate default sources?" +msgstr "Lilikha ng default sources?" + +#: ../DistUpgrade/DistUpgradeControler.py:268 +#, python-format +msgid "" +"After scanning your 'sources.list' no valid entry for '%s' was found.\n" +"\n" +"Should default entries for '%s' be added? If you select 'No' the update will " +"cancel." +msgstr "" +"Matapos suriin ang iyong 'sources.list' walang balidong entries para '%s' " +"ang nakita.\n" +"\n" +"Magdadagdag ba ng default entries para '%s'? Kung pipiliin mo ang 'No' " +"makakansela ang update." + +#: ../DistUpgrade/DistUpgradeControler.py:302 +msgid "Repository information invalid" +msgstr "Hindi balido ang impormasyon sa sisidlan" + +#: ../DistUpgrade/DistUpgradeControler.py:303 +msgid "" +"Upgrading the repository information resulted in a invalid file. Please " +"report this as a bug." +msgstr "" +"Nagresulta ng hindi balidong file ang pag-upgrade ng impormasyon sa " +"sisidlan. Mangyari lamang na ipagbigay alam ito bilang isang bug." + +#: ../DistUpgrade/DistUpgradeControler.py:309 +msgid "Third party sources disabled" +msgstr "Hindi muna pinagana ang third party sources" + +#: ../DistUpgrade/DistUpgradeControler.py:310 +msgid "" +"Some third party entries in your sources.list were disabled. You can re-" +"enable them after the upgrade with the 'software-properties' tool or with " +"synaptic." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:364 +msgid "Error during update" +msgstr "Error habang nag-a-update" + +#: ../DistUpgrade/DistUpgradeControler.py:365 +msgid "" +"A problem occured during the update. This is usually some sort of network " +"problem, please check your network connection and retry." +msgstr "" +"Nagka-problema habang nag-a-update. Malimit na dulot ito ng isang problema " +"sa network, mangyari lamang na suriin ang inyong network connection at " +"subukang muli." + +#: ../DistUpgrade/DistUpgradeControler.py:374 +msgid "Not enough free disk space" +msgstr "Hindi sapat ang libreng disk space" + +#: ../DistUpgrade/DistUpgradeControler.py:375 +#, python-format +msgid "" +"The upgrade aborts now. Please free at least %s of disk space on %s. Empty " +"your trash and remove temporary packages of former installations using 'sudo " +"apt-get clean'." +msgstr "" +"Titigil muna ang upgrade. Mangyari lamang na maglibre ng hindi bababa sa %s " +"ng disk space sa %s. Linisin ang inyong basurahan at tanggalin ang mga " +"pansamantalang mga pakete ng mga natapos na installations gamit ang 'sudo " +"apt-get clean'." + +#. ask the user if he wants to do the changes +#: ../DistUpgrade/DistUpgradeControler.py:447 +msgid "Do you want to start the upgrade?" +msgstr "Gusto mo na bang simulan ang upgrade?" + +#: ../DistUpgrade/DistUpgradeControler.py:468 +msgid "Could not install the upgrades" +msgstr "Hindi ma-install ang mga upgrades" + +#: ../DistUpgrade/DistUpgradeControler.py:469 +msgid "" +"The upgrade aborts now. Your system could be in an unusable state. A " +"recovery was run (dpkg --configure -a).\n" +"\n" +"Please report this bug against the 'update-manager' package and include the " +"files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:487 +msgid "Could not download the upgrades" +msgstr "Hindi ma-download ang mga upgrades" + +#: ../DistUpgrade/DistUpgradeControler.py:488 +msgid "" +"The upgrade aborts now. Please check your internet connection or " +"installation media and try again. " +msgstr "" +"Titigil muna ang upgrade. Mangyaring suriin ang iyong internet connection o " +"installation media at subukang muli. " + +#: ../DistUpgrade/DistUpgradeControler.py:524 +msgid "Support for some applications ended" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:525 +msgid "" +"Canonical Ltd. no longer provides support for the following software " +"packages. You can still get support from the community.\n" +"\n" +"If you have not enabled community maintained software (universe), these " +"packages will be suggested for removal in the next step." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:560 +msgid "Remove obsolete packages?" +msgstr "Tanggalin ang mga luma at hindi na kailangang pakete?" + +#: ../DistUpgrade/DistUpgradeControler.py:561 +msgid "_Skip This Step" +msgstr "_Laktawan Itong Hakbang" + +#: ../DistUpgrade/DistUpgradeControler.py:561 +msgid "_Remove" +msgstr "_Tanggalin" + +#: ../DistUpgrade/DistUpgradeControler.py:572 +msgid "Error during commit" +msgstr "Error sa pagtakda" + +#: ../DistUpgrade/DistUpgradeControler.py:573 +msgid "" +"Some problem occured during the clean-up. Please see the below message for " +"more information. " +msgstr "" +"Ilang problema ang naganap habang naglilinis. Mangyari lamang na basahin ang " +"mensahe sa ibaba para sa karagdagang impormasyon. " + +#. generate a new cache +#: ../DistUpgrade/DistUpgradeControler.py:585 +msgid "Restoring original system state" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:641 +#, python-format +msgid "Fetching backport of '%s'" +msgstr "" + +#. sanity check (check for ubuntu-desktop, brokenCache etc) +#. then open the cache (again) +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 +msgid "Checking package manager" +msgstr "Sinusuri ang manager ng pakete" + +#: ../DistUpgrade/DistUpgradeControler.py:681 +msgid "Preparing the upgrade failed" +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:682 +msgid "" +"Preparing the system for the upgrade failed. Please report this as a bug " +"against the 'update-manager' package and include the files in /var/log/dist-" +"upgrade/ in the bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:705 +msgid "Updating repository information" +msgstr "Ina-update ang impormasyon ng sisidlan" + +#: ../DistUpgrade/DistUpgradeControler.py:730 +msgid "Invalid package information" +msgstr "Hindi balidong impormasyon ng pakete" + +#: ../DistUpgrade/DistUpgradeControler.py:731 +#, python-format +msgid "" +"After your package information was updated the essential package '%s' can " +"not be found anymore.\n" +"This indicates a serious error, please report this bug against the 'update-" +"manager' package and include the files in /var/log/dist-upgrade/ in the " +"bugreport." +msgstr "" + +#: ../DistUpgrade/DistUpgradeControler.py:743 +msgid "Asking for confirmation" +msgstr "Nanghihingi ng kumpirmasyon" + +#: ../DistUpgrade/DistUpgradeControler.py:747 +msgid "Upgrading" +msgstr "Nag-a-upgrade" + +#: ../DistUpgrade/DistUpgradeControler.py:754 +msgid "Searching for obsolete software" +msgstr "Naghahanap ng luma at hindi na kailangang software" + +#: ../DistUpgrade/DistUpgradeControler.py:759 +msgid "System upgrade is complete." +msgstr "Kumpleto na ang pagupgrade sa sistema" + +#. print "mediaChange %s %s" % (medium, drive) +#: ../DistUpgrade/DistUpgradeViewGtk.py:100 +#, python-format +msgid "Please insert '%s' into the drive '%s'" +msgstr "Mangyari na ipasok ang '%s' sa drive '%s'" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:118 +msgid "Fetching is complete" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:129 +#, python-format +msgid "Fetching file %li of %li at %s/s" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:130 +#: ../DistUpgrade/DistUpgradeViewGtk.py:253 +#, python-format +msgid "About %s remaining" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:132 +#, python-format +msgid "Fetching file %li of %li" +msgstr "" + +#. FIXME: add support for the timeout +#. of the terminal (to display something useful then) +#. -> longer term, move this code into python-apt +#: ../DistUpgrade/DistUpgradeViewGtk.py:163 +msgid "Applying changes" +msgstr "Ina-aplay ang mga pagbabago" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:187 +#, python-format +msgid "Could not install '%s'" +msgstr "Hindi ma-install ang '%s'" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:188 +msgid "" +"The upgrade aborts now. Please report this bug against the 'update-manager' " +"package and include the files in /var/log/dist-upgrade/ in the bugreport." +msgstr "" + +#. self.expander.set_expanded(True) +#: ../DistUpgrade/DistUpgradeViewGtk.py:203 +#, python-format +msgid "" +"Replace the customized configuration file\n" +"'%s'?" +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:204 +msgid "" +"You will lose any changes you have made to this configuration file if you " +"choose to replace it with a newer version." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:217 +msgid "The 'diff' command was not found" +msgstr "Hindi makita ang 'diff' command" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 +msgid "A fatal error occured" +msgstr "isang matinding error ang naganap" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 +msgid "" +"Please report this as a bug and include the files /var/log/dist-upgrade/main." +"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " +"now.\n" +"Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." +msgstr "" + +#. FIXME: make those two seperate lines to make it clear +#. that the "%" applies to the result of ngettext +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 +#, python-format +msgid "%d package is going to be removed." +msgid_plural "%d packages are going to be removed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#, python-format +msgid "%d new package is going to be installed." +msgid_plural "%d new packages are going to be installed." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 +#, python-format +msgid "%d package is going to be upgraded." +msgid_plural "%d packages are going to be upgraded." +msgstr[0] "" +msgstr[1] "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 +#, python-format +msgid "" +"\n" +"\n" +"You have to download a total of %s. " +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +msgid "" +"Fetching and installing the upgrade can take several hours and cannot be " +"canceled at any time later." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 +msgid "To prevent data loss close all open applications and documents." +msgstr "" +"Upang maiwasan ang pagkawala ng data isara muna ang mga nakabukas na " +"applications at dokumento." + +#. FIXME: this should go into DistUpgradeController +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../UpdateManager/UpdateManager.py:622 +msgid "Your system is up-to-date" +msgstr "Up-to-date ang iyong sistema" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +msgid "" +"There are no upgrades available for your system. The upgrade will now be " +"canceled." +msgstr "" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 +#, python-format +msgid "Remove %s" +msgstr "Tanggalin ang %s" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 +#, python-format +msgid "Install %s" +msgstr "I-install ang %s" + +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 +#, python-format +msgid "Upgrade %s" +msgstr "I-upgrade ang %s" + +#: ../DistUpgrade/DistUpgradeView.py:27 +#, python-format +msgid "%li days %li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:29 +#, python-format +msgid "%li hours %li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:31 +#, python-format +msgid "%li minutes" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:32 +#, python-format +msgid "%li seconds" +msgstr "" + +#. 56 kbit +#. 1Mbit = 1024 kbit +#: ../DistUpgrade/DistUpgradeView.py:38 +#, python-format +msgid "" +"This download will take about %s with a 1Mbit DSL connection and about %s " +"with a 56k modem" +msgstr "" + +#: ../DistUpgrade/DistUpgradeView.py:111 +msgid "Reboot required" +msgstr "Nangangailangan ng pag reboot" + +#: ../DistUpgrade/DistUpgradeView.py:112 +msgid "" +"The upgrade is finished and a reboot is required. Do you want to do this now?" +msgstr "" +"Natapos na ang pag-upgrade at nangangailangan ng pag-reboot. Gusto mo bang " +"gawin na ito ngayon?" + +#. testcode to see if the bullets look nice in the dialog +#. for i in range(4): +#. view.setStep(i+1) +#. app.openCache() +#: ../DistUpgrade/DistUpgrade.glade.h:1 +#: ../data/glade/SoftwareProperties.glade.h:1 +msgid " " +msgstr " " + +#: ../DistUpgrade/DistUpgrade.glade.h:2 +msgid "" +"Cancel the running upgrade?\n" +"\n" +"The system could be in an unusable state if you cancel the upgrade. You are " +"strongly adviced to resume the upgrade." +msgstr "" +"Kanselahin ang kasalukuyang pag-a-upgrade?\n" +"\n" +"Maaaring hindi gumana ang sistema kung kakanselahin ang upgrade. Mariing " +"ipinapayo na ipagpatuloy ang upgrade." + +#: ../DistUpgrade/DistUpgrade.glade.h:5 +msgid "Restart the system to complete the upgrade" +msgstr "" +"I-restart ang sistema upang makumpleto ang pag-upgrade" + +#: ../DistUpgrade/DistUpgrade.glade.h:6 +msgid "Start the upgrade?" +msgstr "Simulan ang upgrade?" + +#: ../DistUpgrade/DistUpgrade.glade.h:7 +msgid "Upgrading Ubuntu to version 6.10" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:8 +msgid "Cleaning up" +msgstr "Naglilinis" + +#: ../DistUpgrade/DistUpgrade.glade.h:9 +msgid "Details" +msgstr "Mga Detalye" + +#: ../DistUpgrade/DistUpgrade.glade.h:10 +msgid "Difference between the files" +msgstr "Pagkakaiba sa pagitan ng mga files" + +#: ../DistUpgrade/DistUpgrade.glade.h:11 +msgid "Fetching and installing the upgrades" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:12 +msgid "Modifying the software channels" +msgstr "Binabagoang mga software channels" + +#: ../DistUpgrade/DistUpgrade.glade.h:13 +msgid "Preparing the upgrade" +msgstr "Ini-hahanda ang upgrade" + +#: ../DistUpgrade/DistUpgrade.glade.h:14 +msgid "Restarting the system" +msgstr "Ini-rerestart ang sistema" + +#: ../DistUpgrade/DistUpgrade.glade.h:15 +msgid "Terminal" +msgstr "Terminal" + +#: ../DistUpgrade/DistUpgrade.glade.h:16 +msgid "_Cancel Upgrade" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:17 +msgid "_Continue" +msgstr "" + +#: ../DistUpgrade/DistUpgrade.glade.h:18 +msgid "_Keep" +msgstr "_Itira" + +#: ../DistUpgrade/DistUpgrade.glade.h:19 +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:21 +msgid "_Replace" +msgstr "_Palitan" + +#: ../DistUpgrade/DistUpgrade.glade.h:20 +msgid "_Report Bug" +msgstr "_Ipagbigay alam ang Bug" + +#: ../DistUpgrade/DistUpgrade.glade.h:21 +msgid "_Restart Now" +msgstr "_I-restart Ngayon" + +#: ../DistUpgrade/DistUpgrade.glade.h:22 +msgid "_Resume Upgrade" +msgstr "_Ipagpatuloy ang Upgrade" + +#: ../DistUpgrade/DistUpgrade.glade.h:23 +msgid "_Start Upgrade" +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:68 +msgid "Could not find the release notes" +msgstr "Hindi makita ang mga release notes" + +#: ../UpdateManager/DistUpgradeFetcher.py:69 +msgid "The server may be overloaded. " +msgstr "Maaaring overloaded ang server. " + +#: ../UpdateManager/DistUpgradeFetcher.py:79 +msgid "Could not download the release notes" +msgstr "Hindi ma-download ang mga release notes" + +#: ../UpdateManager/DistUpgradeFetcher.py:80 +msgid "Please check your internet connection." +msgstr "Mangyaring suriin ang inyong internet connection" + +#. no script file found in extracted tarbal +#: ../UpdateManager/DistUpgradeFetcher.py:149 +msgid "Could not run the upgrade tool" +msgstr "Hindi mapatakbo ang upgrade tool" + +#: ../UpdateManager/DistUpgradeFetcher.py:150 +msgid "" +"This is most likely a bug in the upgrade tool. Please report it as a bug" +msgstr "" +"Malaki ang posibilidad na ito ay isang bug sa upgrade tool. Mangyaring " +"ipagbigay alam bilang isang bug." + +#: ../UpdateManager/DistUpgradeFetcher.py:171 +msgid "Downloading the upgrade tool" +msgstr "Nag-da-download ng upgrade tool" + +#: ../UpdateManager/DistUpgradeFetcher.py:173 +msgid "The upgrade tool will guide you through the upgrade process." +msgstr "Papatnubayan ka ng upgrade tool habang nasa proseso ng pag-upgrade" + +#: ../UpdateManager/DistUpgradeFetcher.py:180 +msgid "Upgrade tool signature" +msgstr "Signature ng upgrade tool" + +#: ../UpdateManager/DistUpgradeFetcher.py:183 +msgid "Upgrade tool" +msgstr "Upgrade tool" + +#: ../UpdateManager/DistUpgradeFetcher.py:208 +msgid "Failed to fetch" +msgstr "Bigo sa pag-fetch" + +#: ../UpdateManager/DistUpgradeFetcher.py:209 +msgid "Fetching the upgrade failed. There may be a network problem. " +msgstr "Bigo sa pag-fetch ng upgrade. Maaaring may problema sa network. " + +#: ../UpdateManager/DistUpgradeFetcher.py:214 +msgid "Failed to extract" +msgstr "Bigo sa pag-extract" + +#: ../UpdateManager/DistUpgradeFetcher.py:215 +msgid "" +"Extracting the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" +"Bigo sa pag-extract ng upgrade. Maaaring may problema sa network o sa " +"server. " + +#: ../UpdateManager/DistUpgradeFetcher.py:221 +msgid "Verfication failed" +msgstr "Bigo sa beripikasyon" + +#: ../UpdateManager/DistUpgradeFetcher.py:222 +msgid "" +"Verifying the upgrade failed. There may be a problem with the network or " +"with the server. " +msgstr "" + +#: ../UpdateManager/DistUpgradeFetcher.py:228 +msgid "Authentication failed" +msgstr "Bigo sa awtentikasyon." + +#: ../UpdateManager/DistUpgradeFetcher.py:229 +msgid "" +"Authenticating the upgrade failed. There may be a problem with the network " +"or with the server. " +msgstr "Bigo sa awtentikasyon. Maaaring may problema sa network o server. " + +#: ../UpdateManager/GtkProgress.py:108 +#, python-format +msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" +msgstr "" + +#: ../UpdateManager/GtkProgress.py:113 +#, python-format +msgid "Downloading file %(current)li of %(total)li" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:206 +msgid "The list of changes is not available" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:212 +msgid "" +"The list of changes is not available yet.\n" +"Please try again later." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:217 +msgid "" +"Failed to download the list of changes. \n" +"Please check your Internet connection." +msgstr "" + +#. Description +#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 +msgid "Important security updates" +msgstr "" + +#. Description +#: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 +msgid "Recommended updates" +msgstr "" + +#. Description +#: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 +msgid "Proposed updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:241 +msgid "Backports" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:242 +msgid "Distribution updates" +msgstr "" + +#. TRANSLATORS: updates from an 'unknown' origin +#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 +msgid "Other updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:478 +#, python-format +msgid "Version %s: \n" +msgstr "Bersyon %s: \n" + +#: ../UpdateManager/UpdateManager.py:539 +msgid "Downloading list of changes..." +msgstr "" + +#: ../UpdateManager/UpdateManager.py:566 +msgid "_Uncheck All" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:572 +msgid "_Check All" +msgstr "" + +#. TRANSLATORS: b stands for Bytes +#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 +#, python-format +msgid "Download size: %s" +msgstr "Laki ng Download: %s" + +#: ../UpdateManager/UpdateManager.py:633 +#, python-format +msgid "You can install %s update" +msgid_plural "You can install %s updates" +msgstr[0] "Maaari kang mag-install ng %s na update" +msgstr[1] "Maaari kang mag-install ng %s na mga updates" + +#: ../UpdateManager/UpdateManager.py:666 +msgid "Please wait, this can take some time." +msgstr "Mangyaring maghintay, matatagalan pa." + +#: ../UpdateManager/UpdateManager.py:668 +msgid "Update is complete" +msgstr "Kumpleto na ang pag-update" + +#: ../UpdateManager/UpdateManager.py:719 +msgid "Checking for updates" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:826 +#, python-format +msgid "From version %(old_version)s to %(new_version)s" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:830 +#, python-format +msgid "Version %s" +msgstr "" + +#. TRANSLATORS: the b stands for Bytes +#: ../UpdateManager/UpdateManager.py:832 +#, python-format +msgid "(Size: %s)" +msgstr "" + +#: ../UpdateManager/UpdateManager.py:843 +msgid "Your distribution is not supported anymore" +msgstr "Ang iyong distribusyon ay hindi na suportado" + +#: ../UpdateManager/UpdateManager.py:844 +msgid "" +"You will not get any further security fixes or critical updates. Upgrade to " +"a later version of Ubuntu Linux. See http://www.ubuntu.com for more " +"information on upgrading." +msgstr "" +"Hindi ka na makakakuha pa ng mga fixes na pangseguridad o kritikal na " +"updates. Mag-upgrade na sa isang mas bagong bersyon ng Ubuntu Linux. " +"Puntahan ang http://www.ubuntu.com para sa marami pang impormasyon tungkol " +"sa upgrading." + +#: ../UpdateManager/UpdateManager.py:863 +#, python-format +msgid "New distribution release '%s' is available" +msgstr "Available na ang bagong distribusyon release '%s'" + +#. we assert a clean cache +#: ../UpdateManager/UpdateManager.py:902 +msgid "Software index is broken" +msgstr "Sira ang software index" + +#: ../UpdateManager/UpdateManager.py:903 +msgid "" +"It is impossible to install or remove any software. Please use the package " +"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix " +"this issue at first." +msgstr "" +"Hindi maaaring mag-install o mag-tanggal ng kahit anong software. Mangyaring " +"gamitin ang manedyer pang-paketeng \"Synaptic\" o patakbuhin ang \"sudo apt-" +"get install -f\" sa isang terminal upang maisaayos muna." + +#. TRANSLATORS: download size is 0 +#: ../UpdateManager/Common/utils.py:33 +msgid "None" +msgstr "" + +#. TRANSLATORS: download size of very small updates +#: ../UpdateManager/Common/utils.py:36 +msgid "1 KB" +msgstr "" + +#. TRANSLATORS: download size of small updates, e.g. "250 KB" +#: ../UpdateManager/Common/utils.py:39 +#, python-format +msgid "%.0f KB" +msgstr "" + +#. TRANSLATORS: download size of updates, e.g. "2.3 MB" +#: ../UpdateManager/Common/utils.py:42 +#, python-format +msgid "%.1f MB" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:1 +msgid "" +"You must check for updates manually\n" +"\n" +"Your system does not check for updates automatically. You can configure this " +"behavior in Software Sources on the Internet Updates tab." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:4 +msgid "Keep your system up-to-date" +msgstr "Panatilihing napapanahon ang iyong sistema" + +#: ../data/glade/UpdateManager.glade.h:5 +msgid "Not all updates can be installed" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:6 +msgid "Starting update manager" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:7 +msgid "Changes" +msgstr "Mga pagbabago" + +#: ../data/glade/UpdateManager.glade.h:8 +msgid "Changes and description of the update" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:9 +msgid "Chec_k" +msgstr "Chec_k" + +#: ../data/glade/UpdateManager.glade.h:10 +msgid "Check the software channels for new updates" +msgstr "Suriin ang mga software channels para sa mga bagong updates" + +#: ../data/glade/UpdateManager.glade.h:11 +msgid "Description" +msgstr "Deskripsiyon" + +#: ../data/glade/UpdateManager.glade.h:12 +msgid "Release Notes" +msgstr "Release Notes" + +#: ../data/glade/UpdateManager.glade.h:13 +msgid "" +"Run a distribution upgrade, to install as many updates as possible. \n" +"\n" +"This can be caused by an uncompleted upgrade, unofficial software packages " +"or by running a development version." +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:16 +msgid "Show progress of single files" +msgstr "Ipakita ang progreso ng bawat files" + +#: ../data/glade/UpdateManager.glade.h:17 +msgid "Software Updates" +msgstr "Software Updates" + +#: ../data/glade/UpdateManager.glade.h:18 +msgid "" +"Software updates correct errors, eliminate security vulnerabilities and " +"provide new features." +msgstr "" +"Itinatama ng software updates ang mga error, tinatanggal ang mga kahinaang " +"pangseguridad at nagbibigay ng mga bagong features." + +#: ../data/glade/UpdateManager.glade.h:19 +msgid "U_pgrade" +msgstr "U_pgrade" + +#: ../data/glade/UpdateManager.glade.h:20 +msgid "Upgrade to the latest version of Ubuntu" +msgstr "Mag-upgrade sa pinakabagong bersiyon ng Ubuntu" + +#: ../data/glade/UpdateManager.glade.h:21 +msgid "_Check" +msgstr "_Check" + +#: ../data/glade/UpdateManager.glade.h:22 +msgid "_Distribution Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:23 +msgid "_Hide this information in the future" +msgstr "_Itago ang impormasyong ito sa hinaharap" + +#: ../data/glade/UpdateManager.glade.h:24 +msgid "_Install Updates" +msgstr "_Install ang mga Updates" + +#: ../data/glade/UpdateManager.glade.h:25 +msgid "_Upgrade" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:26 +msgid "changes" +msgstr "" + +#: ../data/glade/UpdateManager.glade.h:27 +msgid "updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:2 +msgid "Automatic updates" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:3 +msgid "CDROM/DVD" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:4 +msgid "Internet updates" +msgstr "Mga updates mula sa Internet" + +#: ../data/glade/SoftwareProperties.glade.h:5 +msgid "Internet" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:6 +msgid "" +"To improve the user experience of Ubuntu please take part in the " +"popularity contest. If you do so the list of installed software and how " +"often it was used will be collected and sent anonymously to the Ubuntu " +"project on a weekly basis.\n" +"\n" +"The results are used to improve the support for popular applications and to " +"rank applications in the search results." +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:9 +msgid "Add Cdrom" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:10 +msgid "Authentication" +msgstr "Awtentikasyon" + +#: ../data/glade/SoftwareProperties.glade.h:11 +msgid "D_elete downloaded software files:" +msgstr "Tanggalin ang mga na-download nang software files:" + +#: ../data/glade/SoftwareProperties.glade.h:12 +msgid "Download from:" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:13 +msgid "Import the public key from a trusted software provider" +msgstr "Kunin ang public key mula sa pinagkakatiwalaang provider" + +#: ../data/glade/SoftwareProperties.glade.h:14 +msgid "Internet Updates" +msgstr "Mga updates mula sa Internet" + +#: ../data/glade/SoftwareProperties.glade.h:15 +msgid "" +"Only security updates from the official Ubuntu servers will be installed " +"automatically" +msgstr "" +"Pawang mga updates na pangseguridad mula sa mga opisyal na mga Ubuntu " +"servers lamang ang awtomatikong ma-i-install." + +#: ../data/glade/SoftwareProperties.glade.h:16 +msgid "Restore _Defaults" +msgstr "Ibalik_ang_mga_Defaults" + +#: ../data/glade/SoftwareProperties.glade.h:17 +msgid "Restore the default keys of your distribution" +msgstr "Ibalik ang default keys ng inyong distribusiyon" + +#: ../data/glade/SoftwareProperties.glade.h:18 +#: ../data/software-properties.desktop.in.h:2 +msgid "Software Sources" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:19 +msgid "Source code" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:20 +msgid "Statistics" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:21 +msgid "Submit statistical information" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:22 +msgid "Third Party" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:23 +msgid "_Check for updates automatically:" +msgstr "_Awtomatikong i-check para sa mga updates:" + +#: ../data/glade/SoftwareProperties.glade.h:24 +msgid "_Download updates automatically, but do not install them" +msgstr "" + +#: ../data/glade/SoftwareProperties.glade.h:25 +msgid "_Import Key File" +msgstr "_Importahin ang Key File" + +#: ../data/glade/SoftwareProperties.glade.h:26 +msgid "_Install security updates without confirmation" +msgstr "_I-install ang mga updates na pangseguridad ng walang kumpirmasyon" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:1 +msgid "" +"The information about available software is out-of-date\n" +"\n" +"To install software and updates from newly added or changed sources, you " +"have to reload the information about available software.\n" +"\n" +"You need a working internet connection to continue." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:6 +msgid "Comment:" +msgstr "Kumento:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:7 +msgid "Components:" +msgstr "Mga Components:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:8 +msgid "Distribution:" +msgstr "Distribusiyon:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:9 +msgid "Type:" +msgstr "Tipo:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:10 +msgid "URI:" +msgstr "URI:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:11 +msgid "" +"Enter the complete APT line of the repository that you want to add " +"as source\n" +"\n" +"The APT line includes the type, location and components of a repository, for " +"example \"deb http://ftp.debian.org sarge main\"." +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 +msgid "APT line:" +msgstr "Linyang APT:" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:15 +msgid "" +"Binary\n" +"Source" +msgstr "" +"Binaryo\n" +"Batis" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:17 +msgid "Edit Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 +msgid "Scanning CD-ROM" +msgstr "Sinusuri ang CD-ROM" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 +msgid "_Add Source" +msgstr "" + +#: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 +msgid "_Reload" +msgstr "_Reload" + +#: ../data/update-manager.desktop.in.h:1 +msgid "Show and install available updates" +msgstr "Ipakita at i-install ang mga available na updates" + +#: ../data/update-manager.desktop.in.h:2 +msgid "Update Manager" +msgstr "Manedyer pang Update" + +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"Check automatically if a new version of the current distribution is " +"available and offer to upgrade (if possible)." +msgstr "" +"Awtomatikong tumitingin kung may bagong bersiyon na available ang " +"kasalukuyang distribusiyon at mag-mungkahing mag-upgrade (kung posible)." + +#: ../data/update-manager.schemas.in.h:2 +msgid "Check for new distribution releases" +msgstr "Suriin para sa bagong releases pang-distribusiyon" + +#: ../data/update-manager.schemas.in.h:3 +msgid "" +"If automatic checking for updates is disabled, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Remind to reload the channel list" +msgstr "Ipaalala na mag-reload ng listahan ng channel" + +#: ../data/update-manager.schemas.in.h:5 +msgid "Show details of an update" +msgstr "Ipakita ang mga detalye ng isang pag-update" + +#: ../data/update-manager.schemas.in.h:6 +msgid "Stores the size of the update-manager dialog" +msgstr "Inilalagay ang sukat ng update-manager dialog" + +#: ../data/update-manager.schemas.in.h:7 +msgid "" +"Stores the state of the expander that contains the list of changes and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:8 +msgid "The window size" +msgstr "Ang laki ng window" + +#: ../data/software-properties.desktop.in.h:1 +msgid "Configure the sources for installable software and updates" +msgstr "" + +#. ChangelogURI +#: ../data/channels/Ubuntu.info.in.h:4 +#, no-c-format +msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" + +#. Description +#: ../data/channels/Ubuntu.info.in:8 +msgid "Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:13 +msgid "Community maintained" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:17 +msgid "Proprietary drivers for devices" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:19 +msgid "Restricted software" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:25 +msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:59 +msgid "Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:62 +msgid "Canonical supported Open Source software" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:64 +msgid "Community maintained (universe)" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:65 +msgid "Community maintained Open Source software" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:67 +msgid "Non-free drivers" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:68 +msgid "Proprietary drivers for devices " +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:70 +msgid "Restricted software (Multiverse)" +msgstr "" + +#. CompDescriptionLong +#: ../data/channels/Ubuntu.info.in:71 +msgid "Software restricted by copyright or legal issues" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:76 +msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:103 +msgid "Backported updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:110 +msgid "Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:123 +msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:135 +msgid "Ubuntu 5.10 Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:140 +msgid "Ubuntu 5.10 Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:145 +msgid "Ubuntu 5.10 Backports" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:152 +msgid "Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:165 +msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 +msgid "Officially supported" +msgstr "Opisyal na sinusuportahan" + +#. Description +#: ../data/channels/Ubuntu.info.in:177 +msgid "Ubuntu 5.04 Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:182 +msgid "Ubuntu 5.04 Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:187 +msgid "Ubuntu 5.04 Backports" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:193 +msgid "Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:199 +msgid "Community maintained (Universe)" +msgstr "Inaalagaan ng kumunidad (Universe)" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:201 +msgid "Non-free (Multiverse)" +msgstr "Di-malaya (Multiverse)" + +#. Description +#: ../data/channels/Ubuntu.info.in:206 +msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:209 +msgid "No longer officially supported" +msgstr "" + +#. CompDescription +#: ../data/channels/Ubuntu.info.in:211 +msgid "Restricted copyright" +msgstr "Mahigpit na copyright" + +#. Description +#: ../data/channels/Ubuntu.info.in:218 +msgid "Ubuntu 4.10 Security Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:223 +msgid "Ubuntu 4.10 Updates" +msgstr "" + +#. Description +#: ../data/channels/Ubuntu.info.in:228 +msgid "Ubuntu 4.10 Backports" +msgstr "" + +#. ChangelogURI +#: ../data/channels/Debian.info.in.h:4 +#, no-c-format +msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" + +#. Description +#: ../data/channels/Debian.info.in:6 +msgid "Debian 3.1 \"Sarge\"" +msgstr "Debian 3.1 \"Sarge\"" + +#. BaseURI +#: ../data/channels/Debian.info.in:19 +msgid "http://security.debian.org/" +msgstr "http://security.debian.org/" + +#. Description +#: ../data/channels/Debian.info.in:20 +msgid "Debian 3.1 \"Sarge\" Security Updates" +msgstr "Mga Updates Pang-seguridad sa Debian 3.1 \"Sarge\"" + +#. Description +#: ../data/channels/Debian.info.in:34 +msgid "Debian \"Etch\" (testing)" +msgstr "Debian \"Etch\" (testing)" + +#. BaseURI +#: ../data/channels/Debian.info.in:47 +msgid "http://http.us.debian.org/debian/" +msgstr "http://http.us.debian.org/debian/" + +#. Description +#: ../data/channels/Debian.info.in:48 +msgid "Debian \"Sid\" (unstable)" +msgstr "Debian \"Sid\" (unstable)" + +#. CompDescription +#: ../data/channels/Debian.info.in:54 +msgid "DFSG-compatible Software with Non-Free Dependencies" +msgstr "Software na DFSG-compatible na may Di-Malayang mga Dependensiya" + +#. CompDescription +#: ../data/channels/Debian.info.in:57 +msgid "Non-DFSG-compatible Software" +msgstr "Software na Di-DFSG-compatible" diff --git a/po/tr.po b/po/tr.po index abc76c88..68cd8a35 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" -"PO-Revision-Date: 2006-10-16 04:17+0000\n" -"Last-Translator: Kayra Akman \n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" +"PO-Revision-Date: 2006-10-21 20:58+0000\n" +"Last-Translator: Atilla Karaman \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -157,20 +157,20 @@ msgstr "" "Sisteminiz bu yazılım ile düzeltilemeyen bozuk paketler içeriyor. Devam " "etmeden önce lütfen bunları synaptic veya apt-get kullanarak düzeltin." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Gerekli bilgi-paketleri güncelleştirilemiyor" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Gerekli bir paketin kaldırılması gerekmekte" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Güncelleme hesaplanamadı" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -183,11 +183,11 @@ msgstr "" "upgrade/ konumundaki dosyaları da ekleyin." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Bazı paketlerin doğrulamasında hata" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -197,23 +197,23 @@ msgstr "" "tekrar deneyebilirsiniz. Doğrulanamamış paketlerin listesi için aşağıya " "bakınız." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "'%s' yüklenemiyor" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "Gerekli bir paket yüklenemedi. Lütfen bunu bir hata olarak bildirin. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Meta-paket kestirilemedi" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 #, fuzzy msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" @@ -292,7 +292,7 @@ msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeControler.py:267 msgid "Generate default sources?" -msgstr "Öntanımlı depolar kaydedilsin mi??" +msgstr "Öntanımlı depolar kaydedilsin mi?" #: ../DistUpgrade/DistUpgradeControler.py:268 #, python-format @@ -333,11 +333,11 @@ msgstr "" "Yükseltmenin ardından bu girdileri 'software-properties' aracını ya da " "synaptic'i kullanarak tekrar etkinleştirebilirsiniz." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "Güncelleştirme sırasında hata" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -345,11 +345,11 @@ msgstr "" "Güncelleştirme sırasında bir hata oluştu. Bu genellikle bir ağ sorunudur, " "lütfen ağ bağlantınızı kontrol edin ve yeniden deneyin." -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Yeterince boş disk alanı yok" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -361,15 +361,15 @@ msgstr "" "geçici paketlerini kaldırın." #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Yükseltmeyi başlatmak istiyor musunuz?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Yükseltmeler kurulamadı" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -383,11 +383,11 @@ msgstr "" "Lütfen 'update-manager' paketi için bu hatayı bildirin. Hata bildirimine /" "var/log/dist-upgrade/ konumundaki dosyaları da ekleyin." -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Yükseltmeler indirilemedi" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -395,11 +395,11 @@ msgstr "" "Yükseltme şimdi iptal edilecek. Lütfen internet bağlantınızı veya kurulum " "ortamınızı kontrol edin ve yeniden deneyin. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "Bazı uygulamalar için destek sona erdi" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -408,23 +408,23 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "Kullanılmayan paketler kaldırılsın mı?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "Bu Adımı _Atla" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "_Kaldır" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "İşlem sırasında hata oluştu" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -433,42 +433,42 @@ msgstr "" "bakın. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "Orijinal sistem durumuna geri dönülüyor" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Paket yöneticisi denetleniyor" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" -msgstr "" +msgstr "Yükseltme işlemine hazırlanma başarısız oldu" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Depo bilgileri güncelleniyor" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Geçersiz paket bilgisi" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -483,19 +483,19 @@ msgstr "" "hatayı bildirin. Hata bildiriminize /var/log/dist-upgrade/ konumundaki " "dosyaları da ekleyin." -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Onay isteniyor" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Yükseltiliyor" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Kullanılmayan yazılımlar aranıyor" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Sistem yükseltmesi tamamlandı." @@ -562,16 +562,18 @@ msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" +"Eğer bu yapılandırma dosyasını yeni sürümüyle değiştirecekseniz bu dosyaya " +"yapmış olduğunuz değişiklikleri kaybedeceksiniz." #: ../DistUpgrade/DistUpgradeViewGtk.py:217 msgid "The 'diff' command was not found" msgstr "'diff' komutu bulunamadı" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Giderilemez bir hata oluştu" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -585,25 +587,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paket kaldırılacak." -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d yeni paket kurulacak." -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paket yükseltilecek." -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -614,7 +616,7 @@ msgstr "" "\n" "Toplam %s indirmeniz gerekmektedir. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -622,18 +624,18 @@ msgstr "" "Yükseltmeyi indirmek ve kurmak saatlerce sürebilir ve daha sonra iptal " "edilemez." -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" "Veri kaybını önlemek için açık olan tüm uygulamaları ve belgeleri kapatın." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Sisteminiz güncel" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." @@ -641,17 +643,17 @@ msgstr "" "Sisteminiz için olası herhangi bir yükseltme yok. Yükseltme işlemi şimdi " "iptal edilecek." -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "Şunu kaldır: %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "%s'i kur" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "%s'i yükselt" @@ -684,12 +686,14 @@ msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" msgstr "" +"Bu indirme işlemi 1Mbit DSL bağlantısıyla yaklaşık %s ve 56k modemle ise " +"yaklaşık %s sürecektir." -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Yeniden başlatma gerekiyor" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -763,11 +767,11 @@ msgstr "Uçbirim" #: ../DistUpgrade/DistUpgrade.glade.h:16 msgid "_Cancel Upgrade" -msgstr "" +msgstr "_Yükseltmeyi İptal Et" #: ../DistUpgrade/DistUpgrade.glade.h:17 msgid "_Continue" -msgstr "" +msgstr "_Devam" #: ../DistUpgrade/DistUpgrade.glade.h:18 msgid "_Keep" @@ -792,7 +796,7 @@ msgstr "Yükseltmeye _Devam Et" #: ../DistUpgrade/DistUpgrade.glade.h:23 msgid "_Start Upgrade" -msgstr "" +msgstr "_Yükseltmeye Başla" #: ../UpdateManager/DistUpgradeFetcher.py:68 msgid "Could not find the release notes" @@ -845,7 +849,7 @@ msgstr "Getirme başarısız" #: ../UpdateManager/DistUpgradeFetcher.py:209 msgid "Fetching the upgrade failed. There may be a network problem. " -msgstr "Yükseltmeyi indirme başarısız. Ağ sorunu olabilir " +msgstr "Yükseltmeyi getirme başarısız. Ağ sorunu olabilir " #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" @@ -898,12 +902,16 @@ msgid "" "The list of changes is not available yet.\n" "Please try again later." msgstr "" +"Değişiklik listesi henüz mevcut değil.\n" +"Lütfen daha sonra tekrar deneyiniz." #: ../UpdateManager/UpdateManager.py:217 msgid "" "Failed to download the list of changes. \n" "Please check your Internet connection." msgstr "" +"Değişiklik listesini indirme başarısız oldu. \n" +"Lütfen İnternet bağlantınızı kontrol edin." #. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 @@ -926,7 +934,7 @@ msgstr "Backport edilmiş yazılımlar" #: ../UpdateManager/UpdateManager.py:242 msgid "Distribution updates" -msgstr "" +msgstr "Dağıtım güncelleştirmeleri" #. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 @@ -940,7 +948,7 @@ msgstr "Sürüm %s: \n" #: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." -msgstr "" +msgstr "Değişiklik listesi indiriliyor..." #: ../UpdateManager/UpdateManager.py:566 msgid "_Uncheck All" @@ -977,7 +985,7 @@ msgstr "Güncellemeler denetleniyor" #: ../UpdateManager/UpdateManager.py:826 #, python-format msgid "From version %(old_version)s to %(new_version)s" -msgstr "" +msgstr "%(old_version)s sürümünden %(new_version)s sürümüne" #: ../UpdateManager/UpdateManager.py:830 #, python-format @@ -1054,6 +1062,11 @@ msgid "" "Your system does not check for updates automatically. You can configure this " "behavior in Software Sources on the Internet Updates tab." msgstr "" +"Güncelleştirmeleri elle kontrol etmelisiniz\n" +"\n" +"Sisteminiz güncelleştirmeleri otomatik olarak kontrol etmiyor. Bunu " +"İnternet Güncelleştirmeleri sekmesindeki Yazılım Kaynaklarından yapılandırabilirsiniz." #: ../data/glade/UpdateManager.glade.h:4 msgid "Keep your system up-to-date" @@ -1121,7 +1134,7 @@ msgid "" "provide new features." msgstr "" "Yazılım güncellemeleri hataları düzeltir, güvenlik açıklarını giderir ve " -"yeni özellikler katar." +"yeni özellikler sunar." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1196,7 +1209,7 @@ msgstr "" #: ../data/glade/SoftwareProperties.glade.h:9 msgid "Add Cdrom" -msgstr "" +msgstr "Cdrom ekle" #: ../data/glade/SoftwareProperties.glade.h:10 msgid "Authentication" @@ -1370,6 +1383,9 @@ msgid "" "channel list manually. This option allows to hide the reminder shown in this " "case." msgstr "" +"Eğer otomatik güncelleştirme denetimi devre dışı bırakılmışsa, kanal " +"listesini elle tekrar yüklemelisiniz. Bu seçenek bu durumda gösterilen " +"anımsatıcıyı saklamanıza olanak sağlar." #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" @@ -1436,7 +1452,7 @@ msgstr "Ubuntu 6.06 LTS 'Dapper Drake'" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" -msgstr "" +msgstr "Canonical Açık Kaynak yazılımı destekledi" #. CompDescription #: ../data/channels/Ubuntu.info.in:64 @@ -1466,7 +1482,7 @@ msgstr "Kısıtlı yazılımlar (Multiverse)" #. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" -msgstr "" +msgstr "Yazılım telif haklarıyla veya yasal sorunlar sebebiyle kısıtlanmıştır" #. Description #: ../data/channels/Ubuntu.info.in:76 @@ -1496,7 +1512,7 @@ msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" -msgstr "Ubuntu 5.10 Güncelleştirmeleri" +msgstr "Ubuntu 5.10 Güvenlik Güncelleştirmeleri" #. Description #: ../data/channels/Ubuntu.info.in:145 @@ -1597,7 +1613,7 @@ msgstr "http://security.debian.org/" #. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" -msgstr "Debian 3.1 \"Sarge\" Güvenlik Güncelleştirmeleri" +msgstr "Debian 3.1 \"Sarge\" Güvenlik Güncellemeleri" #. Description #: ../data/channels/Debian.info.in:34 @@ -1654,7 +1670,7 @@ msgstr "DFSG Uyumlu Olmayan Yazılım" #, fuzzy #~ msgid "Ubuntu 6.06 LTS" -#~ msgstr "Ubuntu 6.06 Güvenlik Güncelleştirmeleri" +#~ msgstr "Ubuntu 6.06 LTS" #~ msgid "Ubuntu 6.06 LTS Security Updates" #~ msgstr "Ubuntu 6.06 LTS Güvenlik Güncelleştirmeleri" diff --git a/po/uk.po b/po/uk.po index 56d9a7fc..07e3d95f 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Vadim Abramchuck \n" "Language-Team: Ukrainian \n" @@ -155,21 +155,21 @@ msgstr "" "Ваша система містить пошкоджені пакунки, котрі не можуть бути виправлені " "цією програмою. Скористайтесь перш програмами synaptic чи apt-get." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Не можливо поновити необхідні meta-пакунки" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 #, fuzzy msgid "A essential package would have to be removed" msgstr "Це призведе до видалення !essential! пакунку системи" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Не можливо розрахувати поновлення" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -178,11 +178,11 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Помилка підписів в деяких пакунках" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -192,12 +192,12 @@ msgstr "" "мережі. Можливо, Вам захочеться спробувати пізніше. Список не перевірених " "пакунків нижче." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Не можливо встановити '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " @@ -205,11 +205,11 @@ msgstr "" "Неможливо встановити необхідний пакунок. Сповістіть про це як про помилку. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Не можливо підібрати meta-пакунок" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -301,22 +301,22 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 #, fuzzy msgid "Error during update" msgstr "Помилка підчас поновлення" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "Недостатньо місця на диску" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -325,15 +325,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "Бажаєте почати оновлення системи?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "Неможливо провести оновлення системи" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -342,11 +342,11 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "Неможливо завантажити пакунки для оновлення системи" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -354,11 +354,11 @@ msgstr "" "Оновлення системи щойно перервано. Будь ласка, перевірте з'єднання з " "Інтернетом або зовнішній носії та спробуйте знов. " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -367,24 +367,24 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 #, fuzzy msgid "Remove obsolete packages?" msgstr "Видалити непотрібні пакунки?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "Пропустити цей крок" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "Видалити" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " @@ -393,42 +393,42 @@ msgstr "" "нижче. " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "Перевірка програми управління пакунками" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "Отримання інформації про репозиторій" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "Невірна інформація про пакунок" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -438,19 +438,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "Запит підтвердження" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "Процес оновлення" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "Пошук програм, що не використовуються" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "Оновлення системи завершено." @@ -517,11 +517,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Команда 'diff' не знайдена" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "Виникла невиправна помилка" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -531,7 +531,7 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." @@ -539,7 +539,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." @@ -547,7 +547,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." @@ -555,7 +555,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -563,40 +563,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "Для запобігання втраті інформації закрийте усі програми та документи." #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Ваша система оновлена!" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, fuzzy, python-format msgid "Remove %s" msgstr "Видалити %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, fuzzy, python-format msgid "Install %s" msgstr "Встановити %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "Оновити %s" @@ -630,11 +630,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "Необхідно перезавантажити систему" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/update-manager.pot b/po/update-manager.pot index 60c4647e..c9a466e3 100644 --- a/po/update-manager.pot +++ b/po/update-manager.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -152,20 +152,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,34 +174,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -291,21 +291,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -314,15 +314,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -331,21 +331,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -354,65 +354,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -422,19 +422,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -500,11 +500,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -514,28 +514,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -543,39 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -609,11 +609,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/ur.po b/po/ur.po index 3ed34bd9..371d8612 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-05-19 02:46+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -153,20 +153,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -175,34 +175,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -292,21 +292,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,65 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -423,19 +423,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -501,11 +501,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -515,28 +515,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -544,39 +544,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -610,11 +610,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/urd.po b/po/urd.po index bbddfb97..4062dfce 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-05-07 01:53+0000\n" "Last-Translator: Hameed محمد حمید \n" "Language-Team: Urdu \n" @@ -153,20 +153,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -175,34 +175,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -292,21 +292,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,65 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -423,19 +423,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -501,11 +501,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -515,28 +515,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -544,39 +544,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -610,11 +610,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/vi.po b/po/vi.po index 7111675a..1ed692f7 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:17+0000\n" "Last-Translator: Tran The Trung \n" "Language-Team: Vietnamese \n" @@ -156,20 +156,20 @@ msgstr "" "Hệ thống của bạn chứa các gói tin bị lỗi và không thể sửa được bằng phần mềm " "này. Hãy sửa chúng dùng các gói synaptic hoặc apt-get trước khi tiếp tục." -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "Không thể nâng cấp các gói gốc được yêu cầu" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "Một gói quan trọng cần phải bị gỡ bỏ" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "Không thể tính được dung lượng cần nâng cấp" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 #, fuzzy msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" @@ -179,11 +179,11 @@ msgid "" msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "Gặp lỗi khi đang xác thực một số gói" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -193,12 +193,12 @@ msgstr "" "vui lòng thử lại sau. Bên dưới là danh sách các gói chưa được xác thực đầy " "đủ." -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "Không thể cài đặt '%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 #, fuzzy msgid "" "It was impossible to install a required package. Please report this as a " @@ -206,11 +206,11 @@ msgid "" msgstr "Không thể cài đặt được gói yêu cầu. Vui lòng thông báo lỗi này. " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "Không thể đoán được gói gốc" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -300,22 +300,22 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 #, fuzzy msgid "Error during update" msgstr "Gặp lỗi khi gỡ bỏ khóa" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -324,15 +324,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -341,21 +341,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -364,52 +364,52 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 #, fuzzy msgid "Checking package manager" msgstr "Một bộ quản lý gói khác đang chạy" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "Đang tải các thay đổi" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -417,15 +417,15 @@ msgid "" "upgrade/ in the bugreport." msgstr "Bạn đã chọn một khóa không thể gỡ bỏ. Vui lòng thông báo lỗi này." -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -435,20 +435,20 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 #, fuzzy msgid "Upgrading" msgstr "Nâng cấp xong" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -515,11 +515,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -529,25 +529,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -555,40 +555,40 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 #, fuzzy msgid "Your system is up-to-date" msgstr "Hệ thống bạn toàn mới nhất." -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -622,11 +622,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/xh.po b/po/xh.po index 7e59725b..a578fb97 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-05 20:45+0000\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" @@ -153,20 +153,20 @@ msgid "" "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -175,34 +175,34 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -292,21 +292,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -315,15 +315,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -332,21 +332,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -355,65 +355,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -423,19 +423,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "" @@ -501,11 +501,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -515,28 +515,28 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -544,39 +544,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -610,11 +610,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 0ff4ebda..f672d6e5 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:00+0000\n" "Last-Translator: catinsnow \n" "Language-Team: zh_CN \n" @@ -156,20 +156,20 @@ msgstr "" "你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者" "apt-get修复它们。" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "不能升级要求的元包" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "一个必要的软件包会被删除" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "无法计算升级" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -182,11 +182,11 @@ msgstr "" "件包含在错误报告中。" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "在认证一些软件包时出错" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -195,23 +195,23 @@ msgstr "" "无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软" "件包的列表。" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "无法安装'%s'" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "无法安装要求的软件包。请汇报这个bug。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "无法猜出元包" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -319,21 +319,21 @@ msgstr "" "sources.list中的一些第三方源被禁用。你可以在升级后用\"软件属性\"工具或新立得" "包管理器来重新启用它们." -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "升级时出错" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "升级时候出错。这通常是一些网络问题,请检查你的网络连接后再试。" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "磁盘空间不足" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -344,15 +344,15 @@ msgstr "" "get clean'命令来删除之前安装的临时软件包。" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "你要开始升级么?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "无法安装升级" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -366,21 +366,21 @@ msgstr "" "请报告本'update-manger'包的bug,并在报告中包含/var/log/disg-upgrade/中的文" "件。" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "无法下载升级包" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升级现在取消。请检查你的网络连接活重新放置安装媒体后再试。 " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "一些应用程序支持终止" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 #, fuzzy msgid "" "Canonical Ltd. no longer provides support for the following software " @@ -393,51 +393,51 @@ msgstr "" "\n" "如果你没有启用'社区维护'源,下一步这些包将被建议移除." -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "删除陈旧的软件包?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "跳过这个步骤(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "删除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "确认时出错" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "在清理时发生问题。更多信息请查看以下消息。 " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "正在恢复原始系统状态" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "正在检查软件包管理器" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 #, fuzzy msgid "Preparing the upgrade failed" msgstr "正在准备升级" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 #, fuzzy msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " @@ -445,15 +445,15 @@ msgid "" "upgrade/ in the bugreport." msgstr "在计算升级时遇到一个无法解决的问题。请汇报这个bug。" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "更新源的信息" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "无效的包信息" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -467,19 +467,19 @@ msgstr "" "这表示严重的错误,请报告这个'update-manager'包的bug,并在报告中包含/var/log/" "dist-upgrade/中的文件。" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "请求确认" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "正在更新" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "寻找陈旧的软件包" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "系统更新完毕" @@ -549,11 +549,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "外部命令“diff”没有找到" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "出现致命错误" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 #, fuzzy msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." @@ -567,25 +567,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d 个软件包将被删除。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d 个新的软件包将被安装。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d 个软件包将被升级" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -596,39 +596,39 @@ msgstr "" "\n" "你需要下载了总共 %s。 " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "下载及升级会持续几个小时,且不可取消。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "关闭所有打开的程序和文档以防止数据丢失。" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "您的系统已为最新" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "你的系统没有可用升级。升级被取消。" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "删除%s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "安装%s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "升级%s" @@ -662,11 +662,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "需要重启" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "升级已经完成并需要重启。你要现在重启么?" diff --git a/po/zh_HK.po b/po/zh_HK.po index 983ec483..481d2e19 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (Hong Kong) \n" @@ -152,20 +152,20 @@ msgstr "" "系統裝了不完整的套件,本程式無法將它們修復。請先用 synaptic 或 apt-get 來修復" "套件。" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "無法計算升級過程" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -174,11 +174,11 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -187,23 +187,23 @@ msgstr "" "有些套件不能認證,這可能是短暫的網絡問題;你可以稍後再試。以下為沒有認證的套" "件。" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "無法安裝「%s」" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "有必須的套件無法安裝,請匯報問題。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -293,21 +293,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "更新時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "磁碟空間不足" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -316,15 +316,15 @@ msgid "" msgstr "" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "是否要開始升級?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "無法安裝升級" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -333,21 +333,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "無法下載升級所需的套件" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升級現正中止。請檢查網路連線是否正常,然後再試一次。 " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -356,65 +356,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "是否移除過時的套件?" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "略過這步驟(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "移除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "正在檢查套件管理程式" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "正在更新套件庫資料" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "套件資料無效" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -424,19 +424,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "升級中" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "正在搜尋過時的軟件" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "已完成系統升級。" @@ -503,11 +503,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "找不到「diff」指令" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -517,25 +517,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -543,39 +543,39 @@ msgid "" "You have to download a total of %s. " msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "系統已經在最新狀態" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "" @@ -609,11 +609,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 68e961d4..00509cba 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: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-16 20:32+0200\n" +"POT-Creation-Date: 2006-10-23 14:26+0200\n" "PO-Revision-Date: 2006-10-16 04:15+0000\n" "Last-Translator: SOC Ho \n" "Language-Team: Chinese (Taiwan) \n" @@ -148,20 +148,20 @@ msgstr "" "您的系統有安裝不完整的套件,而本程式無法將它們修正。在進行前請先使用 " "synaptic 或 apt-get 來修恢它們。" -#: ../DistUpgrade/DistUpgradeCache.py:213 +#: ../DistUpgrade/DistUpgradeCache.py:238 msgid "Can't upgrade required meta-packages" msgstr "無法升級須要的元套件 (meta-package)" -#: ../DistUpgrade/DistUpgradeCache.py:217 +#: ../DistUpgrade/DistUpgradeCache.py:242 msgid "A essential package would have to be removed" msgstr "將會移除的核心套件" #. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:220 +#: ../DistUpgrade/DistUpgradeCache.py:245 msgid "Could not calculate the upgrade" msgstr "無法計算升級" -#: ../DistUpgrade/DistUpgradeCache.py:221 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -170,11 +170,11 @@ msgid "" msgstr "" #. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:280 msgid "Error authenticating some packages" msgstr "認證一些套件時發生錯誤" -#: ../DistUpgrade/DistUpgradeCache.py:247 +#: ../DistUpgrade/DistUpgradeCache.py:281 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -183,23 +183,23 @@ msgstr "" "一些套件不能認證,這可能是由於短暫的網路問題;您可以稍後再試。以下為沒有認證" "的套件。" -#: ../DistUpgrade/DistUpgradeCache.py:312 +#: ../DistUpgrade/DistUpgradeCache.py:346 #, python-format msgid "Can't install '%s'" msgstr "無法安裝‘%s’" -#: ../DistUpgrade/DistUpgradeCache.py:313 +#: ../DistUpgrade/DistUpgradeCache.py:347 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "無法安裝須要的套件,請匯報問題。 " #. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:320 +#: ../DistUpgrade/DistUpgradeCache.py:354 msgid "Can't guess meta-package" msgstr "無法估計元套件 (meta-package)" -#: ../DistUpgrade/DistUpgradeCache.py:321 +#: ../DistUpgrade/DistUpgradeCache.py:355 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -303,21 +303,21 @@ msgid "" "synaptic." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:363 +#: ../DistUpgrade/DistUpgradeControler.py:364 msgid "Error during update" msgstr "更新時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:365 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "更新時發生錯誤。這可能是某些網路問題,試檢查網路連線及再試。" -#: ../DistUpgrade/DistUpgradeControler.py:373 +#: ../DistUpgrade/DistUpgradeControler.py:374 msgid "Not enough free disk space" msgstr "磁碟空間不足" -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:375 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " @@ -328,15 +328,15 @@ msgstr "" "clean'來移除先前安裝套件時的暫存檔。" #. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:445 +#: ../DistUpgrade/DistUpgradeControler.py:447 msgid "Do you want to start the upgrade?" msgstr "是否要開始升級?" -#: ../DistUpgrade/DistUpgradeControler.py:465 +#: ../DistUpgrade/DistUpgradeControler.py:468 msgid "Could not install the upgrades" msgstr "無法安裝升級" -#: ../DistUpgrade/DistUpgradeControler.py:466 +#: ../DistUpgrade/DistUpgradeControler.py:469 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -345,21 +345,21 @@ msgid "" "files in /var/log/dist-upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:484 +#: ../DistUpgrade/DistUpgradeControler.py:487 msgid "Could not download the upgrades" msgstr "無法下載升級套件" -#: ../DistUpgrade/DistUpgradeControler.py:485 +#: ../DistUpgrade/DistUpgradeControler.py:488 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " msgstr "升級現正中止。請檢查網路連線是否正常及再試 " -#: ../DistUpgrade/DistUpgradeControler.py:521 +#: ../DistUpgrade/DistUpgradeControler.py:524 msgid "Support for some applications ended" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:522 +#: ../DistUpgrade/DistUpgradeControler.py:525 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -368,65 +368,65 @@ msgid "" "packages will be suggested for removal in the next step." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:557 +#: ../DistUpgrade/DistUpgradeControler.py:560 msgid "Remove obsolete packages?" msgstr "移除不再使用的套件" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Skip This Step" msgstr "略過這步驟(_S)" -#: ../DistUpgrade/DistUpgradeControler.py:558 +#: ../DistUpgrade/DistUpgradeControler.py:561 msgid "_Remove" msgstr "移除(_R)" -#: ../DistUpgrade/DistUpgradeControler.py:568 +#: ../DistUpgrade/DistUpgradeControler.py:572 msgid "Error during commit" msgstr "提交時發生錯誤" -#: ../DistUpgrade/DistUpgradeControler.py:569 +#: ../DistUpgrade/DistUpgradeControler.py:573 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "在清理時發生一些問題。請參閱以下訊息以取得更多資訊。 " #. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:581 +#: ../DistUpgrade/DistUpgradeControler.py:585 msgid "Restoring original system state" msgstr "回覆原有系統狀態" -#: ../DistUpgrade/DistUpgradeControler.py:637 +#: ../DistUpgrade/DistUpgradeControler.py:641 #, python-format msgid "Fetching backport of '%s'" msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:672 -#: ../DistUpgrade/DistUpgradeControler.py:714 +#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:719 msgid "Checking package manager" msgstr "正在檢查套件管理程式" -#: ../DistUpgrade/DistUpgradeControler.py:676 +#: ../DistUpgrade/DistUpgradeControler.py:681 msgid "Preparing the upgrade failed" msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:677 +#: ../DistUpgrade/DistUpgradeControler.py:682 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" "upgrade/ in the bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:700 +#: ../DistUpgrade/DistUpgradeControler.py:705 msgid "Updating repository information" msgstr "正在更新套件庫資料" -#: ../DistUpgrade/DistUpgradeControler.py:725 +#: ../DistUpgrade/DistUpgradeControler.py:730 msgid "Invalid package information" msgstr "無效的套件資訊" -#: ../DistUpgrade/DistUpgradeControler.py:726 +#: ../DistUpgrade/DistUpgradeControler.py:731 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -436,19 +436,19 @@ msgid "" "bugreport." msgstr "" -#: ../DistUpgrade/DistUpgradeControler.py:738 +#: ../DistUpgrade/DistUpgradeControler.py:743 msgid "Asking for confirmation" msgstr "詢問以確認" -#: ../DistUpgrade/DistUpgradeControler.py:742 +#: ../DistUpgrade/DistUpgradeControler.py:747 msgid "Upgrading" msgstr "升級中" -#: ../DistUpgrade/DistUpgradeControler.py:749 +#: ../DistUpgrade/DistUpgradeControler.py:754 msgid "Searching for obsolete software" msgstr "尋搜不再使用的套件" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:759 msgid "System upgrade is complete." msgstr "系統升級完成。" @@ -514,11 +514,11 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "找不到‘diff’指令" -#: ../DistUpgrade/DistUpgradeViewGtk.py:365 +#: ../DistUpgrade/DistUpgradeViewGtk.py:368 msgid "A fatal error occured" msgstr "發生嚴重錯誤" -#: ../DistUpgrade/DistUpgradeViewGtk.py:366 +#: ../DistUpgrade/DistUpgradeViewGtk.py:369 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " @@ -528,25 +528,25 @@ msgstr "" #. FIXME: make those two seperate lines to make it clear #. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:501 +#: ../DistUpgrade/DistUpgradeViewGtk.py:504 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:506 +#: ../DistUpgrade/DistUpgradeViewGtk.py:509 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:512 +#: ../DistUpgrade/DistUpgradeViewGtk.py:515 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:517 +#: ../DistUpgrade/DistUpgradeViewGtk.py:520 #, python-format msgid "" "\n" @@ -557,39 +557,39 @@ msgstr "" "\n" "你必須下載全部的%s。 " -#: ../DistUpgrade/DistUpgradeViewGtk.py:523 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:529 msgid "To prevent data loss close all open applications and documents." msgstr "避免遺失請關閉所有已開啟的程式及文件。" #. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:532 +#: ../DistUpgrade/DistUpgradeViewGtk.py:535 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "系統已經在最新狀態" -#: ../DistUpgrade/DistUpgradeViewGtk.py:533 +#: ../DistUpgrade/DistUpgradeViewGtk.py:536 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" -#: ../DistUpgrade/DistUpgradeViewGtk.py:549 +#: ../DistUpgrade/DistUpgradeViewGtk.py:552 #, python-format msgid "Remove %s" msgstr "移除 %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:551 +#: ../DistUpgrade/DistUpgradeViewGtk.py:554 #, python-format msgid "Install %s" msgstr "安裝 %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:553 +#: ../DistUpgrade/DistUpgradeViewGtk.py:556 #, python-format msgid "Upgrade %s" msgstr "升級 %s" @@ -623,11 +623,11 @@ msgid "" "with a 56k modem" msgstr "" -#: ../DistUpgrade/DistUpgradeView.py:109 +#: ../DistUpgrade/DistUpgradeView.py:111 msgid "Reboot required" msgstr "須要重新開機" -#: ../DistUpgrade/DistUpgradeView.py:110 +#: ../DistUpgrade/DistUpgradeView.py:112 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "升級已經完成及須要重新啟動。現在要重新啟動嗎?" -- cgit v1.2.3 From 7c53126f73135715ac90bc5d6e2759d52de433fd Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 23 Oct 2006 16:51:05 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - comment out old cdrom sources (causes trouble with the sysvinit<->upstart upgrade because sysinit is still essential) --- DistUpgrade/Changelog | 3 +++ DistUpgrade/DistUpgradeControler.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index a13db18f..c374ddd0 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,9 +1,12 @@ +2006-10-21: + - comment out old cdrom sources 2006-10-21: - fix incorrect arguments in fixup logging (lp: #67311) - more error logging - fix upgrade problems for people with unofficial compiz repositories (lp: #58424) - rosetta i18n updates + - uploaded 2006-10-17: - ensure bzr, tomboy and xserver-xorg-input-* are properly upgraded diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index a968cdb8..0136ce68 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -202,7 +202,7 @@ class DistUpgradeControler(object): # we disable breezy cdrom sources to make sure that demoted # packages are removed - if entry.uri.startswith("cdrom:") and entry.dist == "breezy": + if entry.uri.startswith("cdrom:") and entry.dist == self.toDist: entry.disabled = True continue # ignore cdrom sources otherwise -- cgit v1.2.3 From fd13bb39c74b7c184e65adfaffc16c10b2bc3bf1 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 23 Oct 2006 16:57:46 +0200 Subject: * DistUpgrade/DistUpgradeControler.py: - disable "fromDist" cdrom sources --- DistUpgrade/DistUpgradeControler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index 0136ce68..4e76a65d 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -202,7 +202,7 @@ class DistUpgradeControler(object): # we disable breezy cdrom sources to make sure that demoted # packages are removed - if entry.uri.startswith("cdrom:") and entry.dist == self.toDist: + if entry.uri.startswith("cdrom:") and entry.dist == self.fromDist: entry.disabled = True continue # ignore cdrom sources otherwise -- cgit v1.2.3 From 647f3d3adde8815d2d6acaeda5dd49a2d071c25d Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 23 Oct 2006 17:15:39 +0200 Subject: * utils/demoted.cfg: - updated to current edgy --- DistUpgrade/Changelog | 1 + utils/demoted.cfg | 105 +++++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 104 insertions(+), 2 deletions(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index c374ddd0..bea2b932 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,5 +1,6 @@ 2006-10-21: - comment out old cdrom sources + - demotions updated 2006-10-21: - fix incorrect arguments in fixup logging (lp: #67311) - more error logging diff --git a/utils/demoted.cfg b/utils/demoted.cfg index c619ea69..1d271855 100644 --- a/utils/demoted.cfg +++ b/utils/demoted.cfg @@ -1,6 +1,9 @@ # demoted packages blender +bluez-hcidump bluez-pcmcia-support +console-common +console-data courier-authdaemon courier-base courier-doc @@ -9,15 +12,62 @@ courier-imap-ssl courier-pop courier-pop-ssl courier-ssl +cupsys-driver-gimpprint +dh-consoledata +doc-debian +expat +foomatic-db-gimp-print +foomatic-db-gutenprint ftgl-dev +g++-3.4 +g++-4.0 +gok +gok-doc +gtk2-engines-clearlooks +gtk2-engines-crux +gtk2-engines-highcontrast +gtk2-engines-industrial +gtk2-engines-lighthouseblue +gtk2-engines-mist +gtk2-engines-pixbuf +gtk2-engines-redmond95 +gtk2-engines-smooth +gtk2-engines-thinice +heimdal-dev +ia32-libs-gtk +ia32-libs-kde +ia32-libs-openoffice.org +idle-python2.4 +ijsgimpprint +ijsgutenprint +installation-guide-hppa +irssi-text +kde-style-lipstik +klaptopdaemon +kmplayer-doc lam4-dev lam4c2 +libaltlinuxhyph-dev +libasn1-6-heimdal +libcompfaceg1 +libcompfaceg1-dev +libdvdnav-dev +libdvdnav4 +libdvdread3 libgd-gd2-noxpm-perl -libgmime2.1 -libgmime2.1-cil +libgnujaxp-java +libgnujaxp-java-doc +libgnujaxp-jni libgnutls12 +libgssapi4-heimdal +libhdb7-heimdal +libkadm5clnt4-heimdal +libkadm5srv7-heimdal +libkafs0-heimdal +libkrb5-17-heimdal libmpich1.0-dev libmpich1.0c2 +libmythes0 libnetcdf++3 libnetcdf3 libpgtcl-dev @@ -25,18 +75,69 @@ libpgtcl1.5 libreiserfs0.3-0 libreiserfs0.3-dbg libreiserfs0.3-dev +libroken16-heimdal +libstdc++6-4.0-dbg +libstdc++6-4.0-dev +libstdc++6-4.0-doc +libstdc++6-dbg +libstdc++6-dev +libsyck0-dev +libtasn1-2 +libtasn1-2-dev +libtest-builder-tester-perl libunicode-string-perl libxaw6 libxaw6-dbg +libxine-main1 +memtester +menu-xdg +mgetty +mgetty-fax +mklibs-copy mono-classlib-2.0 +mozilla-firefox +mozilla-firefox-locale-eu +mozilla-firefox-locale-lt +mozilla-firefox-locale-mn +mozilla-firefox-locale-nb-no +mozilla-thunderbird-locale-ca +mozilla-thunderbird-locale-de +mozilla-thunderbird-locale-fr +mozilla-thunderbird-locale-it +mozilla-thunderbird-locale-nl +mozilla-thunderbird-locale-pl +mozilla-thunderbird-locale-uk mpi-doc mpich-bin +nagios-common +nagios-mysql +nagios-pgsql +nagios-plugins +nagios-plugins-basic +nagios-plugins-standard +nagios-text netcdfg-dev +pcmcia-cs +procinfo +publib-dev +python-gadfly +python-htmltmpl +python-kjbuckets python-netcdf +python-numeric-ext python-parted python-pgsql python-scientific-doc +python-soappy +python-stats +python-syck +readahead-list sdf-doc +springgraph +sysutils tcl8.0 tcl8.0-dev +tcsh tk8.0 +x-window-system-core +xfmedia \ No newline at end of file -- cgit v1.2.3 From aaa740bde79a3e376f5c46215acf53df9d67dc3e Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 23 Oct 2006 17:20:40 +0200 Subject: * utils/demoted.cfg: - added nvidia-glx-legacy{-dev} by hand (because I don't want to wait for the archive to catch up) --- utils/demoted.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils/demoted.cfg b/utils/demoted.cfg index 1d271855..57a2dac7 100644 --- a/utils/demoted.cfg +++ b/utils/demoted.cfg @@ -117,6 +117,8 @@ nagios-plugins-basic nagios-plugins-standard nagios-text netcdfg-dev +nvidia-glx-legacy +nvidia-glx-legacy-dev pcmcia-cs procinfo publib-dev @@ -140,4 +142,4 @@ tcl8.0-dev tcsh tk8.0 x-window-system-core -xfmedia \ No newline at end of file +xfmedia -- cgit v1.2.3 From dcee921a1107db6e5c8042598641b422a77e24c2 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Thu, 26 Oct 2006 12:31:52 +0200 Subject: * DistUpgrade/DistUpgradeCache.py: - ensure that xserver-xorg-video-all is upgraded (if xserver-xorg-driver-all is installed) --- DistUpgrade/Changelog | 3 +++ DistUpgrade/DistUpgradeCache.py | 11 +++++++++++ 2 files changed, 14 insertions(+) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index bea2b932..b42e2d76 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,6 @@ +2006-10-26: + - make sure that xserver-xorg-video-all get installed if + xserver-xorg-driver-all was installed before (lp: #58424) 2006-10-21: - comment out old cdrom sources - demotions updated diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py index 9c062c41..d9dc9959 100644 --- a/DistUpgrade/DistUpgradeCache.py +++ b/DistUpgrade/DistUpgradeCache.py @@ -212,6 +212,17 @@ class MyCache(apt.Cache): logging.info("Forcing downgrade of libgl1-mesa-dri for xgl.compz.info installs") self._depcache.SetCandidateVer(pkg._pkg, ver) break + + # deal with general if $foo is installed, install $bar + for (fr, to) in [("xserver-xorg-driver-all","xserver-xorg-video-all")]: + if self.has_key(fr) and self.has_key(to): + if self[fr].isInstalled and not self[to].markedInstall: + try: + self.markInstall(to,"%s->%s quirk upgrade rule" % (fr, to)) + except SystemError, e: + logging.debug("Failed to apply %s->%s install (%s)" % (fr, to, e)) + + def dapperQuirks(self): """ this function works around quirks in the breezy->dapper upgrade """ -- cgit v1.2.3 From 1ef0b5e24d3b508b8b43f2643ff1c4932e091774 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 28 Oct 2006 12:31:29 +0200 Subject: * DistUpgrade/DistUpgradeViewGtk.py: - protect against errors when setting the icon (lp: #68697) --- DistUpgrade/Changelog | 2 ++ DistUpgrade/DistUpgradeViewGtk.py | 6 +++++- debian/changelog | 6 ++++++ 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index b42e2d76..f890bf04 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,3 +1,5 @@ +2006-10-28: + - catch errors when load_icon() does not work 2006-10-26: - make sure that xserver-xorg-video-all get installed if xserver-xorg-driver-all was installed before (lp: #58424) diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index 97a57772..a34e90f6 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -323,7 +323,11 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp): logging.warning("Error setting locales (%s)" % e) icons = gtk.icon_theme_get_default() - gtk.window_set_default_icon(icons.load_icon("update-manager", 32, 0)) + try: + gtk.window_set_default_icon(icons.load_icon("update-manager", 32, 0)) + except gobject.GError, e: + logging.debug("error setting default icon, ignoring (%s)" % e) + pass SimpleGladeApp.__init__(self, gladedir+"/DistUpgrade.glade", None, domain="update-manager") self.prev_step = 0 # keep a record of the latest step diff --git a/debian/changelog b/debian/changelog index fc133de0..3d13d542 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +update-manager (0.45.1) edgy-updates; urgency=low + + * handle unexpected data from data more gracefuly (lp: #68553) + + -- Michael Vogt Fri, 27 Oct 2006 10:23:39 +0200 + update-manager (0.45) edgy; urgency=low * debian/control: -- cgit v1.2.3 From 79308ab3f3a6b9a6e242d55f5ff44d67670c5a69 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 30 Oct 2006 16:50:48 +0100 Subject: * updated translation (thanks to Timo Jyrinki) --- po/fi.po | 456 ++++++++++++++++++++++++++------------------------------------- 1 file changed, 189 insertions(+), 267 deletions(-) diff --git a/po/fi.po b/po/fi.po index b0d33caf..85e021ae 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2006-10-23 14:26+0200\n" -"PO-Revision-Date: 2006-10-23 12:07+0000\n" +"POT-Creation-Date: 2006-10-11 22:33+0000\n" +"PO-Revision-Date: 2006-10-23 12:24+0000\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" @@ -54,7 +54,6 @@ msgstr "Kuukauden jälkeen" msgid "After %s days" msgstr "%s päivän jälkeen" -#. TRANS: %s stands for the distribution name e.g. Debian or Ubuntu #: ../SoftwareProperties/SoftwareProperties.py:252 #, python-format msgid "%s updates" @@ -62,7 +61,6 @@ msgstr "%s-päivitykset" #. TRANSLATORS: Label for the components in the Internet section #. first %s is the description of the component -#. second %s is the code name of the comp, eg main, universe #: ../SoftwareProperties/SoftwareProperties.py:264 #, python-format msgid "%s (%s)" @@ -72,7 +70,6 @@ msgstr "%s (%s)" msgid "Main server" msgstr "Pääpalvelin" -#. TRANSLATORS: %s is a country #: ../SoftwareProperties/SoftwareProperties.py:320 #: ../SoftwareProperties/SoftwareProperties.py:338 #, python-format @@ -124,7 +121,8 @@ msgid "Error removing the key" msgstr "Virhe poistettaessa avainta" #: ../SoftwareProperties/SoftwareProperties.py:993 -msgid "The key you selected could not be removed. Please report this as a bug." +msgid "" +"The key you selected could not be removed. Please report this as a bug." msgstr "" "Valitsemaasi avainta ei voitu poistaa. Ole hyvä ja luo tästä virheilmoitus." @@ -160,20 +158,19 @@ msgstr "" "ohjelmalla. Korjaa ne käyttämällä synapticia tai apt-get -komentoa ennen " "jatkamista." -#: ../DistUpgrade/DistUpgradeCache.py:238 +#: ../DistUpgrade/DistUpgradeCache.py:213 msgid "Can't upgrade required meta-packages" msgstr "Tarvittavia metapaketteja ei voi päivittää" -#: ../DistUpgrade/DistUpgradeCache.py:242 +#: ../DistUpgrade/DistUpgradeCache.py:217 msgid "A essential package would have to be removed" msgstr "Välttämätön paketti jouduttaisiin poistamaan" -#. FIXME: change the text to something more useful -#: ../DistUpgrade/DistUpgradeCache.py:245 +#: ../DistUpgrade/DistUpgradeCache.py:220 msgid "Could not calculate the upgrade" -msgstr "Ei voitu tehdä tarvittavia päivitykseen liittyviä tarkistuksia" +msgstr "Tarvittavia päivitykseen liittyviä tarkistuksia ei voitu tehdä" -#: ../DistUpgrade/DistUpgradeCache.py:246 +#: ../DistUpgrade/DistUpgradeCache.py:221 msgid "" "A unresolvable problem occurred while calculating the upgrade.\n" "\n" @@ -186,12 +183,11 @@ msgstr "" "Ilmoita tästä ohjelmavirheestä paketille \"update-manager\" ja sisällytä " "tiedostot hakemistosta /var/log/dist-upgrade raporttiin." -#. FIXME: maybe ask a question here? instead of failing? -#: ../DistUpgrade/DistUpgradeCache.py:280 +#: ../DistUpgrade/DistUpgradeCache.py:246 msgid "Error authenticating some packages" msgstr "Joitain paketteja todennettaessa tapahtui virhe" -#: ../DistUpgrade/DistUpgradeCache.py:281 +#: ../DistUpgrade/DistUpgradeCache.py:247 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " @@ -201,24 +197,23 @@ msgstr "" "Voit yrittää myöhemmin uudelleen. Alla on luettelo todentamattomista " "paketeista." -#: ../DistUpgrade/DistUpgradeCache.py:346 +#: ../DistUpgrade/DistUpgradeCache.py:312 #, python-format msgid "Can't install '%s'" msgstr "Ei voitu asentaa pakettia \"%s\"" -#: ../DistUpgrade/DistUpgradeCache.py:347 +#: ../DistUpgrade/DistUpgradeCache.py:313 msgid "" "It was impossible to install a required package. Please report this as a " "bug. " msgstr "" -"Pyydettyä pakettia ei voitu asentaa. Ole hyvä ja luo tästä virheraportti. " +"Vaadittua pakettia ei voitu asentaa. Ole hyvä ja luo tästä virheraportti. " -#. FIXME: provide a list -#: ../DistUpgrade/DistUpgradeCache.py:354 +#: ../DistUpgrade/DistUpgradeCache.py:320 msgid "Can't guess meta-package" -msgstr "Ei voitu arvata metapakettia" +msgstr "Metapakettia ei voitu arvata" -#: ../DistUpgrade/DistUpgradeCache.py:355 +#: ../DistUpgrade/DistUpgradeCache.py:321 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-" "desktop package and it was not possible to detect which version of ubuntu " @@ -232,11 +227,11 @@ msgstr "" " Asenna jokin luetelluista paketeista synapticilla tai apt-get-ohjelmalla " "ennen jatkamista." -#: ../DistUpgrade/DistUpgradeControler.py:75 +#: ../DistUpgrade/DistUpgradeControler.py:74 msgid "Failed to add the CD" -msgstr "Ei voitu lisätä CD-levyä" +msgstr "CD-levyä ei voitu lisätä" -#: ../DistUpgrade/DistUpgradeControler.py:76 +#: ../DistUpgrade/DistUpgradeControler.py:75 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " @@ -251,15 +246,15 @@ msgstr "" "Virheilmoitus oli:\n" "\"%s\"" -#: ../DistUpgrade/DistUpgradeControler.py:108 +#: ../DistUpgrade/DistUpgradeControler.py:107 msgid "Reading cache" -msgstr "Luetaan kätköä" +msgstr "Luetaan välimuistia" -#: ../DistUpgrade/DistUpgradeControler.py:156 +#: ../DistUpgrade/DistUpgradeControler.py:155 msgid "Fetch data from the network for the upgrade?" msgstr "Hae tiedot verkosta päivitystä varten?" -#: ../DistUpgrade/DistUpgradeControler.py:157 +#: ../DistUpgrade/DistUpgradeControler.py:156 msgid "" "The upgrade can use the network to check the latest updates and to fetch " "packages that are not on the current CD.\n" @@ -271,11 +266,11 @@ msgstr "" "Jos sinulla on nopea tai vähän kustannuksia aiheuttava verkkoyhteys, valitse " "\"Kyllä\". Jos verkon käyttö on kallista, valitse \"Ei\"." -#: ../DistUpgrade/DistUpgradeControler.py:249 +#: ../DistUpgrade/DistUpgradeControler.py:248 msgid "No valid mirror found" -msgstr "Ei löytynyt sopivaa palvelinta" +msgstr "Sopivaa peilipalvelinta ei löytynyt" -#: ../DistUpgrade/DistUpgradeControler.py:250 +#: ../DistUpgrade/DistUpgradeControler.py:249 #, python-format msgid "" "While scaning your repository information no mirror entry for the upgrade " @@ -291,16 +286,15 @@ msgstr "" "palvelintiedot ovat vanhentuneita.\n" "\n" "Haluatko uudelleenkirjoittaa \"sources.list\"-tiedoston joka tapauksessa? " -"Jos valitset \"Kyllä'\", kaikki \"%s\"-merkinnät muutetaan \"%s\"-" +"Jos valitset \"Kyllä\", kaikki \"%s\"-merkinnät muutetaan \"%s\"-" "merkinnöiksi.\n" "Jos valitset \"Ei\", päivitys keskeytyy." -#. hm, still nothing useful ... -#: ../DistUpgrade/DistUpgradeControler.py:267 +#: ../DistUpgrade/DistUpgradeControler.py:266 msgid "Generate default sources?" -msgstr "Luo ja ota käyttöön oletusohjelmalähteet?" +msgstr "Lisätäänkö oletusohjelmalähteet?" -#: ../DistUpgrade/DistUpgradeControler.py:268 +#: ../DistUpgrade/DistUpgradeControler.py:267 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" @@ -313,23 +307,23 @@ msgstr "" "Otetaanko käyttöön \"%s\":n oletuslähteet? Jos valitset \"Ei\", päivitys " "keskeytyy." -#: ../DistUpgrade/DistUpgradeControler.py:302 +#: ../DistUpgrade/DistUpgradeControler.py:301 msgid "Repository information invalid" msgstr "Virhe ohjelmavarastotiedoissa" -#: ../DistUpgrade/DistUpgradeControler.py:303 +#: ../DistUpgrade/DistUpgradeControler.py:302 msgid "" "Upgrading the repository information resulted in a invalid file. Please " "report this as a bug." msgstr "" -"Ohjelmavarastotietojen päivittäminen johti epäkelpoon tiedostoon. Ilmoita " -"tästä virheraportilla." +"Ohjelmavarastotietojen päivittäminen johti epäkelpoon tiedostoon. Tee " +"asiasta virheraportti." -#: ../DistUpgrade/DistUpgradeControler.py:309 +#: ../DistUpgrade/DistUpgradeControler.py:308 msgid "Third party sources disabled" msgstr "Kolmannen osapuolen ohjelmalähteet poissa käytöstä" -#: ../DistUpgrade/DistUpgradeControler.py:310 +#: ../DistUpgrade/DistUpgradeControler.py:309 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or with " @@ -339,11 +333,11 @@ msgstr "" "käytöstä. Voit ottaa ne uudelleen käyttöön päivityksen jälkeen " "\"Ohjelmalähteet\"-työkalulla tai Synaptic-ohjelmalla." -#: ../DistUpgrade/DistUpgradeControler.py:364 +#: ../DistUpgrade/DistUpgradeControler.py:358 msgid "Error during update" msgstr "Virhe päivitettäessä" -#: ../DistUpgrade/DistUpgradeControler.py:365 +#: ../DistUpgrade/DistUpgradeControler.py:359 msgid "" "A problem occured during the update. This is usually some sort of network " "problem, please check your network connection and retry." @@ -351,31 +345,30 @@ msgstr "" "Päivitettäessä tapahtui virhe. Tämä on yleensä jonkinlainen verkko-ongelma. " "Tarkista verkkoyhteytesi toiminta ja yritä uudelleen." -#: ../DistUpgrade/DistUpgradeControler.py:374 +#: ../DistUpgrade/DistUpgradeControler.py:368 msgid "Not enough free disk space" msgstr "Levytilaa ei ole riittävästi" -#: ../DistUpgrade/DistUpgradeControler.py:375 +#: ../DistUpgrade/DistUpgradeControler.py:369 #, python-format msgid "" "The upgrade aborts now. Please free at least %s of disk space on %s. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" -"Päivitys keskeytyy nyt. Vapauta vähintään %s levytilaa levyllä %s. Tyhjennä " -"roskakori ja poista väliaikaistiedostot aiemmista asennuksista käyttämällä " -"komentoa 'sudo apt-get clean'." +"Päivitys keskeytyy. Vapauta levytilaa vähintään %s levyllä %s. Tyhjennä " +"roskakori ja poista aiempien asennusten väliaikaiset pakettitiedostot " +"käyttämällä komentoa 'sudo apt-get clean'." -#. ask the user if he wants to do the changes -#: ../DistUpgrade/DistUpgradeControler.py:447 +#: ../DistUpgrade/DistUpgradeControler.py:440 msgid "Do you want to start the upgrade?" -msgstr "Haluatko aloittaaa päivityksen?" +msgstr "Haluatko aloittaa päivityksen?" -#: ../DistUpgrade/DistUpgradeControler.py:468 +#: ../DistUpgrade/DistUpgradeControler.py:460 msgid "Could not install the upgrades" -msgstr "Ei voitu asentaa päivityksiä" +msgstr "Päivityksiä ei voitu asentaa" -#: ../DistUpgrade/DistUpgradeControler.py:469 +#: ../DistUpgrade/DistUpgradeControler.py:461 msgid "" "The upgrade aborts now. Your system could be in an unusable state. A " "recovery was run (dpkg --configure -a).\n" @@ -389,11 +382,11 @@ msgstr "" "Tee tästä virheraportti paketille \"update-manager\" ja sisällytä tiedostot " "hakemistosta /var/log/dist-upgrade/ raporttiin." -#: ../DistUpgrade/DistUpgradeControler.py:487 +#: ../DistUpgrade/DistUpgradeControler.py:479 msgid "Could not download the upgrades" msgstr "Päivityksiä ei voitu noutaa" -#: ../DistUpgrade/DistUpgradeControler.py:488 +#: ../DistUpgrade/DistUpgradeControler.py:480 msgid "" "The upgrade aborts now. Please check your internet connection or " "installation media and try again. " @@ -401,11 +394,11 @@ msgstr "" "Päivitys keskeytyy. Tarkista Internet-yhteytesi tai asennuslähteesi (esim. " "CD) toiminta ja yritä uudelleen. " -#: ../DistUpgrade/DistUpgradeControler.py:524 +#: ../DistUpgrade/DistUpgradeControler.py:516 msgid "Support for some applications ended" msgstr "Tuki joillekin sovelluksille on loppunut" -#: ../DistUpgrade/DistUpgradeControler.py:525 +#: ../DistUpgrade/DistUpgradeControler.py:517 msgid "" "Canonical Ltd. no longer provides support for the following software " "packages. You can still get support from the community.\n" @@ -420,52 +413,49 @@ msgstr "" "ohjelmalähdettä (\"universe\"), näitä paketteja suositellaan poistettaviksi " "seuraavassa kohdassa." -#: ../DistUpgrade/DistUpgradeControler.py:560 +#: ../DistUpgrade/DistUpgradeControler.py:552 msgid "Remove obsolete packages?" -msgstr "Poista vanhentuneet paketit?" +msgstr "Poistetaanko vanhentuneet paketit?" -#: ../DistUpgrade/DistUpgradeControler.py:561 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Skip This Step" msgstr "_Ohita tämä kohta" -#: ../DistUpgrade/DistUpgradeControler.py:561 +#: ../DistUpgrade/DistUpgradeControler.py:553 msgid "_Remove" msgstr "_Poista" -#: ../DistUpgrade/DistUpgradeControler.py:572 +#: ../DistUpgrade/DistUpgradeControler.py:563 msgid "Error during commit" -msgstr "Virhe suoritettaesa" +msgstr "Virhe suoritettaessa" -#: ../DistUpgrade/DistUpgradeControler.py:573 +#: ../DistUpgrade/DistUpgradeControler.py:564 msgid "" "Some problem occured during the clean-up. Please see the below message for " "more information. " msgstr "" -"Jokin ongelma tapahtui siistimisvaiheessa. Alla olevassa viestissä on " -"lisätietoja. " +"Siistimisvaiheessa ilmeni ongelma. Lisätietoja allaolevassa viestissä. " -#. generate a new cache -#: ../DistUpgrade/DistUpgradeControler.py:585 +#: ../DistUpgrade/DistUpgradeControler.py:576 msgid "Restoring original system state" msgstr "Palautetaan alkuperäistä järjestelmän tilaa" -#: ../DistUpgrade/DistUpgradeControler.py:641 +#: ../DistUpgrade/DistUpgradeControler.py:632 #, python-format msgid "Fetching backport of '%s'" msgstr "Noudetaan paketin \"%s\" takaisinsovitusta" #. sanity check (check for ubuntu-desktop, brokenCache etc) -#. then open the cache (again) -#: ../DistUpgrade/DistUpgradeControler.py:676 -#: ../DistUpgrade/DistUpgradeControler.py:719 +#: ../DistUpgrade/DistUpgradeControler.py:667 +#: ../DistUpgrade/DistUpgradeControler.py:709 msgid "Checking package manager" msgstr "Tarkistetaan pakettienhallintaa" -#: ../DistUpgrade/DistUpgradeControler.py:681 +#: ../DistUpgrade/DistUpgradeControler.py:671 msgid "Preparing the upgrade failed" msgstr "Päivityksen valmistelu epäonnistui" -#: ../DistUpgrade/DistUpgradeControler.py:682 +#: ../DistUpgrade/DistUpgradeControler.py:672 msgid "" "Preparing the system for the upgrade failed. Please report this as a bug " "against the 'update-manager' package and include the files in /var/log/dist-" @@ -475,15 +465,15 @@ msgstr "" "virheraportilla \"update-manager\"-paketille, sisällyttäen mukaan tiedostot " "hakemistossa /var/log/dist-upgrade/." -#: ../DistUpgrade/DistUpgradeControler.py:705 +#: ../DistUpgrade/DistUpgradeControler.py:695 msgid "Updating repository information" msgstr "Päivitetään ohjelmavarastotietoja" -#: ../DistUpgrade/DistUpgradeControler.py:730 +#: ../DistUpgrade/DistUpgradeControler.py:720 msgid "Invalid package information" msgstr "Pakettitiedot viallisia" -#: ../DistUpgrade/DistUpgradeControler.py:731 +#: ../DistUpgrade/DistUpgradeControler.py:721 #, python-format msgid "" "After your package information was updated the essential package '%s' can " @@ -498,27 +488,26 @@ msgstr "" "\"update-manager\" ja sisällytä tiedostot hakemistosta /var/log/dist-" "upgrade/ raporttiin." -#: ../DistUpgrade/DistUpgradeControler.py:743 +#: ../DistUpgrade/DistUpgradeControler.py:733 msgid "Asking for confirmation" msgstr "Pyydetään vahvistusta" -#: ../DistUpgrade/DistUpgradeControler.py:747 +#: ../DistUpgrade/DistUpgradeControler.py:737 msgid "Upgrading" msgstr "Päivitetään" -#: ../DistUpgrade/DistUpgradeControler.py:754 +#: ../DistUpgrade/DistUpgradeControler.py:744 msgid "Searching for obsolete software" -msgstr "Etsitään vanhetuneita ohjelmia" +msgstr "Etsitään vanhentuneita ohjelmistoja" -#: ../DistUpgrade/DistUpgradeControler.py:759 +#: ../DistUpgrade/DistUpgradeControler.py:749 msgid "System upgrade is complete." msgstr "Järjestelmän päivitys on valmis." -#. print "mediaChange %s %s" % (medium, drive) #: ../DistUpgrade/DistUpgradeViewGtk.py:100 #, python-format msgid "Please insert '%s' into the drive '%s'" -msgstr "Laita '%s' asemaan '%s'" +msgstr "Aseta \"%s\" asemaan \"%s\"" #: ../DistUpgrade/DistUpgradeViewGtk.py:118 msgid "Fetching is complete" @@ -542,15 +531,14 @@ msgstr "Noudetaan tiedostoa %li/%li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) -#. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:163 msgid "Applying changes" -msgstr "Toteutetaan muutoksia" +msgstr "Muutoksia toteutetaan" #: ../DistUpgrade/DistUpgradeViewGtk.py:187 #, python-format msgid "Could not install '%s'" -msgstr "Ei voitu asentaa: '%s'" +msgstr "Pakettia \"%s\" ei voitu asentaa" #: ../DistUpgrade/DistUpgradeViewGtk.py:188 msgid "" @@ -560,7 +548,6 @@ msgstr "" "Päivitys keskeytyy. Tee tästä virheraportti paketille \"update-manager\" ja " "sisällytä raporttiin tiedostot hakemistosta /var/log/dist-upgrade/." -#. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:203 #, python-format msgid "" @@ -582,46 +569,45 @@ msgstr "" msgid "The 'diff' command was not found" msgstr "Komentoa 'diff' ei löytynyt" -#: ../DistUpgrade/DistUpgradeViewGtk.py:368 +#: ../DistUpgrade/DistUpgradeViewGtk.py:365 msgid "A fatal error occured" -msgstr "Vakava virhe tapahtui" +msgstr "Tapahtui vakava virhe" -#: ../DistUpgrade/DistUpgradeViewGtk.py:369 +#: ../DistUpgrade/DistUpgradeViewGtk.py:366 msgid "" -"Please report this as a bug and include the files /var/log/dist-upgrade/main." -"log and /var/log/dist-upgrade/apt.log in your report. The upgrade aborts " -"now.\n" +"Please report this as a bug and include the files /var/log/dist-" +"upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " +"upgrade aborts now.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Ilmoita tästä virheraportilla ja sisällytä siihen tiedostot /var/log/dist-" "upgrade/main.log ja /var/log/dist-upgrade/apt.log. Päivitys keskeytyy nyt.\n" -"Alkuperäinen sources.list tallennettiin nimellä /etc/apt/sources.list." -"distUpgrade." +"Alkuperäinen sources.list tallennettiin nimellä " +"/etc/apt/sources.list.distUpgrade." #. FIXME: make those two seperate lines to make it clear -#. that the "%" applies to the result of ngettext -#: ../DistUpgrade/DistUpgradeViewGtk.py:504 +#: ../DistUpgrade/DistUpgradeViewGtk.py:501 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paketti poistetaan." msgstr[1] "%d pakettia poistetaan." -#: ../DistUpgrade/DistUpgradeViewGtk.py:509 +#: ../DistUpgrade/DistUpgradeViewGtk.py:506 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d uusi paketti asennetaan." msgstr[1] "%d uutta pakettia asennetaan." -#: ../DistUpgrade/DistUpgradeViewGtk.py:515 +#: ../DistUpgrade/DistUpgradeViewGtk.py:512 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paketti päivitetään." msgstr[1] "%d pakettia päivitetään." -#: ../DistUpgrade/DistUpgradeViewGtk.py:520 +#: ../DistUpgrade/DistUpgradeViewGtk.py:517 #, python-format msgid "" "\n" @@ -632,7 +618,7 @@ msgstr "" "\n" "Noudettavaa yhteensä %s. " -#: ../DistUpgrade/DistUpgradeViewGtk.py:526 +#: ../DistUpgrade/DistUpgradeViewGtk.py:523 msgid "" "Fetching and installing the upgrade can take several hours and cannot be " "canceled at any time later." @@ -640,34 +626,33 @@ msgstr "" "Päivityksen noutaminen ja asennus voi kestää useita tunteja, eikä sitä voi " "keskeyttää enää myöhemmin." -#: ../DistUpgrade/DistUpgradeViewGtk.py:529 +#: ../DistUpgrade/DistUpgradeViewGtk.py:526 msgid "To prevent data loss close all open applications and documents." msgstr "" -"Jottei tietoja häviäisi, sulje kaikki avoinna olevat ohjelmat ja dokumentit." +"Jottei tietoja häviäisi, sulje kaikki avoinna olevat ohjelmat ja asiakirjat." -#. FIXME: this should go into DistUpgradeController -#: ../DistUpgrade/DistUpgradeViewGtk.py:535 +#: ../DistUpgrade/DistUpgradeViewGtk.py:532 #: ../UpdateManager/UpdateManager.py:622 msgid "Your system is up-to-date" msgstr "Järjestelmäsi on ajan tasalla" -#: ../DistUpgrade/DistUpgradeViewGtk.py:536 +#: ../DistUpgrade/DistUpgradeViewGtk.py:533 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Päivityksiä ei ole saatavilla järjestelmälle. Päivitys keskeytyy." -#: ../DistUpgrade/DistUpgradeViewGtk.py:552 +#: ../DistUpgrade/DistUpgradeViewGtk.py:549 #, python-format msgid "Remove %s" msgstr "Poista %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:554 +#: ../DistUpgrade/DistUpgradeViewGtk.py:551 #, python-format msgid "Install %s" msgstr "Asenna %s" -#: ../DistUpgrade/DistUpgradeViewGtk.py:556 +#: ../DistUpgrade/DistUpgradeViewGtk.py:553 #, python-format msgid "Upgrade %s" msgstr "Päivitä %s" @@ -693,19 +678,19 @@ msgid "%li seconds" msgstr "%li sekuntia" #. 56 kbit -#. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:38 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem" -msgstr "Nouto kestää noin %s 1Mbit-DSL-yhteydellä ja noin %s 56kbit-modeemilla" +msgstr "" +"Nouto kestää noin %s 1Mbit-DSL-yhteydellä ja noin %s 56kbit-modeemilla" -#: ../DistUpgrade/DistUpgradeView.py:111 +#: ../DistUpgrade/DistUpgradeView.py:109 msgid "Reboot required" -msgstr "Uudellenkäynnistys vaaditaan" +msgstr "Uudelleenkäynnistys vaaditaan" -#: ../DistUpgrade/DistUpgradeView.py:112 +#: ../DistUpgrade/DistUpgradeView.py:110 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" @@ -714,7 +699,6 @@ msgstr "" #. testcode to see if the bullets look nice in the dialog #. for i in range(4): #. view.setStep(i+1) -#. app.openCache() #: ../DistUpgrade/DistUpgrade.glade.h:1 #: ../data/glade/SoftwareProperties.glade.h:1 msgid " " @@ -730,17 +714,17 @@ msgstr "" "Peruuta käynnissä oleva päivitys?\n" "\n" "Järjestelmä voi olla käyttökelvottomassa tilassa, jos peruutat päivityksen. " -"On hyvin suositeltavaa jatkaa päivitystä." +"Päivityksen jatkaminen on erittäin suositeltavaa." #: ../DistUpgrade/DistUpgrade.glade.h:5 msgid "Restart the system to complete the upgrade" msgstr "" -"Käynnistä järjestelmä uudelleen saattaaksesi päivityksen loppuun" +"Käynnistä järjestelmä uudelleen saattaaksesi päivityksen " +"loppuun" #: ../DistUpgrade/DistUpgrade.glade.h:6 msgid "Start the upgrade?" -msgstr "Aloita päivitys?" +msgstr "Aloitetaanko päivitys?" #: ../DistUpgrade/DistUpgrade.glade.h:7 msgid "Upgrading Ubuntu to version 6.10" @@ -821,16 +805,15 @@ msgstr "Palvelin voi olla ylikuormitettu. " #: ../UpdateManager/DistUpgradeFetcher.py:79 msgid "Could not download the release notes" -msgstr "Ei voitu noutaa julkaisutietoja" +msgstr "Julkaisutietoja ei voitu noutaa" #: ../UpdateManager/DistUpgradeFetcher.py:80 msgid "Please check your internet connection." msgstr "Tarkista Internet-yhteytesi toimivuus." -#. no script file found in extracted tarbal #: ../UpdateManager/DistUpgradeFetcher.py:149 msgid "Could not run the upgrade tool" -msgstr "Ei voitu suorittaa päivitystyökalua" +msgstr "Päivitystyökalua ei voitu suorittaa" #: ../UpdateManager/DistUpgradeFetcher.py:150 msgid "" @@ -866,7 +849,7 @@ msgstr "" #: ../UpdateManager/DistUpgradeFetcher.py:214 msgid "Failed to extract" -msgstr "Ei voitu purkaa" +msgstr "Purku epäonnistui" #: ../UpdateManager/DistUpgradeFetcher.py:215 msgid "" @@ -930,17 +913,14 @@ msgstr "" "Muutosluettelon nouto epäonnistui. \n" "Tarkista Internet-yhteytesi toimivuus." -#. Description #: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88 msgid "Important security updates" msgstr "Tärkeät turvallisuuspäivitykset" -#. Description #: ../UpdateManager/UpdateManager.py:239 ../data/channels/Ubuntu.info.in:93 msgid "Recommended updates" msgstr "Suositellut päivitykset" -#. Description #: ../UpdateManager/UpdateManager.py:240 ../data/channels/Ubuntu.info.in:98 msgid "Proposed updates" msgstr "Ehdotetut päivitykset" @@ -953,7 +933,6 @@ msgstr "Takaisinsovitukset" msgid "Distribution updates" msgstr "Jakelupäivitykset" -#. TRANSLATORS: updates from an 'unknown' origin #: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266 msgid "Other updates" msgstr "Muut päivitykset" @@ -961,7 +940,7 @@ msgstr "Muut päivitykset" #: ../UpdateManager/UpdateManager.py:478 #, python-format msgid "Version %s: \n" -msgstr "Versio: %s: \n" +msgstr "Versio %s: \n" #: ../UpdateManager/UpdateManager.py:539 msgid "Downloading list of changes..." @@ -975,7 +954,6 @@ msgstr "Poista _valinnat" msgid "_Check All" msgstr "_Tarkista kaikki" -#. TRANSLATORS: b stands for Bytes #: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637 #, python-format msgid "Download size: %s" @@ -1010,7 +988,6 @@ msgstr "Versiosta %(old_version)s versioon %(new_version)s" msgid "Version %s" msgstr "Versio %s" -#. TRANSLATORS: the b stands for Bytes #: ../UpdateManager/UpdateManager.py:832 #, python-format msgid "(Size: %s)" @@ -1035,7 +1012,6 @@ msgstr "" msgid "New distribution release '%s' is available" msgstr "Uusi jakelujulkaisu \"%s\" on saatavilla" -#. we assert a clean cache #: ../UpdateManager/UpdateManager.py:902 msgid "Software index is broken" msgstr "Ohjelmaluettelo on rikkinäinen" @@ -1050,23 +1026,19 @@ msgstr "" "Synaptic-pakettienhallintaa tai komentoa \"sudo apt-get install -f\" " "päätteessä." -#. TRANSLATORS: download size is 0 #: ../UpdateManager/Common/utils.py:33 msgid "None" msgstr "Ei mitään" -#. TRANSLATORS: download size of very small updates #: ../UpdateManager/Common/utils.py:36 msgid "1 KB" msgstr "1 kB" -#. TRANSLATORS: download size of small updates, e.g. "250 KB" #: ../UpdateManager/Common/utils.py:39 #, python-format msgid "%.0f KB" msgstr "%.0f kB" -#. TRANSLATORS: download size of updates, e.g. "2.3 MB" #: ../UpdateManager/Common/utils.py:42 #, python-format msgid "%.1f MB" @@ -1090,10 +1062,7 @@ msgstr "Pidä järjestelmäsi ajan tasalla" #: ../data/glade/UpdateManager.glade.h:5 msgid "Not all updates can be installed" -msgstr "" -"Kaikkia päivityksiä ei voi asentaa\r\n" -"\r\n" -"%s" +msgstr "Kaikkia päivityksiä ei voida asentaa" #: ../data/glade/UpdateManager.glade.h:6 msgid "Starting update manager" @@ -1138,7 +1107,7 @@ msgstr "" #: ../data/glade/UpdateManager.glade.h:16 msgid "Show progress of single files" -msgstr "Näytä edistyminen yksittäisten tiedostojen osalta" +msgstr "Näytä tiedostojen edistyminen" #: ../data/glade/UpdateManager.glade.h:17 msgid "Software Updates" @@ -1149,8 +1118,8 @@ msgid "" "Software updates correct errors, eliminate security vulnerabilities and " "provide new features." msgstr "" -"Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat uusia " -"ominaisuuksia." +"Ohjelmapäivitykset korjaavat ohjelmavirheitä ja mahdollisia turva-aukkoja " +"sekä tarjoavat uusia ominaisuuksia." #: ../data/glade/UpdateManager.glade.h:19 msgid "U_pgrade" @@ -1309,8 +1278,8 @@ msgid "" msgstr "" "Tiedot saatavilla olevista ohjelmista ovat vanhentuneita\n" "\n" -"Tiedot saatavilla ohjelmista ohjelmista täytyy ladata uudelleen ohjelmien " -"tai päivitysten asentamiseksi uusista tai muuttuneista ohjelmalähteistä.\n" +"Tiedot saatavilla olevista ohjelmista täytyy ladata uudelleen ohjelmien tai " +"päivitysten asentamiseksi uusista tai muuttuneista ohjelmalähteistä.\n" "\n" "Tarvitset toiminnassa olevan Internet-yhteyden jatkaaksesi." @@ -1344,8 +1313,8 @@ msgid "" msgstr "" "Kirjoita haluamasi ohjelmalähteen koko APT-rivi\n" "\n" -"APT-rivi sisältää kanavan tyypin, sijainnin ja sisällön, esimerkiksi " -"\"deb http://ftp.debian.org sarge main\"." +"APT-rivi sisältää kanavan tyypin, sijainnin ja sisällön, esimerkiksi " +"\"deb http://ftp.debian.org sarge main\"." #: ../data/glade/SoftwarePropertiesDialogs.glade.h:14 msgid "APT line:" @@ -1365,7 +1334,7 @@ msgstr "Muokkaa lähdettä" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:18 msgid "Scanning CD-ROM" -msgstr "Luetaan CD-levyä" +msgstr "Tutkitaan CD-levyä" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:19 msgid "_Add Source" @@ -1373,7 +1342,7 @@ msgstr "L_isää lähde" #: ../data/glade/SoftwarePropertiesDialogs.glade.h:20 msgid "_Reload" -msgstr "_Lataa uudelleen" +msgstr "_Lataa uudestaan" #: ../data/update-manager.desktop.in.h:1 msgid "Show and install available updates" @@ -1393,7 +1362,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:2 msgid "Check for new distribution releases" -msgstr "Tarkista onko uusia julkaisuja jakelusta" +msgstr "Tarkista, onko jakelusta uusia julkaisuja" #: ../data/update-manager.schemas.in.h:3 msgid "" @@ -1407,7 +1376,7 @@ msgstr "" #: ../data/update-manager.schemas.in.h:4 msgid "Remind to reload the channel list" -msgstr "Muistuta kanavaluettelon uudelleenlataamisesta" +msgstr "Muistuta kanavaluettelon uudelleen lataamisesta" #: ../data/update-manager.schemas.in.h:5 msgid "Show details of an update" @@ -1432,237 +1401,194 @@ msgstr "Ikkunan koko" msgid "Configure the sources for installable software and updates" msgstr "Muokkaa asennettavien ohjelmien ja päivitysten lähteitä" -#. ChangelogURI #: ../data/channels/Ubuntu.info.in.h:4 #, no-c-format msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" +msgstr "" +"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Ubuntu.info.in:8 msgid "Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:13 msgid "Community maintained" msgstr "Yhteisön ylläpitämät" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:17 msgid "Proprietary drivers for devices" msgstr "Suljetut laiteajurit" -#. CompDescription #: ../data/channels/Ubuntu.info.in:19 msgid "Restricted software" msgstr "Rajoitetut ohjelmistot" -#. Description #: ../data/channels/Ubuntu.info.in:25 msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'" msgstr "Ubuntu 6.10 \"Edgy Eft\" -CD-levy" -#. Description #: ../data/channels/Ubuntu.info.in:59 msgid "Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\"" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:62 msgid "Canonical supported Open Source software" msgstr "Canonicalin tukemat avoimen lähdekoodin ohjelmistot" -#. CompDescription #: ../data/channels/Ubuntu.info.in:64 msgid "Community maintained (universe)" msgstr "Yhteisön ylläpitämät (universe)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:65 msgid "Community maintained Open Source software" msgstr "Yhteisön ylläpitämät avoimen lähdekoodin ohjelmistot" -#. CompDescription #: ../data/channels/Ubuntu.info.in:67 msgid "Non-free drivers" msgstr "Ei-vapaat ajurit" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:68 msgid "Proprietary drivers for devices " msgstr "Suljetut laiteajurit " -#. CompDescription #: ../data/channels/Ubuntu.info.in:70 msgid "Restricted software (Multiverse)" -msgstr "Rajoitetut ohjelmat (multiverse)" +msgstr "Käyttörajoitetut ohjelmistot (multiverse)" -#. CompDescriptionLong #: ../data/channels/Ubuntu.info.in:71 msgid "Software restricted by copyright or legal issues" msgstr "Tekijänoikeus- tai lakiasioilla rajoitetut ohjelmistot" -#. Description #: ../data/channels/Ubuntu.info.in:76 msgid "Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'" msgstr "Ubuntu 6.06 LTS \"Dapper Drake\" -CD-levy" -#. Description #: ../data/channels/Ubuntu.info.in:103 msgid "Backported updates" msgstr "Takaisinsovitetut päivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:110 msgid "Ubuntu 5.10 'Breezy Badger'" -msgstr "Ubuntu 5.10 'Breezy Badger'" +msgstr "Ubuntu 5.10 \"Breezy Badger\"" -#. Description #: ../data/channels/Ubuntu.info.in:123 msgid "Cdrom with Ubuntu 5.10 'Breezy Badger'" msgstr "Ubuntu 5.10 \"Breezy Badger\" -CD-levy" -#. Description #: ../data/channels/Ubuntu.info.in:135 msgid "Ubuntu 5.10 Security Updates" msgstr "Ubuntu 5.10 turvallisuuspäivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:140 msgid "Ubuntu 5.10 Updates" msgstr "Ubuntu 5.10 päivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:145 msgid "Ubuntu 5.10 Backports" msgstr "Ubuntu 5.10 takaisinsovitukset" -#. Description #: ../data/channels/Ubuntu.info.in:152 msgid "Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\"" -#. Description #: ../data/channels/Ubuntu.info.in:165 msgid "Cdrom with Ubuntu 5.04 'Hoary Hedgehog'" msgstr "Ubuntu 5.04 \"Hoary Hedgehog\" -CD-levy" -#. CompDescription #: ../data/channels/Ubuntu.info.in:168 ../data/channels/Debian.info.in:51 msgid "Officially supported" msgstr "Virallisesti tuettu" -#. Description #: ../data/channels/Ubuntu.info.in:177 msgid "Ubuntu 5.04 Security Updates" msgstr "Ubuntu 5.04 turvallisuuspäivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:182 msgid "Ubuntu 5.04 Updates" msgstr "Ubuntu 5.04 päivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:187 msgid "Ubuntu 5.04 Backports" msgstr "Ubuntu 5.04 takaisinsovitukset" -#. Description #: ../data/channels/Ubuntu.info.in:193 msgid "Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\"" -#. CompDescription #: ../data/channels/Ubuntu.info.in:199 msgid "Community maintained (Universe)" msgstr "Yhteisön ylläpitämät (universe)" -#. CompDescription #: ../data/channels/Ubuntu.info.in:201 msgid "Non-free (Multiverse)" -msgstr "Ei-vapaat ohjelmat (multiverse)" +msgstr "Ei-vapaat ohjelmistot (multiverse)" -#. Description #: ../data/channels/Ubuntu.info.in:206 msgid "Cdrom with Ubuntu 4.10 'Warty Warthog'" msgstr "Ubuntu 4.10 \"Warty Warthog\" -CD-levy" -#. CompDescription #: ../data/channels/Ubuntu.info.in:209 msgid "No longer officially supported" msgstr "Ei enää virallisesti tuettu" -#. CompDescription #: ../data/channels/Ubuntu.info.in:211 msgid "Restricted copyright" -msgstr "Rajoitettu tekijänoikeus" +msgstr "Rajoitettu käyttöoikeus" -#. Description #: ../data/channels/Ubuntu.info.in:218 msgid "Ubuntu 4.10 Security Updates" msgstr "Ubuntu 4.10 turvallisuuspäivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:223 msgid "Ubuntu 4.10 Updates" msgstr "Ubuntu 4.10 päivitykset" -#. Description #: ../data/channels/Ubuntu.info.in:228 msgid "Ubuntu 4.10 Backports" msgstr "Ubuntu 4.10 takaisinsovitukset" -#. ChangelogURI #: ../data/channels/Debian.info.in.h:4 #, no-c-format msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog" -#. Description #: ../data/channels/Debian.info.in:6 msgid "Debian 3.1 \"Sarge\"" msgstr "Debian 3.1 \"Sarge\"" -#. BaseURI #: ../data/channels/Debian.info.in:19 msgid "http://security.debian.org/" msgstr "http://security.debian.org" -#. Description #: ../data/channels/Debian.info.in:20 msgid "Debian 3.1 \"Sarge\" Security Updates" msgstr "Debian 3.1 \"Sarge\" turvallisuuspäivitykset" -#. Description #: ../data/channels/Debian.info.in:34 msgid "Debian \"Etch\" (testing)" msgstr "Debian \"Etch\" (testattava)" -#. BaseURI #: ../data/channels/Debian.info.in:47 msgid "http://http.us.debian.org/debian/" msgstr "http://http.us.debian.org/debian/" -#. Description #: ../data/channels/Debian.info.in:48 msgid "Debian \"Sid\" (unstable)" msgstr "Debian \"Sid\" (epävakaa)" -#. CompDescription #: ../data/channels/Debian.info.in:54 msgid "DFSG-compatible Software with Non-Free Dependencies" msgstr "" -"DFSG-yhteensopivat ohjelmat joilla riippuvuuksia epävapaisiin ohjelmiin" +"DFSG-yhteensopivat ohjelmistot joilla riippuvuuksia epävapaisiin ohjelmiin" -#. CompDescription #: ../data/channels/Debian.info.in:57 msgid "Non-DFSG-compatible Software" -msgstr "DFSG-epäyhteensopivat ohjelmat" +msgstr "DFSG-epäyhteensopivat ohjelmistot" #~ msgid "By copyright or legal issues restricted software" #~ msgstr "Tekijänoikeus- tai lakiasioilla käyttörajoitetut ohjelmistot" +#, python-format #~ msgid "Downloading file %li of %li with unknown speed" #~ msgstr "Noudetaan tiedostoa %li/%li tuntemattomalla nopeudella" @@ -1684,8 +1610,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Upgrading to Ubuntu 6.10" #~ msgstr "" -#~ "Päivitetään jakeluun Ubuntu 6.10" +#~ "Päivitetään jakeluun Ubuntu " +#~ "6.10" #~ msgid "Important security updates of Ubuntu" #~ msgstr "Ubuntun tärkeät turvallisuuspäivitykset" @@ -1704,16 +1630,16 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "" #~ "Tarkistetaan järjestelmää\n" #~ "\n" -#~ "Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat " -#~ "uusia ominaisuuksia." +#~ "Ohjelmapäivitykset korjaavat virheitä ja turva-aukkoja sekä tarjoavat uusia " +#~ "ominaisuuksia." #~ msgid "Oficially supported" #~ msgstr "Virallisesti tuettu" #~ msgid "" #~ "Some updates require the removal of further software. Use the function " -#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo " -#~ "apt-get dist-upgrade\" in a terminal to update your system completely." +#~ "\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-" +#~ "get dist-upgrade\" in a terminal to update your system completely." #~ msgstr "" #~ "Jotkut päivitykset vaativat muiden ohjelmien poistoa. Käytä \"Merkitse " #~ "kaikki päivitykset\"-toimintoa Synaptic-pakettienhallintaojhelmassa, tai " @@ -1722,6 +1648,7 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "The following updates will be skipped:" #~ msgstr "Seuraavat päivitykset ohitetaan:" +#, python-format #~ msgid "About %li seconds remaining" #~ msgstr "Noin %li sekuntia jäljellä" @@ -1801,8 +1728,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Ubuntu 6.06 LTS takaisinsovitukset" #~ msgid "" -#~ "While scaning your repository information no valid entry for the upgrade " -#~ "was found.\n" +#~ "While scaning your repository information no valid entry for the upgrade was " +#~ "found.\n" #~ msgstr "" #~ "Luettaessa varastotietoja ei löydetty kelvollisia ohjelmavarastoja " #~ "päivittämistä varten.\n" @@ -1844,12 +1771,11 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Tiedosto '%s' ei sisällä sopivia ohjelmistokanavia." #~ msgid "" -#~ "You need to manually reload the latest information about updates\n" +#~ "You need to manually reload the latest information about " +#~ "updates\n" #~ "\n" -#~ "Your system does not check for updates automatically. You can configure " -#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties" -#~ "\"." +#~ "Your system does not check for updates automatically. You can configure this " +#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"." #~ msgstr "" #~ "Sinun pitää ladata päivitystiedot uudelleen käsin\n" #~ "\n" @@ -1898,20 +1824,19 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "" #~ "Kirjoita haluamasi varaston koko APT-rivi\n" #~ "\n" -#~ "APT-rivi sisältää varaston tyypin, sijainnin ja sisällön, esimerkiksi " -#~ "\"deb http://ftp.debian.org sarge main\". Lisätietoja aiheesta löydät " +#~ "APT-rivi sisältää varaston tyypin, sijainnin ja sisällön, esimerkiksi " +#~ "\"deb http://ftp.debian.org sarge main\". Lisätietoja aiheesta löydät " #~ "dokumentaatiosta." #~ msgid "A_uthentication" #~ msgstr "Varmenn_us" #~ msgid "" -#~ "Add a new key file to the trusted keyring. Make sure that you received " -#~ "the key over a secure channel and that you trust the owner. " +#~ "Add a new key file to the trusted keyring. Make sure that you received the " +#~ "key over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että " -#~ "vastaanotit avaimen luotettavaa kanavaa pitkin, ja että luotat sen " -#~ "omistajaan. " +#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että vastaanotit " +#~ "avaimen luotettavaa kanavaa pitkin, ja että luotat sen omistajaan. " #~ msgid "Automatically check for software _updates." #~ msgstr "Tarkista ohjelma_päivitykset automaattisesti." @@ -1935,8 +1860,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Maksimikoko megatavuissa:" #~ msgid "" -#~ "Restore the default keys shipped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shipped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" #~ "Palauta jakelun mukana toimitetut oletusavaimet. Tämä ei muuta tai poista " #~ "itse asennettuja avaimia." @@ -1965,8 +1890,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Available Updates\n" #~ "\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Saatavilla olevat päivitykset\n" #~ "\n" @@ -1979,17 +1904,17 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Reload the package information from the server. \n" #~ "\n" -#~ "If you have a permanent internet connection this is done automatically. " -#~ "If you are behind an internet connection that needs to be started by hand " -#~ "(e.g. a modem) you should use this button so that update-manager knows " -#~ "about new updates." +#~ "If you have a permanent internet connection this is done automatically. If " +#~ "you are behind an internet connection that needs to be started by hand (e.g. " +#~ "a modem) you should use this button so that update-manager knows about new " +#~ "updates." #~ msgstr "" #~ "Lataa pakettitiedot palvelimelta uudelleen. \n" #~ "\n" #~ "Jos sinulla on kiinteä Internet-yhteys, tämä tehdään automaattisesti. Jos " #~ "olet käsin muodostettavan Internet-yhteyden (esim. modeemi) takana, sinun " -#~ "täytyy käyttää tätä valintaa jotta päivitystenhallinta saisi tiedon " -#~ "uusista päivityksistä." +#~ "täytyy käyttää tätä valintaa jotta päivitystenhallinta saisi tiedon uusista " +#~ "päivityksistä." #~ msgid "Binary" #~ msgstr "Binääri" @@ -2015,8 +1940,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "This means that some dependencies of the installed packages are not " #~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation." #~ msgstr "" -#~ "Jotkut asennettujen pakettien riippuvuuksista ovat siis täyttämättä. " -#~ "Käytä \"Synaptic\"- tai \"apt-get\"-ohjelmia korjataksesi ongelman." +#~ "Jotkut asennettujen pakettien riippuvuuksista ovat siis täyttämättä. Käytä " +#~ "\"Synaptic\"- tai \"apt-get\"-ohjelmia korjataksesi ongelman." #~ msgid "It is not possible to upgrade all packages." #~ msgstr "Kaikkia paketteja ei voida päivittää." @@ -2024,13 +1949,12 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "This means that besides the actual upgrade of the packages some further " #~ "action (such as installing or removing packages) is required. Please use " -#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the " -#~ "situation." +#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation." #~ msgstr "" -#~ "Pakettien päivittämisen lisäksi tarvitaan siis joitain muita " -#~ "toimenpiteitä (kuten pakettien asentamista tai poistamista). Käytä " -#~ "Synaptic-ohjelman \"Smart Upgrade\"-toimintoa tai \"apt-get dist-upgrade" -#~ "\"-komentoa korjataksesi ongelman." +#~ "Pakettien päivittämisen lisäksi tarvitaan siis joitain muita toimenpiteitä " +#~ "(kuten pakettien asentamista tai poistamista). Käytä Synaptic-ohjelman " +#~ "\"Smart Upgrade\"-toimintoa tai \"apt-get dist-upgrade\"-komentoa " +#~ "korjataksesi ongelman." #~ msgid "Changes not found, the server may not be updated yet." #~ msgstr "Muutoksia ei löytynyt, palvelinta ei ole ehkä vielä päivitetty." @@ -2039,8 +1963,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Päivityksiä asennetaan." #~ msgid "" -#~ "You can run only one package management application at the same time. " -#~ "Please close this other application first." +#~ "You can run only one package management application at the same time. Please " +#~ "close this other application first." #~ msgstr "" #~ "Voit hallita paketteja vain yhdellä ohjelmalla kerrallaan. Sulje toinen " #~ "ohjelma ensin." @@ -2053,20 +1977,19 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgid "" #~ "Please upgrade to a newer version of Ubuntu Linux. The version you are " -#~ "running will no longer get security fixes or other critical updates. " -#~ "Please see http://www.ubuntulinux.org for upgrade information." +#~ "running will no longer get security fixes or other critical updates. Please " +#~ "see http://www.ubuntulinux.org for upgrade information." #~ msgstr "" -#~ "Päivitä uudempaan versioon Ubuntu Linuxista. Käyttämällesi versiolle ei " -#~ "enää ole tulossa turvallisuuspäivityksiä tai muita kriittisiä " -#~ "päivityksiä. Tietoja päivittämisestä löydät sivulta http://www." -#~ "ubuntulinux.org." +#~ "Päivitä uudempaan versioon Ubuntu Linuxista. Käyttämällesi versiolle ei enää " +#~ "ole tulossa turvallisuuspäivityksiä tai muita kriittisiä päivityksiä. " +#~ "Tietoja päivittämisestä löydät sivulta http://www.ubuntulinux.org." #~ msgid "There is a new release of Ubuntu available!" #~ msgstr "Ubuntusta on uusi julkaisu saatavilla!" #~ msgid "" -#~ "A new release with the codename '%s' is available. Please see http://www." -#~ "ubuntulinux.org/ for upgrade instructions." +#~ "A new release with the codename '%s' is available. Please see " +#~ "http://www.ubuntulinux.org/ for upgrade instructions." #~ msgstr "" #~ "Uusi julkaisu nimeltään '%s' on saatavilla. Päivitysohjeet löydät " #~ "osoitteesta http://www.ubuntulinux.org/." @@ -2078,11 +2001,11 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ msgstr "Ei saatu haluttua lukitusta" #~ msgid "" -#~ "This usually means that another package management application (like apt-" -#~ "get or aptitude) already running. Please close that application first" +#~ "This usually means that another package management application (like apt-get " +#~ "or aptitude) already running. Please close that application first" #~ msgstr "" -#~ "Tämä tarkoittaa yleensä, että toinen pakettienhallintaohjelma (kuten apt-" -#~ "get tai aptitude) on jo käynnissä. Sulje tämä toinen ohjelma ensin." +#~ "Tämä tarkoittaa yleensä, että toinen pakettienhallintaohjelma (kuten apt-get " +#~ "tai aptitude) on jo käynnissä. Sulje tämä toinen ohjelma ensin." #~ msgid "Initializing and getting list of updates..." #~ msgstr "Alustetaan ja ladataan luetteloa päivityksistä..." @@ -2108,16 +2031,15 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #~ "Add a new key file to the trusted keyring. Make sure that you got the key " #~ "over a secure channel and that you trust the owner. " #~ msgstr "" -#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että " -#~ "vastaanotit avaimen luotettua kanavaa pitkin ja että luotat avaimen " -#~ "omistajaan. " +#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että vastaanotit " +#~ "avaimen luotettua kanavaa pitkin ja että luotat avaimen omistajaan. " #~ msgid "" -#~ "Restore the default keys shiped with the distribution. This will not " -#~ "change user installed keys." +#~ "Restore the default keys shiped with the distribution. This will not change " +#~ "user installed keys." #~ msgstr "" -#~ "Palauta jakelun mukana toimitetut avaimet. Tämä ei tee muutoksia " -#~ "käyttäjän asentamiin avaimiin." +#~ "Palauta jakelun mukana toimitetut avaimet. Tämä ei tee muutoksia käyttäjän " +#~ "asentamiin avaimiin." #~ msgid "Ubuntu Update Manager" #~ msgstr "Ubuntun päivitysten hallinta" @@ -2125,8 +2047,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat" #, fuzzy #~ msgid "" #~ "Available Updates\n" -#~ "The following packages are found to be upgradable. You can upgrade them " -#~ "by using the Install button." +#~ "The following packages are found to be upgradable. You can upgrade them by " +#~ "using the Install button." #~ msgstr "" #~ "Saatavilla olevat päivitykset\n" #~ "\n" -- cgit v1.2.3 From 0b971142001adf68f9014ec2526ad2f4ac18e820 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 30 Oct 2006 16:59:56 +0100 Subject: * DistUpgrade/DistUpgradeViewGtk.py: - reset self.read when unexpected data arrives --- DistUpgrade/Changelog | 3 +++ DistUpgrade/DistUpgradeViewGtk.py | 2 ++ 2 files changed, 5 insertions(+) diff --git a/DistUpgrade/Changelog b/DistUpgrade/Changelog index f890bf04..46e6fb89 100644 --- a/DistUpgrade/Changelog +++ b/DistUpgrade/Changelog @@ -1,5 +1,8 @@ 2006-10-28: - catch errors when load_icon() does not work +2006-10-27: + - reset self.read so that we do not loop endlessly when dpkg + sends unexpected data (lp: #68553) 2006-10-26: - make sure that xserver-xorg-video-all get installed if xserver-xorg-driver-all was installed before (lp: #58424) diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py index a34e90f6..07a94110 100644 --- a/DistUpgrade/DistUpgradeViewGtk.py +++ b/DistUpgrade/DistUpgradeViewGtk.py @@ -271,6 +271,8 @@ class GtkInstallProgressAdapter(InstallProgress): InstallProgress.updateInterface(self) except ValueError, e: logging.error("got ValueError from InstallPrgoress.updateInterface. Line was '%s' (%s)" % (self.read, e)) + # reset self.read so that it can continue reading and does not loop + self.read = "" # check if we haven't started yet with packages, pulse then if self.start_time == 0.0: self.progress.pulse() -- cgit v1.2.3