summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-10-09 12:09:34 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-10-09 12:09:34 +0200
commitff9de68c6430ff296e0781a8cee1122e89785db5 (patch)
tree9481c824609dd6777dc3470c42c8e43c0b78d5ff
parent62568bc42e8c29d608d952ebe51d2a8ba6ba0b8d (diff)
downloadpython-apt-ff9de68c6430ff296e0781a8cee1122e89785db5.tar.gz
* UpdateManager/UpdateManager.py:
- do not create a new "MyCache()" on each initCache() but use cache.open() instead. This fixes a memory leak (lp: 43096)
-rw-r--r--UpdateManager/UpdateManager.py6
-rw-r--r--debian/changelog6
-rw-r--r--po/am.po125
-rw-r--r--po/ar.po132
-rw-r--r--po/be.po133
-rw-r--r--po/bg.po238
-rw-r--r--po/bn.po201
-rw-r--r--po/br.po123
-rw-r--r--po/ca.po228
-rw-r--r--po/cs.po188
-rw-r--r--po/da.po163
-rw-r--r--po/de.po285
-rw-r--r--po/el.po190
-rw-r--r--po/en_AU.po245
-rw-r--r--po/en_CA.po205
-rw-r--r--po/en_GB.po191
-rw-r--r--po/eo.po125
-rw-r--r--po/es.po263
-rw-r--r--po/et.po129
-rw-r--r--po/eu.po128
-rw-r--r--po/fa.po129
-rw-r--r--po/fi.po264
-rw-r--r--po/fr.po246
-rw-r--r--po/fur.po123
-rw-r--r--po/gl.po287
-rw-r--r--po/he.po200
-rw-r--r--po/hi.po123
-rw-r--r--po/hr.po187
-rw-r--r--po/hu.po179
-rw-r--r--po/id.po189
-rw-r--r--po/it.po294
-rw-r--r--po/ja.po469
-rw-r--r--po/ka.po144
-rw-r--r--po/ko.po308
-rw-r--r--po/ku.po152
-rw-r--r--po/lt.po207
-rw-r--r--po/lv.po125
-rw-r--r--po/mk.po193
-rw-r--r--po/ms.po140
-rw-r--r--po/nb.po252
-rw-r--r--po/ne.po245
-rw-r--r--po/nl.po205
-rw-r--r--po/nn.po129
-rw-r--r--po/no.po2
-rw-r--r--po/oc.po136
-rw-r--r--po/pa.po127
-rw-r--r--po/pl.po361
-rw-r--r--po/pt.po192
-rw-r--r--po/pt_BR.po325
-rw-r--r--po/qu.po125
-rw-r--r--po/ro.po184
-rw-r--r--po/ru.po161
-rw-r--r--po/rw.po170
-rw-r--r--po/sk.po280
-rw-r--r--po/sl.po133
-rw-r--r--po/sq.po125
-rw-r--r--po/sr.po133
-rw-r--r--po/sv.po507
-rw-r--r--po/ta.po125
-rw-r--r--po/th.po282
-rw-r--r--po/tr.po153
-rw-r--r--po/uk.po195
-rw-r--r--po/update-manager.pot2
-rw-r--r--po/ur.po123
-rw-r--r--po/urd.po2
-rw-r--r--po/vi.po179
-rw-r--r--po/xh.po127
-rw-r--r--po/zh_CN.po209
-rw-r--r--po/zh_HK.po193
-rw-r--r--po/zh_TW.po254
70 files changed, 8824 insertions, 4075 deletions
diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py
index e659843a..af1a1b8e 100644
--- a/UpdateManager/UpdateManager.py
+++ b/UpdateManager/UpdateManager.py
@@ -891,7 +891,11 @@ class UpdateManager(SimpleGladeApp):
self.progressbar_cache,
self.label_cache,
self.window_main)
- self.cache = MyCache(progress)
+ if hasattr(self, "cache"):
+ self.cache.open(progress)
+ self.cache._initDepCache()
+ else:
+ self.cache = MyCache(progress)
except AssertionError:
# we assert a clean cache
msg=("<big><b>%s</b></big>\n\n%s"% \
diff --git a/debian/changelog b/debian/changelog
index 1beb54ae..721ed39b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+update-manager (0.44.17) edgy; urgency=low
+
+ * memory leak fixed (lp: #43096)
+
+ --
+
update-manager (0.44.16) edgy; urgency=low
* fix proxy usage when runing in non-root mode (lp: #40626)
diff --git a/po/am.po b/po/am.po
index 9f034eba..7bb6aaf2 100644
--- a/po/am.po
+++ b/po/am.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2006-10-04 20:51+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-06-11 10:15+0000\n"
"Last-Translator: Habte <adbaru@gmail.com>\n"
"Language-Team: Amharic <am@li.org>\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 ""
@@ -255,6 +260,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -311,6 +317,7 @@ 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 ""
@@ -373,6 +380,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -383,6 +391,7 @@ 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"
@@ -433,6 +442,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -498,13 +510,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -544,8 +557,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -715,6 +731,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,14 +821,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 ""
@@ -824,106 +844,114 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
+#: ../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:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1245,184 +1273,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 a932a7d5..c38adbbd 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-08-05 12:39+0000\n"
"Last-Translator: Saleh Odeh <kirk.lock@gmail.com>\n"
"Language-Team: Arabic <ar@li.org>\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 ""
@@ -262,6 +266,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -321,6 +326,7 @@ 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 "هل تريد البدء في عملية التحديث الان؟"
@@ -390,6 +396,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -400,6 +407,7 @@ 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"
@@ -451,8 +459,9 @@ msgstr "جاري عملية البحث عن البرامج الملغية"
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:202
#, python-format
msgid ""
@@ -517,13 +528,14 @@ msgstr "وقع خطأ شديد"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -566,8 +578,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr "لمنع فقدان المعلومات الرجاء إغلاق جميع البرامج و الوثائق المفتوحة."
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
#, fuzzy
msgid "Your system is up-to-date"
msgstr "إن نظامك الآن محدث"
@@ -579,7 +592,7 @@ msgid ""
msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:535
-#, fuzzy
+#, fuzzy, python-format
msgid "<b>Remove %s</b>"
msgstr "<b>إزالة %s </b>"
@@ -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 " "
@@ -743,6 +758,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 "لم يكن ممكنا تشغيل أداة التحديث"
@@ -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,33 +873,35 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "الإصدار %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
-#, fuzzy
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
+#, fuzzy, python-format
msgid "Download size: %s"
msgstr "حجم التنزيل: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
@@ -888,73 +909,79 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "الرجاء الإنتظار, قد يستغرق هذا وقتا"
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "لقد انتهت عملية التحديث"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "فهرس البرامج تالف"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1284,187 +1311,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 ba7dd450..d53002d6 100644
--- a/po/be.po
+++ b/po/be.po
@@ -7,16 +7,16 @@
msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2006-10-04 20:51+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-07-06 06:10+0000\n"
"Last-Translator: Alexander Nyakhaychyk <nyakhaychyk@gmail.com>\n"
"Language-Team: Belarusian <be@li.org>\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 "Немагчыма вызначыць мэта-пакет"
@@ -261,6 +266,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr "Стварыць прадвызначаны сьпіс крыніц?"
@@ -273,8 +279,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\"? Калі вы вылучыце "
"\"Не\", абнаўленьне будзе скасавана."
@@ -329,6 +335,7 @@ 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 "Ці жадаеце пачаць абнаўленьне?"
@@ -395,6 +402,7 @@ msgstr ""
"Узьніклі нейкія памылкі ў час ачысткі. Калі ласка, паглядзіце зьмешчанае "
"ніжэй паведамленьне. "
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -405,6 +413,7 @@ 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"
@@ -455,6 +464,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -520,13 +532,14 @@ msgstr "Узьнікла невыправімая памылка"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -569,8 +582,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -746,6 +762,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,14 +854,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 ""
@@ -857,33 +877,35 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Вэрсія %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
@@ -891,73 +913,79 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Абнаўленьне завершана"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Ваш дыстрыбутыў больш не падтрымліваецца"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Маецца ў наяўнасьці новая рэдакцыя \"%s\" дыстрыбутыву</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Пашкоджаны індэкс праграм"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1279,184 +1307,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 2cc30edc..d630f54b 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:41+0000\n"
"Last-Translator: Nikola Kasabov <nikola.kasabov@gmail.com>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\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 ""
"<big><b>Error scanning the CD</b></big>\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 "Не могат да бъдат предположени мета-пакети"
@@ -283,6 +288,7 @@ msgstr ""
"изберете \"Да\", всички записи \"%s \" ще бъдат актуализирани на \"%s\".\n"
"Ако изберете \"Не\", актуализирането ще бъде отменено."
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr "Генериране на източници по подразбиране?"
@@ -295,8 +301,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,6 +358,7 @@ 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 "Желаете ли да започне надграждането?"
@@ -421,6 +428,7 @@ msgstr ""
"Имаше проблем при почистването. Моля, вижте съобщението по-долу за повече "
"информация! "
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr "Рестартиране на системата"
@@ -431,6 +439,7 @@ 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 +470,7 @@ msgid "Invalid package information"
msgstr "Невалидна информация за пакет"
#: ../DistUpgrade/DistUpgradeControler.py:721
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"After your package information was updated the essential package '%s' can "
"not be found anymore.\n"
@@ -489,6 +498,7 @@ 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'"
@@ -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:202
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"Replace the customized configuration file\n"
"'%s'?"
@@ -558,41 +570,42 @@ msgstr "Възникна фатална грешка"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
#, 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
+#, 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:492
-#, 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:498
-#, 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:503
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"\n"
"\n"
@@ -617,8 +630,9 @@ msgstr ""
"За да предодвратите загуба на данни, затворете всички отворени приложения и "
"документи."
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Системата Ви е актуална"
@@ -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 " "
@@ -796,6 +812,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 "Не може да бъде стартирана помощната програма за надграждане."
@@ -872,12 +889,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/сек"
@@ -902,15 +919,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"
@@ -926,75 +946,78 @@ 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"
msgstr "_Инсталиране на актуализациите"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Версия %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "Сваляне на списъка с промени..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
#, fuzzy
msgid "_Check All"
msgstr "_Проверка"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Размер за изтегляне: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Можете да инсталирате %s актуализация"
msgstr[1] "Можете да инсталирате %s актуализации"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Моля, изчакайте! Това може да отнеме известно време."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Актуализацията е завършена"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "_Инсталиране на актуализациите"
-#: ../UpdateManager/UpdateManager.py:810
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:826
+#, fuzzy, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Нова версия: %s (Размер: %s)"
-#: ../UpdateManager/UpdateManager.py:814
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:830
+#, fuzzy, python-format
msgid "Version %s"
msgstr "Версия %s:"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Вашата дистрибуция вече не се поддържа"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -1004,16 +1027,17 @@ msgstr ""
"Надградете до по-късна версия на Ubuntu Linux. Вижте http://www.ubuntu.com "
"за повече информация за надграждането!"
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Индексът на софтуера е повреден"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1023,19 +1047,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"
@@ -1311,8 +1339,8 @@ msgid ""
"The APT line includes the type, location and components of a repository, for "
"example <i>\"deb http://ftp.debian.org sarge main\"</i>."
msgstr ""
-"<big><b>Добавете пълния APT ред за канала, който искате да "
-"добавите</b></big>\n"
+"<big><b>Добавете пълния APT ред за канала, който искате да добавите</b></"
+"big>\n"
"\n"
"APT редът съдържа вида, местонахождението и компонентите за даден канал. "
"Например <i>„deb http://ftp.debian.org sarge main“</i>."
@@ -1408,206 +1436,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"
@@ -1616,7 +1688,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 при неизвестна скорост"
@@ -1637,7 +1708,8 @@ msgstr "Софтуер несъвместим с DFSG"
#~ msgid ""
#~ "<span weight=\"bold\" size=\"x-large\">Upgrading to Ubuntu 6.10</span>"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"x-large\">Надграждане до Ubuntu 6.06 LTS</span>"
+#~ "<span weight=\"bold\" size=\"x-large\">Надграждане до Ubuntu 6.06 LTS</"
+#~ "span>"
#, fuzzy
#~ msgid "Important security updates of Ubuntu"
@@ -1667,13 +1739,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 "Следните актуализации ще бъдат пропуснати:"
@@ -1694,7 +1766,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."
@@ -1802,16 +1875,16 @@ msgstr "Софтуер несъвместим с DFSG"
#~ msgstr ""
#~ "<big><b>Ключове за идентификация</b></big>\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..."
@@ -1839,8 +1912,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 ""
#~ "Възвръщане на стандартните ключове идващи с дистрибуцията. Това няма да "
#~ "промени потребителските инсталирани ключове."
@@ -1872,13 +1945,13 @@ msgstr "Софтуер несъвместим с DFSG"
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Налични обновления</b></big>\n"
#~ "\n"
-#~ "Следните пакети могат да бъдат обновени. Може да ги обновите като натиснете "
-#~ "бутона „Инсталиране“."
+#~ "Следните пакети могат да бъдат обновени. Може да ги обновите като "
+#~ "натиснете бутона „Инсталиране“."
#~ msgid "Cancel downloading the changelog"
#~ msgstr "Отказ на свалянето на дневника на промените"
@@ -1954,7 +2027,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"
@@ -1962,11 +2036,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 "Обновяване на списъка с пакетите..."
@@ -1979,25 +2053,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 d9b5c84e..e2eec2cf 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:37+0000\n"
"Last-Translator: Khandakar Mujahidul Islam <suzan@bengalinux.org>\n"
"Language-Team: Bengali <bn@li.org>\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 ""
"<big><b>Error scanning the CD</b></big>\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 অনুমান করা যাচ্ছ না"
@@ -258,6 +263,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr "ডিফল্ট sources তৈরি করে?"
@@ -270,11 +276,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"
@@ -285,8 +291,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"
@@ -308,8 +314,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"
@@ -323,6 +329,7 @@ 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 "আপনি কি আপগ্রেড শুরু করতে চান?"
@@ -349,8 +356,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"
@@ -387,6 +394,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr "সিস্টেমটি রিস্টার্ট করছি"
@@ -397,6 +405,7 @@ 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"
@@ -448,6 +457,7 @@ 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'"
@@ -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:249
-#, 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:202
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"Replace the customized configuration file\n"
"'%s'?"
@@ -516,36 +528,37 @@ msgstr "একটি মারাত্মক সমস্যা সংঘটি
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
+#, 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:492
-#, 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:498
-#, 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:503
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"\n"
"\n"
@@ -560,15 +573,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:512
msgid "To prevent data loss close all open applications and documents."
msgstr "তথ্য হারাতে না চাইলে সকল অ্যাপলিকেশন এবং ডকুমেন্ট বন্ধ রাখুন।"
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "আপনার সিস্টেম আপ-টু-ডেট"
@@ -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 " "
@@ -742,6 +756,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 "আপগ্রেড টুলটি চালানো যায় নি"
@@ -783,9 +798,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"
@@ -797,8 +810,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"
@@ -838,18 +851,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"
@@ -865,110 +880,118 @@ msgstr "উবুন্টু ৫.১০ ব্যাকপোর্ট"
msgid "Distribution updates"
msgstr "পুনরায় আপগ্রেড শুরু (_R)"
+#. TRANSLATORS: updates from an 'unknown' origin
#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266
#, fuzzy
msgid "Other updates"
msgstr "আপডেট ইন্সটল করো (_I)"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "ভার্সন %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "পরিবর্তনের তালিকা ডাউনলোড করা হচ্ছ..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
#, fuzzy
msgid "_Check All"
msgstr "পরীক্ষা করো (_C)"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "ডাউনলোড এর আকার: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "আপনি %s আপডেট ইনস্টল করতে পারেন"
msgstr[1] "আপনি %s আপডেট ইনস্টল করতে পারেন"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "অনুগ্রহ করে অপেক্ষা করুন, এটি কিছুটা সময় নিতে পারে।"
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "আপডেট সম্পন্ন"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "আপডেট ইন্সটল করো (_I)"
-#: ../UpdateManager/UpdateManager.py:810
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:826
+#, fuzzy, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "নতুন ভার্সন: %s (আকার: %s)"
-#: ../UpdateManager/UpdateManager.py:814
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:830
+#, fuzzy, python-format
msgid "Version %s"
msgstr "ভার্সন %s:"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "আপনার ডিস্ট্রিবিউশনটি আর সমর্থিত নয়"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "সফ্টওয়্যার ইন্ডেক্সটি নস্ট"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1306,201 +1329,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 ""
@@ -1546,7 +1613,6 @@ msgstr ""
#~ msgid "The following updates will be skipped:"
#~ msgstr "নিম্নের আপডেটগুলো বাদ দেয়া হবে:"
-#, python-format
#~ msgid "About %li seconds remaining"
#~ msgstr "%li সেকেন্ড বাকি আছে"
@@ -1554,8 +1620,7 @@ msgstr ""
#~ msgstr "ডাউনলোড সম্পন্ন"
#~ msgid "The upgrade aborts now. Please report this bug."
-#~ msgstr ""
-#~ "আপগ্রেডটি নিস্ফল ভাবে বের হয়ে যাচ্ছ। অনুগ্রহ করে এই বাগটি রিপোর্ট করুন।"
+#~ msgstr "আপগ্রেডটি নিস্ফল ভাবে বের হয়ে যাচ্ছ। অনুগ্রহ করে এই বাগটি রিপোর্ট করুন।"
#~ msgid "Upgrading Ubuntu"
#~ msgstr "উবুন্টু আপগ্রেড করছি"
@@ -1572,8 +1637,8 @@ msgstr ""
#~ msgid ""
#~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
#~ msgstr ""
-#~ "অনুগ্রহ করে অন্যান্য অ্যাপলিকেশন যেমন, 'aptitude' অথবা 'Synaptic' প্রথমে "
-#~ "বন্ধ করুন।"
+#~ "অনুগ্রহ করে অন্যান্য অ্যাপলিকেশন যেমন, 'aptitude' অথবা 'Synaptic' প্রথমে বন্ধ "
+#~ "করুন।"
#~ msgid "<b>Channels</b>"
#~ msgstr "<b>চ্যানেল</b>"
@@ -1620,4 +1685,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 2bb246dc..cda3200d 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-05-19 02:42+0000\n"
"Last-Translator: Oublieuse <oublieuse@gmail.com>\n"
"Language-Team: Breton <br@li.org>\n"
@@ -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 ""
@@ -255,6 +260,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -311,6 +317,7 @@ 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 ""
@@ -373,6 +380,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -383,6 +391,7 @@ 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"
@@ -433,6 +442,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -498,13 +510,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -544,8 +557,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -715,6 +731,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,14 +821,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 ""
@@ -824,106 +844,114 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
+#: ../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:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -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/ca.po b/po/ca.po
index d79e8ab3..0ce2d339 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:41+0000\n"
"Last-Translator: Jordi Irazuzta <irazuzta@gmail.com>\n"
"Language-Team: Catalan <tradgnome@softcatala.org>\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 ""
"<big><b>Error scanning the CD</b></big>\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 ""
@@ -278,6 +283,7 @@ 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?"
@@ -341,11 +347,12 @@ 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. \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'."
+#. 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ó?"
@@ -418,6 +425,7 @@ 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"
@@ -428,6 +436,7 @@ 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,6 +491,7 @@ 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'"
@@ -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:249
-#, 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:202
-#, 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:356
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
+#, 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:492
-#, 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:498
-#, 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:503
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"\n"
"\n"
@@ -604,8 +617,9 @@ 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
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "El vostre sistema està actualitzat"
@@ -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 "<b><big>Restart the system to complete the upgrade</big></b>"
-msgstr ""
-"<b><big>Reinicieu el sistema per a completar l'actualització</big></b>"
+msgstr "<b><big>Reinicieu el sistema per a completar l'actualització</big></b>"
#: ../DistUpgrade/DistUpgrade.glade.h:6
msgid "<b><big>Start the upgrade?</big></b>"
@@ -785,6 +800,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ó"
@@ -850,12 +866,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"
@@ -880,15 +896,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"
@@ -904,75 +923,78 @@ 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"
msgstr "_Instal·la les actualitzacions"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Versió %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "S'està descarregant la llista de canvis..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
#, fuzzy
msgid "_Check All"
msgstr "_Comprova"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Mida de la descàrrega: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Podeu instal·lar %s actualització"
msgstr[1] "Podeu instal·lar %s actualitzacions"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Espereu, això pot tardar una estona."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "S'ha completat l'actualització"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "S'estan comprovant les actualitzacions..."
-#: ../UpdateManager/UpdateManager.py:810
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:826
+#, fuzzy, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Versió nova: %s (Mida: %s)"
-#: ../UpdateManager/UpdateManager.py:814
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:830
+#, fuzzy, python-format
msgid "Version %s"
msgstr "Versió %s:"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "La vostra distribució ja no es mantindrà més"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -982,16 +1004,17 @@ msgstr ""
"sistema a la darrera versió d'Ubuntu. Vegeu http://www.ubuntu.com per a més "
"informació."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Ja disposeu de la nova distribució '%s'</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "L'índex de programari s'ha trencat"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1001,19 +1024,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"
@@ -1377,207 +1404,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"
@@ -1586,9 +1657,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"
@@ -1641,8 +1712,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 "
@@ -1652,7 +1723,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"
@@ -1763,8 +1833,9 @@ msgstr "Programari no compatible DFSG"
#~ msgstr ""
#~ "<big><b>Claus d'autenticació</b></big>\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 ""
#~ "<big><b>Enter the complete APT line of the repository that you want to "
@@ -1777,15 +1848,15 @@ msgstr "Programari no compatible DFSG"
#~ "<big><b>Introduïu la línia APT del dipòsit que voleu afegir</b></big>\n"
#~ "\n"
#~ "La línia APT conté el tipus, la ubicació i el contingut del dipòsit; per "
-#~ "exemple, <i>\"deb http://ftp.debian.org sarge main\"</i>. Podeu trobar una "
-#~ "descripció més detallada de la sintaxi en la documentació."
+#~ "exemple, <i>\"deb http://ftp.debian.org sarge main\"</i>. 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..."
@@ -1818,11 +1889,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"
@@ -1854,8 +1925,8 @@ msgstr "Programari no compatible DFSG"
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Actualitzacions disponibles</b></big>\n"
#~ "\n"
@@ -1867,8 +1938,8 @@ msgstr "Programari no compatible DFSG"
#~ "\n"
#~ "Need to get the changes from the central server"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"larger\">S'estan descarregant els "
-#~ "canvis</span>\n"
+#~ "<span weight=\"bold\" size=\"larger\">S'estan descarregant els canvis</"
+#~ "span>\n"
#~ "\n"
#~ "Es necessita obtenir els canvis des del servidor central"
@@ -1957,7 +2028,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"
@@ -1972,8 +2044,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ó."
@@ -1995,24 +2067,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"
@@ -2020,4 +2092,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 a794a893..43bb25e7 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:41+0000\n"
"Last-Translator: Tomáš Hála <tomas@monty.cz>\n"
"Language-Team: Czech <cs@li.org>\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 "%s aktualizace"
#. 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 ""
"<big><b>Error scanning the CD</b></big>\n"
"\n"
@@ -166,6 +168,7 @@ msgstr "Nemohu aktualizovat požadované meta-balíky"
msgid "A essential package would have to be removed"
msgstr "Základní balík by musel být odstraněn"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:220
msgid "Could not calculate the upgrade"
msgstr "Nemohu vypočítat aktualizaci"
@@ -184,6 +187,7 @@ msgstr ""
"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í."
+#. 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ů"
@@ -210,6 +214,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"
@@ -292,6 +297,7 @@ 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?"
@@ -363,6 +369,7 @@ 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?"
@@ -441,6 +448,7 @@ 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. "
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr "Obnovuje se původní stav systému"
@@ -451,6 +459,7 @@ msgid "Fetching backport of '%s'"
msgstr "Stahuji 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"
@@ -491,8 +500,8 @@ msgstr ""
"Poté co byly aktualizovány informaco 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"
@@ -510,6 +519,7 @@ msgstr "Vyhledáván zastaralý software"
msgid "System upgrade is complete."
msgstr "Upgrade 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'"
@@ -521,23 +531,24 @@ msgid "Fetching is complete"
msgstr "Aktualizace je dokončena"
#: ../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"
#: ../DistUpgrade/DistUpgradeViewGtk.py:130
#: ../DistUpgrade/DistUpgradeViewGtk.py:249
-#, fuzzy
+#, fuzzy, python-format
msgid "About %s remaining"
msgstr "Zhruba %li minut 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"
@@ -553,11 +564,12 @@ msgid ""
"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/."
+"'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
+#, fuzzy, python-format
msgid ""
"Replace the customized configuration file\n"
"'%s'?"
@@ -582,19 +594,20 @@ msgstr "Nastala fatální chyba"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
#, 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 ""
"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."
+"nyní předčasně ukončen. Váš původní 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
+#, fuzzy, 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."
@@ -602,7 +615,7 @@ msgstr[1] "%s balíky budou odstraněny."
msgstr[2] "%s balíků bude odstraněno."
#: ../DistUpgrade/DistUpgradeViewGtk.py:492
-#, 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 nový balík bude nainstalován."
@@ -610,7 +623,7 @@ msgstr[1] "%s nové balíky budou nainstalovány."
msgstr[2] "%s nových balíků bude nainstalováno."
#: ../DistUpgrade/DistUpgradeViewGtk.py:498
-#, fuzzy
+#, fuzzy, 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í."
@@ -618,7 +631,7 @@ msgstr[1] "%s balíky budou nahrazeny vyšší verzí."
msgstr[2] "%s balíky bude nahrazeno vyšší verzí."
#: ../DistUpgrade/DistUpgradeViewGtk.py:503
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"\n"
"\n"
@@ -639,8 +652,9 @@ msgstr "Upgrade může trvat několik hodin a nesmí být později přerušen."
msgid "To prevent data loss close all open applications and documents."
msgstr "Pro zamezení ztráty dat, uzavřete všechny aplikace a dokumenty."
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Váš systém je aktuální"
@@ -668,12 +682,12 @@ msgid "Upgrade %s"
msgstr "Aktualizovat %s"
#: ../DistUpgrade/DistUpgradeView.py:27
-#, fuzzy
+#, fuzzy, python-format
msgid "%li days %li hours %li minutes"
msgstr "Zhruba %li hodin %li minut zbývá"
#: ../DistUpgrade/DistUpgradeView.py:29
-#, fuzzy
+#, fuzzy, python-format
msgid "%li hours %li minutes"
msgstr "Zbývá zhruba %li hodin %li minut"
@@ -688,6 +702,7 @@ msgid "%li seconds"
msgstr "%li sekund"
#. 56 kbit
+#. 1Mbit = 1024 kbit
#: ../DistUpgrade/DistUpgradeView.py:38
#, python-format
msgid ""
@@ -709,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 " "
@@ -821,6 +837,7 @@ msgstr "Nelze 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"
@@ -896,12 +913,12 @@ msgstr ""
"Autentizace aktualizace selhala. Může být problém se sítí nebo serverem. "
#: ../UpdateManager/GtkProgress.py:108
-#, fuzzy
+#, fuzzy, python-format
msgid "Downloading file %(current)li of %(total)li with %(speed)s/s"
msgstr "Stahuji %li. soubor z %li rychlostí %s/s"
#: ../UpdateManager/GtkProgress.py:113
-#, fuzzy
+#, fuzzy, python-format
msgid "Downloading file %(current)li of %(total)li"
msgstr "Stahuji %li. soubor z %li rychlostí %s/s"
@@ -924,14 +941,17 @@ msgid ""
msgstr ""
"Selhalo stažení seznamu změ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"
@@ -947,35 +967,37 @@ msgstr "Ubuntu 5.10 Backports"
msgid "Distribution updates"
msgstr "_Pokračovat v upgradu"
+#. TRANSLATORS: updates from an 'unknown' origin
#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266
msgid "Other updates"
msgstr "Ostatní aktualizace"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Verze %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "Stahuji seznam změn ..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
#, fuzzy
msgid "_Check All"
msgstr "_Zkontrolovat"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Stahovaná velikost: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
@@ -983,39 +1005,40 @@ msgstr[0] "Můžete instalovat %s aktualizaci"
msgstr[1] "Můžete instalovat %s aktualizace"
msgstr[2] "Můžete instalovat %s aktualizací"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Prosím čekejte, může to nějakou dobu trvat."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Aktualizace je dokončena"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "Zkontrolovat dostupné aktualizace"
-#: ../UpdateManager/UpdateManager.py:810
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:826
+#, fuzzy, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Nová verze: %s (Velikost: %s)"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Verze %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Velikost: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Vaše distribude už není podporovaná"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -1025,16 +1048,17 @@ msgstr ""
"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."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Nové vydání distribuce '%s' je k dispozici</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Seznam softwaru je poškozen"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1044,19 +1068,23 @@ msgstr ""
"správce balíčků \"Synaptic\" nebo nejdříve spusťe v terminálu \"sudo apt-get "
"install -f\" pro opravu tohoto problému."
+#. 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"
@@ -1331,8 +1359,8 @@ msgid ""
"The APT line includes the type, location and components of a repository, for "
"example <i>\"deb http://ftp.debian.org sarge main\"</i>."
msgstr ""
-"<big><b>Zadejte úplný řádek pro cestu APT kanálu, který chcete "
-"přidat</b></big>\n"
+"<big><b>Zadejte úplný řádek pro cestu APT kanálu, který chcete přidat</b></"
+"big>\n"
"\n"
"Řádek pro APT obsahuje typ, umístění a součásti kanálu, např. <i>\"deb "
"http://ftp.debian.org sarge main\"</i>."
@@ -1422,197 +1450,240 @@ 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)"
+#. 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 "Nesvobodný (Multiverse)"
+#. 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)"
+#. 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 ""
+#. CompDescription
#: ../data/channels/Ubuntu.info.in:70
msgid "Restricted software (Multiverse)"
msgstr "Omezený 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 "Cdrom s 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 "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"
+#. Description
#: ../data/channels/Ubuntu.info.in:140
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 Aktualizace"
+#. 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 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"
+#. Description
#: ../data/channels/Ubuntu.info.in:182
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.04 Aktualizace"
+#. Description
#: ../data/channels/Ubuntu.info.in:187
#, fuzzy
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 "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é"
+#. CompDescription
#: ../data/channels/Ubuntu.info.in:211
msgid "Restricted copyright"
msgstr "Omezeno copyrightem"
+#. Description
#: ../data/channels/Ubuntu.info.in:218
msgid "Ubuntu 4.10 Security Updates"
msgstr "Ubuntu 4.10 Bezpečnostní aktualizace"
+#. Description
#: ../data/channels/Ubuntu.info.in:223
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 4.10 Aktualizace"
+#. Description
#: ../data/channels/Ubuntu.info.in:228
#, fuzzy
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\" Bezpoečnostní Aktualizace"
+#. 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"
+#. CompDescription
#: ../data/channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr "Žádný DFSG kompatibilní Software"
-#, python-format
#~ msgid "Downloading file %li of %li with unknown speed"
#~ msgstr "Stahuji %li. soubor z %li neznámou rychlostí"
@@ -1651,8 +1722,8 @@ msgstr "Žádný DFSG kompatibilní Software"
#~ msgstr ""
#~ "<big><b>Prozkoumává se systém</b></big>\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é"
@@ -1660,7 +1731,6 @@ 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á"
@@ -1737,14 +1807,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 "<b>Sections</b>"
#~ msgstr "<b>Sekce</b>"
#~ msgid "<b>Sections:</b>"
-#~ msgstr "<b>Sekce:</b>" \ No newline at end of file
+#~ msgstr "<b>Sekce:</b>"
diff --git a/po/da.po b/po/da.po
index d74b0d31..ee6d9106 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:41+0000\n"
"Last-Translator: Mathias-K <mathias@computergeil.dk>\n"
"Language-Team: Danish <da@li.org>\n"
@@ -34,7 +34,7 @@ msgid "Every two weeks"
msgstr "Hver anden uge"
#: ../SoftwareProperties/SoftwareProperties.py:144
-#, fuzzy
+#, fuzzy, python-format
msgid "Every %s days"
msgstr "Hver %s. dag"
@@ -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"
@@ -289,6 +294,7 @@ 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?"
@@ -360,6 +366,7 @@ 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?"
@@ -437,6 +444,7 @@ 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"
@@ -447,6 +455,7 @@ 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"
@@ -506,6 +515,7 @@ 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'"
@@ -527,12 +537,13 @@ msgid "About %s remaining"
msgstr "Omkring %s tilbage"
#: ../DistUpgrade/DistUpgradeViewGtk.py:132
-#, fuzzy
+#, fuzzy, 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"
@@ -547,10 +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 ""
-"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
#, python-format
msgid ""
@@ -576,9 +587,9 @@ msgstr "Der opstod en alvorlig fejl"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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:487
#, python-format
msgid "%d package is going to be removed."
@@ -631,8 +643,9 @@ 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:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Dit system er opdateret"
@@ -680,6 +693,7 @@ msgid "%li seconds"
msgstr "%li sekunder"
#. 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 " "
@@ -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. 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,113 +955,121 @@ 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"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Version %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "Henter listen med ændringer..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "_Fjern alle afkrydsninger"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr "_Afkryds alle"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Overføringsstørrelse: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Du kan installere %s opdatering"
msgstr[1] "Du kan installere %s opdateringer"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Vent venligst, dette kan tage et stykke tid."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Opdatering er gennemført"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "Leder efter opdateringer"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Fra version %(old_version)s til %(new_version)s"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Version %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Størrelse: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Din distribution understøttes ikke længere"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 ""
"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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Ny distributionsudgivelse \"%s\" er tilgængelig</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Softwareindekset er ødelagt"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 ""
"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"
@@ -1068,8 +1095,8 @@ msgstr "<big><b>Hold dit system opdateret</b></big>"
#: ../data/glade/UpdateManager.glade.h:5
msgid "<big><b>Not all updates can be installed</b></big>"
msgstr ""
-"<big><b>Ikke alle opdateringer kan installeres</b></big> \n"
-" \n"
+"<big><b>Ikke alle opdateringer kan installeres</b></big>\r\n"
+"\r\n"
"%s"
#: ../data/glade/UpdateManager.glade.h:6
@@ -1414,191 +1441,234 @@ 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)"
+#. 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 ""
+#. 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"
@@ -1621,7 +1691,8 @@ msgstr "Ikke-DFSG-kompatibel software"
#~ msgid ""
#~ "<span weight=\"bold\" size=\"x-large\">Upgrading to Ubuntu 6.10</span>"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"x-large\">Opgraderer til Ubuntu 6.06 LTS</span>"
+#~ "<span weight=\"bold\" size=\"x-large\">Opgraderer til Ubuntu 6.06 LTS</"
+#~ "span>"
#, fuzzy
#~ msgid "Important security updates of Ubuntu"
@@ -1640,17 +1711,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"
@@ -1727,4 +1798,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 6a022620..94bfb9aa 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:37+0000\n"
"Last-Translator: Sebastian Heinlein <ubuntu@glatzor.de>\n"
"Language-Team: German GNOME Translations <gnome-de@gnome.org>\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 ""
"<big><b>Error scanning the CD</b></big>\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"
@@ -258,8 +263,7 @@ 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 ""
@@ -297,6 +301,7 @@ 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?"
@@ -309,8 +314,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."
@@ -370,6 +375,7 @@ 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?"
@@ -450,6 +456,7 @@ 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"
@@ -460,6 +467,7 @@ 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"
@@ -519,6 +527,7 @@ 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'"
@@ -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:202
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"Replace the customized configuration file\n"
"'%s'?"
@@ -590,9 +601,9 @@ msgstr "Ein fataler Fehler ist aufgetreten"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
#, 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-"
@@ -602,29 +613,30 @@ 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
+#, 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:492
-#, 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:498
-#, 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:503
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"\n"
"\n"
@@ -648,8 +660,9 @@ msgstr ""
"Um Datenverlust zu vermeiden, schließen Sie alle offenen Anwendungen und "
"Dokumente."
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Ihr System ist auf dem aktuellen Stand"
@@ -695,6 +708,7 @@ msgid "%li seconds"
msgstr "%li Sekunden"
#. 56 kbit
+#. 1Mbit = 1024 kbit
#: ../DistUpgrade/DistUpgradeView.py:38
#, python-format
msgid ""
@@ -716,6 +730,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 " "
@@ -829,6 +844,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"
@@ -906,12 +922,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"
@@ -937,14 +953,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"
@@ -959,74 +978,77 @@ 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"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Version %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "Liste mit Änderungen wird heruntergeladen..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
#, fuzzy
msgid "_Check All"
msgstr "_Prüfen"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Download-Größe: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Sie können %s Aktualisierung installieren"
msgstr[1] "Sie können %s Aktualisierungen installieren"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Bitte warten Sie, dieser Vorgang kann etwas Zeit in Anspruch nehmen."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Aktualisierung ist abgeschlossen"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "Nach verfügbaren Aktualisierungen suchen"
-#: ../UpdateManager/UpdateManager.py:810
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:826
+#, fuzzy, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Neue Version: %s (Größe: %s)"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Version %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Größe: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Ihre Distribution wird nicht länger unterstützt"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -1034,20 +1056,20 @@ 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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Neue Version '%s' der Distribution ist freigegeben</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Der Software-Index ist beschädigt"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1057,19 +1079,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"
@@ -1086,8 +1112,8 @@ msgstr ""
"<b><big>Sie müssen manuell auf Aktualisierungen prüfen</big></b>\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 "<big><b>Keep your system up-to-date</b></big>"
@@ -1447,187 +1473,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"
@@ -1635,7 +1705,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"
@@ -1659,7 +1728,8 @@ msgstr "Nicht DFSG-kompatible Software"
#~ msgid ""
#~ "<span weight=\"bold\" size=\"x-large\">Upgrading to Ubuntu 6.10</span>"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"x-large\">Auf Ubuntu 6.10 aktualisieren</span>"
+#~ "<span weight=\"bold\" size=\"x-large\">Auf Ubuntu 6.10 aktualisieren</"
+#~ "span>"
#~ msgid "Important security updates of Ubuntu"
#~ msgstr "Wichtige Sicherheitsaktualisierungen von Ubuntu"
@@ -1686,8 +1756,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 "
@@ -1697,7 +1767,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"
@@ -1706,8 +1775,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"
@@ -1726,7 +1795,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 "<b>Channels</b>"
#~ msgstr "<b>Kanäle</b>"
@@ -1777,12 +1847,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"
@@ -1791,27 +1861,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 ""
@@ -1856,13 +1926,14 @@ msgstr "Nicht DFSG-kompatible Software"
#~ "\n"
#~ "Need to get the changes from the central server"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"larger\">Änderungen werden "
-#~ "heruntergeladen</span>\n"
+#~ "<span weight=\"bold\" size=\"larger\">Änderungen werden heruntergeladen</"
+#~ "span>\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"
@@ -1889,13 +1960,14 @@ msgstr "Nicht DFSG-kompatible Software"
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Verfügbare Aktualisierungen</b></big>\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 "<b>Repository</b>"
#~ msgstr "<b>Repository</b>"
@@ -1924,12 +1996,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"
@@ -1951,11 +2023,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"
@@ -1980,8 +2053,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."
@@ -1989,12 +2062,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 ""
@@ -2005,8 +2079,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."
@@ -2019,20 +2093,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."
@@ -2042,8 +2116,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."
@@ -2052,7 +2126,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"
@@ -2075,15 +2150,17 @@ msgstr "Nicht DFSG-kompatible Software"
#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
#~ msgstr ""
-#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image <cdimage@ubuntu.com>"
+#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image <cdimage@ubuntu."
+#~ "com>"
#, fuzzy
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Verfügbare Aktualisierungen</b></big>\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 e5980add..152bc4a7 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:37+0000\n"
"Last-Translator: Kostas Papadimas <pkst@gmx.net>\n"
"Language-Team: Greek <team@gnome.gr>\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 "Αδυναμία εύρεσης μετα-πακέτου"
@@ -292,6 +297,7 @@ msgstr ""
"εδώ 'Ναι' θα ενημερωθούν όλες οι '%s' καταχωρίσεις σε '%s'.\n"
" Αν επιλέξετε 'Όχι' η ενημέρωση θα ακυρωθεί."
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr "Δημιουργία προεπιλεγμένων πηγών;"
@@ -304,8 +310,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,6 +370,7 @@ 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,6 +448,7 @@ msgstr ""
"Δημιουργήθηκαν ορισμένα προβλήματα κατά την εκκαθάριση. Παρακαλώ δείτε το "
"παρακάτω μήνυμα για περισσότερες πληροφορίες. "
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr "Γίνεται επαναφορά αρχικής κατάστασης συστήματος"
@@ -451,6 +459,7 @@ 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"
@@ -510,6 +519,7 @@ 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'"
@@ -520,7 +530,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"
@@ -531,12 +541,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 "Γίνεται εφαρμογή αλλαγών"
@@ -555,6 +566,7 @@ msgstr ""
"'update-manager' και συμπεριλάβετε και τα αρχεία του /var/log/dist-upgrade/ "
"στην αναφορά σφάλματος."
+#. self.expander.set_expanded(True)
#: ../DistUpgrade/DistUpgradeViewGtk.py:202
#, python-format
msgid ""
@@ -580,18 +592,19 @@ msgstr "Προέκυψε μοιραίο σφάλμα"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -639,8 +652,9 @@ msgstr ""
"Για να αποφύγετε απώλεια δεδομένων, κλείστε όλες τις ανοικτές εφαρμογές και "
"έγγραφα."
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Το σύστημα σας είναι ενημερωμένο"
@@ -688,6 +702,7 @@ msgid "%li seconds"
msgstr "%li δευτερόλεπτα"
#. 56 kbit
+#. 1Mbit = 1024 kbit
#: ../DistUpgrade/DistUpgradeView.py:38
#, python-format
msgid ""
@@ -709,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 " "
@@ -822,6 +838,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 "Αδυναμία εκτέλεσης του εργαλείου αναβαθμίσεων"
@@ -839,8 +856,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"
@@ -856,8 +872,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"
@@ -927,14 +942,17 @@ 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 "Προτεινόμενες ενημερώσεις"
@@ -947,72 +965,75 @@ msgstr "Backports"
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Έκδοση %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "Λήψη της λίστας των αλλαγών..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "Α_ποεπιλογή όλων"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr "Έλε_γχος όλων"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Μέγεθος λήψης: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Μπορείτε να εγκαταστήσετε %s ενημέρωση"
msgstr[1] "Μπορείτε να εγκαταστήσετε %s ενημερώσεις"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Παρακαλώ περιμένετε, αυτό μπορεί να διαρκέσει λίγο χρόνο."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Η ενημέρωση ολοκληρώθηκε"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "Έλεγχος για ενημερώσεις"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Από έκδοση: %(old_version)s σε %(new_version)s"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Έκδοση %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Μέγεθος: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Η διανομή σας δεν υποστηρίζεται πια"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -1023,16 +1044,17 @@ msgstr ""
"Ubuntu Linux. Δείτε το http://www.ubuntu.com για περισσότερες πληροφορίες "
"για την αναβάθμιση."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Είναι διαθέσιμη νέα έκδοση διανομής '%s'</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Ο κατάλογος λογισμικού είναι κατεστραμμένος"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1042,19 +1064,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"
@@ -1079,8 +1105,7 @@ msgstr "<big><b>Διατηρήστε το σύστημα σας ενημερωμ
#: ../data/glade/UpdateManager.glade.h:5
msgid "<big><b>Not all updates can be installed</b></big>"
-msgstr ""
-"<big><b>Δεν είναι δυνατή η εγκατάσταση όλων των ενημερώσεων</b></big>"
+msgstr "<big><b>Δεν είναι δυνατή η εγκατάσταση όλων των ενημερώσεων</b></big>"
#: ../data/glade/UpdateManager.glade.h:6
msgid "<big><b>Starting update manager</b></big>"
@@ -1422,193 +1447,236 @@ 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)"
+#. 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)"
+#. 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 με άγνωστη ταχύτητα"
@@ -1649,16 +1717,16 @@ msgstr "Λογισμικό μη συμβατό με DFSG"
#~ msgstr ""
#~ "<big><b>Γίνεται ανάλυση του συστήματος σας</b></big>\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 ""
#~ "Μερικές ενημερώσεις απαιτούν την απομάκρυνση επιπρόσθετου λογισμικού. "
#~ "Χρησιμοποιήστε την λειτουργία \"Σημείωση όλων των αναβαθμίσεων\" από το "
@@ -1668,7 +1736,6 @@ msgstr "Λογισμικό μη συμβατό με DFSG"
#~ msgid "The following updates will be skipped:"
#~ msgstr "Οι παρακάτω ενημερώσεις θα παρακαμφθούν:"
-#, python-format
#~ msgid "About %li seconds remaining"
#~ msgstr "Απομένουν περίπου %li δευτερόλεπτα"
@@ -1693,7 +1760,8 @@ msgstr "Λογισμικό μη συμβατό με DFSG"
#~ msgid ""
#~ "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
#~ msgstr ""
-#~ "Παρακαλώ κλείστε την άλλη εφαρμογή πρώτα π.χ. το 'aptitude' ή το 'Synaptic'."
+#~ "Παρακαλώ κλείστε την άλλη εφαρμογή πρώτα π.χ. το 'aptitude' ή το "
+#~ "'Synaptic'."
#~ msgid "<b>Channels</b>"
#~ msgstr "<b>Κανάλια</b>"
@@ -1746,13 +1814,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"
@@ -1783,24 +1852,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 ""
-#~ "<b><big>You need to manually reload the latest information about "
-#~ "updates</big></b>\n"
+#~ "<b><big>You need to manually reload the latest information about updates</"
+#~ "big></b>\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 ""
-#~ "<b><big>Πρέπει να ανανεώσετε χειροκίνητα τις τελευταίες πληροφορίες για τις "
-#~ "ενημερώσεις</big></b>\n"
+#~ "<b><big>Πρέπει να ανανεώσετε χειροκίνητα τις τελευταίες πληροφορίες για "
+#~ "τις ενημερώσεις</big></b>\n"
#~ "\n"
-#~ "Το σύστημα σας δεν έχει ρυθμιστεί να κάνει αυτόματο έλεγχο για ενημερώσεις. "
-#~ "Μπορείτε να ρυθμίσετε αυτή τη συμπεριφορά μέσω του μενού \"Σύστημα\" -> "
-#~ "\"Διαχείριση συστήματος\" -> \"Ιδιότητες λογισμικού\"."
+#~ "Το σύστημα σας δεν έχει ρυθμιστεί να κάνει αυτόματο έλεγχο για "
+#~ "ενημερώσεις. Μπορείτε να ρυθμίσετε αυτή τη συμπεριφορά μέσω του μενού "
+#~ "\"Σύστημα\" -> \"Διαχείριση συστήματος\" -> \"Ιδιότητες λογισμικού\"."
#~ msgid ""
#~ "<span weight=\"bold\" size=\"larger\">Downloading changes</span>\n"
@@ -1822,4 +1892,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 4813e497..f3bc426b 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-09-11 09:53+0000\n"
"Last-Translator: David Satchell <david@davidsatchell.net>\n"
"Language-Team: English (Australia) <en_AU@li.org>\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"
@@ -275,6 +280,7 @@ 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?"
@@ -342,6 +348,7 @@ 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?"
@@ -413,6 +420,7 @@ 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"
@@ -423,6 +431,7 @@ 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,6 +487,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -545,17 +557,18 @@ msgstr "A fatal error occured"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -600,8 +613,9 @@ 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:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "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 " "
@@ -777,6 +793,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"
@@ -871,14 +888,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"
@@ -891,71 +911,74 @@ 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"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Version %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Download size: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "You can install %s update"
msgstr[1] "You can install %s updates"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Please wait, this can take some time."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Update is complete"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Version %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Size: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Your distribution is not supported anymore"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -965,16 +988,17 @@ msgstr ""
"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
"information on upgrading."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>New distribution release '%s' is available</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Software index is broken"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -984,19 +1008,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"
@@ -1333,190 +1361,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 ""
#~ "<big><b>Error scaning the CD</b></big>\n"
#~ "\n"
@@ -1527,22 +1598,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."
@@ -1556,11 +1627,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"
@@ -1581,7 +1652,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"
@@ -1591,37 +1661,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'?"
@@ -1631,41 +1694,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"
@@ -1685,17 +1748,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"
@@ -1714,12 +1775,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:"
@@ -1733,12 +1794,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."
@@ -1748,14 +1809,16 @@ msgstr "Non-DFSG-compatible Software"
#~ msgid ""
#~ "<b><big>You must check for updates manually</big></b>\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 ""
#~ "<b><big>You must check for updates manually</big></b>\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 ""
#~ "<big><b>Examining your system</b></big>\n"
@@ -1796,16 +1859,16 @@ msgstr "Non-DFSG-compatible Software"
#~ msgid ""
#~ "<b><big>The channel information is out-of-date</big></b>\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 ""
#~ "<b><big>The channel information is out-of-date</big></b>\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."
@@ -1817,14 +1880,14 @@ msgstr "Non-DFSG-compatible Software"
#~ msgstr "<b>Components</b>"
#~ msgid ""
-#~ "<big><b>Enter the complete APT line of the channel that you want to "
-#~ "add</b></big>\n"
+#~ "<big><b>Enter the complete APT line of the channel that you want to add</"
+#~ "b></big>\n"
#~ "\n"
#~ "The APT line includes the type, location and components of a channel, for "
#~ "example <i>\"deb http://ftp.debian.org sarge main\"</i>."
#~ msgstr ""
-#~ "<big><b>Enter the complete APT line of the channel that you want to "
-#~ "add</b></big>\n"
+#~ "<big><b>Enter the complete APT line of the channel that you want to add</"
+#~ "b></big>\n"
#~ "\n"
#~ "The APT line includes the type, location and components of a channel, for "
#~ "example <i>\"deb http://ftp.debian.org sarge main\"</i>."
@@ -1845,19 +1908,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"
@@ -1875,4 +1938,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 d650cf9c..11810e63 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:42+0000\n"
"Last-Translator: Adam Weinberger <adamw@gnome.org>\n"
"Language-Team: Canadian English <adamw@gnome.org>\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 ""
@@ -260,6 +265,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -317,6 +323,7 @@ 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,6 +386,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -389,6 +397,7 @@ 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
@@ -443,6 +452,7 @@ 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,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:202
#, python-format
msgid ""
@@ -509,13 +521,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -555,8 +568,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
#, fuzzy
msgid "Your system is up-to-date"
msgstr "Your system is up-to-date!"
@@ -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 " "
@@ -732,6 +748,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 @@ 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"
@@ -854,110 +874,118 @@ 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"
msgstr "_Install"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Version %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "Cancel downloading the ChangeLog"
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:633
+#, fuzzy, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Installing updates..."
msgstr[1] "Installing updates..."
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "_Install"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:830
+#, fuzzy, python-format
msgid "Version %s"
msgstr "Version %s:"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
#, fuzzy
msgid "Your distribution is not supported anymore"
msgstr "Your distribution is no longer supported"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1217,8 +1245,8 @@ msgid ""
"The APT line includes the type, location and components of a repository, for "
"example <i>\"deb http://ftp.debian.org sarge main\"</i>."
msgstr ""
-"<big><b>Enter the complete APT line of the repository that you want to "
-"add</b></big>\n"
+"<big><b>Enter the complete APT line of the repository that you want to add</"
+"b></big>\n"
"\n"
"The APT line contains the type, location and content of a repository, for "
"example <i>\"deb http://ftp.debian.org sarge main\"</i>. You can find a "
@@ -1306,210 +1334,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 ""
@@ -1600,8 +1673,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?"
@@ -1650,13 +1723,13 @@ msgstr ""
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Available Updates</b></big>\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 "<b>Repository</b>"
#~ msgstr "<b>Repository</b>"
@@ -1676,16 +1749,16 @@ msgstr ""
#~ msgstr ""
#~ "<big><b>Authentication keys</b></big>\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. "
@@ -1710,11 +1783,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"
@@ -1747,11 +1820,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."
@@ -1760,11 +1835,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..."
@@ -1774,30 +1849,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..."
@@ -1829,10 +1904,10 @@ msgstr ""
#, fuzzy
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Available Updates</b></big>\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 9a759e33..e35595ad 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-06 04:33+0000\n"
"Last-Translator: Jeff Bailes <thepizzaking@gmail.com>\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"
@@ -286,6 +291,7 @@ 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?"
@@ -356,6 +362,7 @@ 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?"
@@ -432,6 +439,7 @@ 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"
@@ -442,6 +450,7 @@ 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"
@@ -500,6 +509,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -571,17 +583,18 @@ msgstr "A fatal error occured"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -626,8 +639,9 @@ 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:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "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 " "
@@ -806,6 +822,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"
@@ -906,14 +923,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"
@@ -926,71 +946,74 @@ 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"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Version %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr "Downloading list of changes..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "_Untick All"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr "_Tick All"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Download size: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "You can install %s update"
msgstr[1] "You can install %s updates"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Please wait, this can take some time."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Update is complete"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "Checking for updates"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "From version %(old_version)s to %(new_version)s"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Version %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Size: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Your distribution is not supported anymore"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -1000,16 +1023,17 @@ msgstr ""
"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
"information on upgrading."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>New distribution release '%s' is available</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Software index is broken"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1019,19 +1043,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"
@@ -1392,185 +1420,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"
@@ -1645,8 +1717,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?"
@@ -1703,13 +1775,13 @@ msgstr "Non-DFSG-compatible Software"
#~ msgstr ""
#~ "<big><b>Authentication keys</b></big>\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. "
@@ -1741,11 +1813,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"
@@ -1775,13 +1847,13 @@ msgstr "Non-DFSG-compatible Software"
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Available Updates</b></big>\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"
@@ -1857,7 +1929,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"
@@ -1865,11 +1938,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..."
@@ -1882,19 +1955,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"
@@ -1924,8 +1997,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 44c48522..5e05fe52 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2006-10-04 20:51+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-07-24 21:11+0000\n"
"Last-Translator: Ed Glez <herzo2@gmail.com>\n"
"Language-Team: Esperanto <eo@li.org>\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 ""
@@ -255,6 +260,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -316,6 +322,7 @@ 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?"
@@ -380,6 +387,7 @@ 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 ""
@@ -390,6 +398,7 @@ 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,6 +449,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -505,13 +517,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -551,8 +564,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Via sistemo estas gxisdatigita"
@@ -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 " "
@@ -726,6 +742,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"
@@ -817,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 ""
@@ -837,106 +857,114 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Versio %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Elsxuta grando: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../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:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Via distribuo ne estas plu subtenata"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Nova distribua eldono '%s' estas disponebla</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -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 "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 8c271f45..84169464 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 21:00+0000\n"
"Last-Translator: Ricardo Pérez López <ricardo@iesdonana.org>\n"
"Language-Team: Spanish <traductores@gnome.org>\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"
@@ -293,6 +298,7 @@ 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?"
@@ -333,9 +339,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"
@@ -365,6 +371,7 @@ 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?"
@@ -443,6 +450,7 @@ 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"
@@ -453,6 +461,7 @@ 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"
@@ -512,6 +521,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -584,18 +596,19 @@ msgstr "Ha ocurrido un error fatal"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -642,8 +655,9 @@ msgstr ""
"Para prevenir la pérdida de datos, cierre todas las aplicaciones y "
"documentos."
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Su sistema está actualizado"
@@ -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 "<b><big>Restart the system to complete the upgrade</big></b>"
-msgstr ""
-"<b><big>Reinicie el sistema para completar la actualización</big></b>"
+msgstr "<b><big>Reinicie el sistema para completar la actualización</big></b>"
#: ../DistUpgrade/DistUpgrade.glade.h:6
msgid "<b><big>Start the upgrade?</big></b>"
@@ -824,6 +839,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"
@@ -929,14 +945,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"
@@ -949,90 +968,94 @@ 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"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Versión %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr "Descargando la lista de cambios..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "_Desmarcar todo"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr "_Marcar todo"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Tamaño de descarga: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Puede instalar %s actualización"
msgstr[1] "Puede instalar %s actualizaciones"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Por favor, espere; esto puede tardar un poco."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "La actualización se ha completado"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "Comprobando actualizaciones"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "De la versión %(old_version)s a la %(new_version)s"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Versión %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Tamaño: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Su distribución ya no está soportada"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 ""
"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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Está disponible la nueva versión «%s» de la distribución</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "El índice de software está dañado"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1042,19 +1065,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"
@@ -1079,8 +1106,7 @@ msgstr "<big><b>Mantenga su sistema actualizado</b></big>"
#: ../data/glade/UpdateManager.glade.h:5
msgid "<big><b>Not all updates can be installed</b></big>"
-msgstr ""
-"<big><b>No se han podido instalar todas las actualizaciones</b></big>"
+msgstr "<big><b>No se han podido instalar todas las actualizaciones</b></big>"
#: ../data/glade/UpdateManager.glade.h:6
msgid "<big><b>Starting update manager</b></big>"
@@ -1203,8 +1229,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.</i>"
+"populares y para ordenar las aplicaciones en los resultados de las búsquedas."
+"</i>"
#: ../data/glade/SoftwareProperties.glade.h:9
msgid "Add Cdrom"
@@ -1292,8 +1318,8 @@ msgid ""
"\n"
"You need a working internet connection to continue."
msgstr ""
-"<b><big>La información acerca del software disponible está "
-"obsoleta</big></b>\n"
+"<b><big>La información acerca del software disponible está obsoleta</big></"
+"b>\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 "
@@ -1422,185 +1448,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"
@@ -1608,7 +1678,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"
@@ -1657,18 +1726,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"
@@ -1691,13 +1759,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 "<b>Channels</b>"
#~ msgstr "<b>Canales</b>"
@@ -1747,8 +1816,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"
@@ -1777,7 +1846,8 @@ msgstr "Software no compatible con la DFSG"
#~ "\n"
#~ "Need to get the changes from the central server"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"larger\">Descargando informe de cambios</span>\n"
+#~ "<span weight=\"bold\" size=\"larger\">Descargando informe de cambios</"
+#~ "span>\n"
#~ "\n"
#~ "Se necesita descargar los cambios del servidor central"
@@ -1809,13 +1879,13 @@ msgstr "Software no compatible con la DFSG"
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Actualizaciones disponibles</b></big>\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 "<b>Repository</b>"
#~ msgstr "<b>Repositorio</b>"
@@ -1835,19 +1905,20 @@ msgstr "Software no compatible con la DFSG"
#~ msgstr ""
#~ "<big><b>Claves de autenticación</b></big>\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"
@@ -1869,8 +1940,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."
@@ -1898,8 +1969,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."
@@ -1907,12 +1978,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 ""
@@ -1923,11 +1995,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..."
@@ -1937,35 +2009,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..."
@@ -2000,10 +2071,10 @@ msgstr "Software no compatible con la DFSG"
#, fuzzy
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Actualizaciones disponibles</b></big>\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 bf5fdba9..42f76dd0 100644
--- a/po/et.po
+++ b/po/et.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2006-10-04 20:51+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-06-10 17:42+0000\n"
"Last-Translator: margus723 <margus723@hot.ee>\n"
"Language-Team: Estonian <et@li.org>\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:207
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 ""
@@ -257,6 +262,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -315,6 +321,7 @@ 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,6 +384,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -387,6 +395,7 @@ 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"
@@ -437,6 +446,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -502,13 +514,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -548,8 +561,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -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 ""
@@ -808,14 +825,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 ""
@@ -828,106 +848,114 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
+#: ../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:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1249,184 +1277,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 7bb543cc..3b20b887 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2006-10-04 20:51+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-08-08 23:53+0000\n"
"Last-Translator: Xabi Ezpeleta <xezpeleta@mendikute.com>\n"
"Language-Team: Basque <eu@li.org>\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 ""
@@ -268,6 +272,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -324,6 +329,7 @@ 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,6 +392,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -396,6 +403,7 @@ 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,6 +454,7 @@ 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,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:202
#, python-format
msgid ""
@@ -511,13 +522,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -557,8 +569,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -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 ""
@@ -817,14 +833,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 ""
@@ -837,106 +856,114 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
+#: ../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:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1258,184 +1285,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 cb169548..89d56969 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -7,11 +7,11 @@
msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2006-10-04 20:51+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-06-08 13:47+0000\n"
-"Last-Translator: Pedram Ganjeh Hadidi <pedram.ganjeh-"
-"hadidi@students.jku.at>\n"
+"Last-Translator: Pedram Ganjeh Hadidi <pedram.ganjeh-hadidi@students.jku."
+"at>\n"
"Language-Team: Persian <fa@li.org>\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 ""
@@ -252,6 +257,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -308,6 +314,7 @@ 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 ""
@@ -370,6 +377,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -380,6 +388,7 @@ 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"
@@ -430,6 +439,7 @@ 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,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:202
#, python-format
msgid ""
@@ -495,13 +507,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -538,8 +551,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -709,6 +725,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 ""
@@ -798,14 +815,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 ""
@@ -818,105 +838,113 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] ""
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1238,184 +1266,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 ca9e5134..a4844337 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-06 07:42+0000\n"
"Last-Translator: Timo Jyrinki <timo.jyrinki@iki.fi>\n"
"Language-Team: Finnish <ubuntu-fi@lists.ubuntu.com>\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äivitystä"
#. 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"
@@ -289,6 +294,7 @@ 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?"
@@ -359,6 +365,7 @@ 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?"
@@ -435,6 +442,7 @@ 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"
@@ -445,6 +453,7 @@ 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"
@@ -503,6 +512,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -574,17 +586,18 @@ msgstr "Tapahtui vakava virhe"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -630,8 +643,9 @@ 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
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Järjestelmäsi on ajan tasalla"
@@ -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 "<b><big>Restart the system to complete the upgrade</big></b>"
msgstr ""
-"<b><big>Käynnistä järjestelmä uudelleen saattaaksesi päivityksen "
-"loppuun</big></b>"
+"<b><big>Käynnistä järjestelmä uudelleen saattaaksesi päivityksen loppuun</"
+"big></b>"
#: ../DistUpgrade/DistUpgrade.glade.h:6
msgid "<b><big>Start the upgrade?</big></b>"
@@ -809,6 +824,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"
@@ -911,14 +927,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"
@@ -931,71 +950,74 @@ 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"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Versio %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr "Noudetaan muutosluetteloa..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "Poista _valinnat"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr "_Tarkista kaikki"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "%s täytyy noutaa"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Voit asentaa %s päivityksen"
msgstr[1] "Voit asentaa %s päivitystä"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Odota, tämä voi kestää jonkun aikaa."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Päivitys on valmis"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "Tarkistetaan päivityksiä"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Versiosta %(old_version)s versioon %(new_version)s"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Versio %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Koko: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Jakeluasi ei enää tueta"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -1005,16 +1027,17 @@ msgstr ""
"Päivitä uudempaan versioon Ubuntu Linuxista. Katso lisätietoja "
"päivittämisestä osoitteesta http://www.ubuntu.com/"
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Uusi jakelujulkaisu \"%s\" on saatavilla</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Ohjelmaluettelo on rikkinäinen"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1024,19 +1047,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"
@@ -1061,8 +1088,8 @@ msgstr "<big><b>Pidä järjestelmäsi ajan tasalla</b></big>"
#: ../data/glade/UpdateManager.glade.h:5
msgid "<big><b>Not all updates can be installed</b></big>"
msgstr ""
-"<big><b>Kaikkia päivityksiä ei voi asentaa</b></big> \n"
-" \n"
+"<big><b>Kaikkia päivityksiä ei voi asentaa</b></big>\r\n"
+"\r\n"
"%s"
#: ../data/glade/UpdateManager.glade.h:6
@@ -1310,8 +1337,8 @@ msgid ""
msgstr ""
"<big><b>Kirjoita haluamasi ohjelmalähteen koko APT-rivi</b></big>\n"
"\n"
-"APT-rivi sisältää kanavan tyypin, sijainnin ja sisällön, esimerkiksi "
-"<i>\"deb http://ftp.debian.org sarge main\"</i>."
+"APT-rivi sisältää kanavan tyypin, sijainnin ja sisällön, esimerkiksi <i>"
+"\"deb http://ftp.debian.org sarge main\"</i>."
#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14
msgid "APT line:"
@@ -1398,186 +1425,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"
@@ -1585,7 +1656,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"
@@ -1607,8 +1677,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgid ""
#~ "<span weight=\"bold\" size=\"x-large\">Upgrading to Ubuntu 6.10</span>"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"x-large\">Päivitetään jakeluun Ubuntu "
-#~ "6.10</span>"
+#~ "<span weight=\"bold\" size=\"x-large\">Päivitetään jakeluun Ubuntu 6.10</"
+#~ "span>"
#~ msgid "Important security updates of Ubuntu"
#~ msgstr "Ubuntun tärkeät turvallisuuspäivitykset"
@@ -1627,16 +1697,16 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgstr ""
#~ "<big><b>Tarkistetaan järjestelmää</b></big>\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 "
@@ -1645,7 +1715,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ä"
@@ -1725,8 +1794,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"
@@ -1768,11 +1837,12 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgstr "Tiedosto '%s' ei sisällä sopivia ohjelmistokanavia."
#~ msgid ""
-#~ "<b><big>You need to manually reload the latest information about "
-#~ "updates</big></b>\n"
+#~ "<b><big>You need to manually reload the latest information about updates</"
+#~ "big></b>\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 ""
#~ "<b><big>Sinun pitää ladata päivitystiedot uudelleen käsin</big></b>\n"
#~ "\n"
@@ -1821,19 +1891,20 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgstr ""
#~ "<big><b>Kirjoita haluamasi varaston koko APT-rivi</b></big>\n"
#~ "\n"
-#~ "APT-rivi sisältää varaston tyypin, sijainnin ja sisällön, esimerkiksi "
-#~ "<i>\"deb http://ftp.debian.org sarge main\"</i>. Lisätietoja aiheesta löydät "
+#~ "APT-rivi sisältää varaston tyypin, sijainnin ja sisällön, esimerkiksi <i>"
+#~ "\"deb http://ftp.debian.org sarge main\"</i>. 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."
@@ -1857,8 +1928,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."
@@ -1887,8 +1958,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Saatavilla olevat päivitykset</b></big>\n"
#~ "\n"
@@ -1901,17 +1972,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"
@@ -1937,8 +2008,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ää."
@@ -1946,12 +2017,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."
@@ -1960,8 +2032,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."
@@ -1974,19 +2046,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/."
@@ -1998,11 +2071,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ä..."
@@ -2028,15 +2101,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"
@@ -2044,8 +2118,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#, fuzzy
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Saatavilla olevat päivitykset</b></big>\n"
#~ "\n"
@@ -2053,4 +2127,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 45fa5a82..8603e1f8 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-06 17:26+0000\n"
"Last-Translator: E.Malandain <etienne.malandain@free.fr>\n"
"Language-Team: French <gnomefr@traduc.org>\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"
@@ -294,6 +299,7 @@ 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 ?"
@@ -362,10 +368,11 @@ 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 ?"
@@ -444,6 +451,7 @@ 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"
@@ -454,6 +462,7 @@ 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"
@@ -512,6 +521,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -584,18 +596,19 @@ msgstr "Une erreur fatale est survenue"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -642,8 +655,9 @@ 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
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Votre système est à jour"
@@ -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 " "
@@ -824,6 +840,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"
@@ -927,14 +944,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"
@@ -947,71 +967,74 @@ 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"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Version %s : \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr "Téléchargement de la liste des modifications…"
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "_Tout décocher"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr "Tout _vérifier"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Taille du téléchargement : %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Vous pouvez installer %s mise à jour"
msgstr[1] "Vous pouvez installer %s mises à jour"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Veuillez patienter, cela peut prendre du temps."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "La mise à jour est terminée"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "Recherche des mises à jour disponibles en cours"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "De la version %(old_version)s vers la version %(new_version)s"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Version %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Taille : %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Votre distribution n'est plus supportée"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -1021,16 +1044,17 @@ msgstr ""
"devez passer à une version plus récente d'Ubuntu Linux. Rendez-vous sur "
"http://www.ubuntu.com pour de plus amples informations à ce sujet."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Une nouvelle version « %s » est disponible</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "La liste des logiciels est corrompue"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1040,19 +1064,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"
@@ -1065,8 +1093,8 @@ msgid ""
"Your system does not check for updates automatically. You can configure this "
"behavior in <i>Software Sources</i> on the <i>Internet Updates</i> tab."
msgstr ""
-"<b><big>Vous devez vérifier manuellement la disponibilité de mises à "
-"jour</big></b>\n"
+"<b><big>Vous devez vérifier manuellement la disponibilité de mises à jour</"
+"big></b>\n"
"\n"
"Votre système ne vérifie pas les mises à jour automatiquement. Vous pouvez "
"configurer ce comportement dans <i>Sources logicielles</i> qui se trouve "
@@ -1293,8 +1321,8 @@ msgid ""
"\n"
"You need a working internet connection to continue."
msgstr ""
-"<b><big>Les informations sur les logiciels disponibles sont "
-"obsolètes</big></b>\n"
+"<b><big>Les informations sur les logiciels disponibles sont obsolètes</big></"
+"b>\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 "
@@ -1424,187 +1452,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)"
@@ -1612,7 +1684,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"
@@ -1661,18 +1732,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"
@@ -1748,11 +1819,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"
@@ -1761,8 +1832,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 "<b>Sections</b>"
#~ msgstr "<b>Catégories :</b>"
@@ -1779,7 +1850,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
#~ "\n"
#~ "Need to get the changes from the central server"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"larger\">Téléchargement des changements</span>\n"
+#~ "<span weight=\"bold\" size=\"larger\">Téléchargement des changements</"
+#~ "span>\n"
#~ "\n"
#~ "Il est nécessaire de récupérer les changement du serveur central"
@@ -1811,13 +1883,13 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Mises à jour disponibles</b></big>\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 "<b>Repository</b>"
#~ msgstr "<b>Dépôt</b>"
@@ -1838,20 +1910,20 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
#~ "<big><b>Clés d'authentification</b></big>\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"
@@ -1873,8 +1945,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."
@@ -1911,23 +1983,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."
@@ -1940,20 +2014,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."
@@ -1963,8 +2037,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."
@@ -2001,13 +2075,13 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
#, fuzzy
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Mises à jour disponibles</b></big>\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 b9e9da74..fbf9b393 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-08-25 05:55+0000\n"
"Last-Translator: Marco <marcuz@linux.it>\n"
"Language-Team: Friulian <fur@li.org>\n"
@@ -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 ""
@@ -251,6 +256,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -307,6 +313,7 @@ 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 ""
@@ -369,6 +376,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -379,6 +387,7 @@ 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"
@@ -429,6 +438,7 @@ 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,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:202
#, python-format
msgid ""
@@ -494,13 +506,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -540,8 +553,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -711,6 +727,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 ""
@@ -800,14 +817,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 ""
@@ -820,106 +840,114 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
+#: ../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:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1241,184 +1269,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 3676102c..6e2f5b3b 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-09-25 21:24+0000\n"
"Last-Translator: Xosé <ubuntu@galizaweb.net>\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"
@@ -294,6 +299,7 @@ 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?"
@@ -306,8 +312,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."
@@ -366,6 +372,7 @@ 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?"
@@ -385,8 +392,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"
@@ -437,6 +444,7 @@ 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"
@@ -447,6 +455,7 @@ 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"
@@ -484,8 +493,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"
@@ -503,6 +512,7 @@ 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'"
@@ -530,6 +540,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"
@@ -547,6 +558,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
#, python-format
msgid ""
@@ -572,18 +584,19 @@ msgstr "Ocorreu un erro fatal"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -626,11 +639,11 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:512
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
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "O seu sistema está actualizado"
@@ -678,6 +691,7 @@ msgid "%li seconds"
msgstr "%li segundos"
#. 56 kbit
+#. 1Mbit = 1024 kbit
#: ../DistUpgrade/DistUpgradeView.py:38
#, python-format
msgid ""
@@ -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 " "
@@ -807,6 +822,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"
@@ -841,8 +857,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"
@@ -906,14 +921,17 @@ msgid ""
"Please check your Internet connection."
msgstr ""
+#. 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"
@@ -926,71 +944,74 @@ msgstr "Backports"
msgid "Distribution updates"
msgstr ""
+#. TRANSLATORS: updates from an 'unknown' origin
#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266
msgid "Other updates"
msgstr "Outras actualizacións"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Versión %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "_Quitarlle a Selección a Todo"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr "_Seleccionalo Todo"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Tamaño de descarga: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Pode instalar %s actualización"
msgstr[1] "Pode instalar %s actualizacións"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Por favor, espere; isto pode tardar un pouco."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Completouse a actualización"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "A examinar as actualizacións"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Versión %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Tamaño: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "A súa distribución xa non está soportada"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -1000,16 +1021,17 @@ msgstr ""
"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."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Está dispoñible a nova versión '%s' da distribución</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "O índice de software está danado"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1019,19 +1041,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"
@@ -1389,190 +1415,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 ""
+#. 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 ""
+#. 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 ""
#~ "<big><b>Error scaning the CD</b></big>\n"
#~ "\n"
@@ -1583,16 +1652,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 ""
@@ -1612,11 +1681,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"
@@ -1637,40 +1707,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"
@@ -1678,7 +1741,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'?"
@@ -1687,43 +1749,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"
@@ -1734,7 +1794,8 @@ msgstr "Software non compatible coa DFSG"
#~ msgid ""
#~ "<span weight=\"bold\" size=\"x-large\">Upgrading to Ubuntu 6.06 LTS</span>"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"x-large\">Actualizando a Ubuntu 6.06 LTS</span>"
+#~ "<span weight=\"bold\" size=\"x-large\">Actualizando a Ubuntu 6.06 LTS</"
+#~ "span>"
#~ msgid "Downloading and installing the upgrades"
#~ msgstr "Descargando e instalando as actualizacións"
@@ -1743,44 +1804,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:"
@@ -1794,7 +1853,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)"
@@ -1804,19 +1862,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 ""
#~ "<b><big>You must check for updates manually</big></b>\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 ""
#~ "<b><big>Debe comprobar as actualizacións manualmente</big></b>\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 ""
#~ "<big><b>Examining your system</b></big>\n"
@@ -1826,8 +1886,8 @@ msgstr "Software non compatible coa DFSG"
#~ msgstr ""
#~ "<big><b>Analizando o seu sistema</b></big>\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"
@@ -1856,15 +1916,16 @@ msgstr "Software non compatible coa DFSG"
#~ msgid ""
#~ "<b><big>The channel information is out-of-date</big></b>\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 ""
#~ "<b><big>A información das canles está obsoleta</big></b>\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."
@@ -1875,17 +1936,17 @@ msgstr "Software non compatible coa DFSG"
#~ msgstr "<b>Compoñentes</b>"
#~ msgid ""
-#~ "<big><b>Enter the complete APT line of the channel that you want to "
-#~ "add</b></big>\n"
+#~ "<big><b>Enter the complete APT line of the channel that you want to add</"
+#~ "b></big>\n"
#~ "\n"
#~ "The APT line includes the type, location and components of a channel, for "
#~ "example <i>\"deb http://ftp.debian.org sarge main\"</i>."
#~ msgstr ""
-#~ "<big><b>Introduza a liña de APT completa da canle que queira "
-#~ "engadir</b></big>\n"
+#~ "<big><b>Introduza a liña de APT completa da canle que queira engadir</b></"
+#~ "big>\n"
#~ "\n"
-#~ "A liña de APT contén o tipo, a ubicación e os compoñentes dunha canle, por "
-#~ "exemplo <i>\"deb http://ftp.debian.org sarge main\"</i>."
+#~ "A liña de APT contén o tipo, a ubicación e os compoñentes dunha canle, "
+#~ "por exemplo <i>\"deb http://ftp.debian.org sarge main\"</i>."
#~ msgid "Add Channel"
#~ msgstr "Engadir unha canle"
@@ -1903,12 +1964,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 "
@@ -1933,4 +1994,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 50a7c398..3199ed27 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-09-30 14:09+0000\n"
"Last-Translator: Yaniv Abir <yanivabir@gmail.com>\n"
"Language-Team: Hebrew <he@li.org>\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,12 +127,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 ""
"<big><b>Error scanning the CD</b></big>\n"
"\n"
@@ -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 "לא ניתן לקבוע חבילת על"
@@ -278,6 +283,7 @@ msgstr ""
"\n"
"בחירה ב\"לא\" תבטל את העדכון."
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr "לייצר מקורות ברירת מחדל?"
@@ -341,6 +347,7 @@ 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 "האם ברצונך להתחיל את השדרוג?"
@@ -404,6 +411,7 @@ msgid ""
"more information. "
msgstr "מספר בעיות נתגלו במהלך הניקוי. אנא הסתכל בהודעות מטה למידע נוסף. "
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
#, fuzzy
msgid "Restoring original system state"
@@ -415,6 +423,7 @@ 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 +449,7 @@ msgid "Invalid package information"
msgstr "מידע חבילה לא תקין"
#: ../DistUpgrade/DistUpgradeControler.py:721
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"After your package information was updated the essential package '%s' can "
"not be found anymore.\n"
@@ -467,6 +476,7 @@ 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'"
@@ -478,23 +488,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:249
-#, 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 מתוך %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"
@@ -511,6 +522,7 @@ msgid ""
"package and include the files in /var/log/dist-upgrade/ in the bugreport."
msgstr ""
+#. self.expander.set_expanded(True)
#: ../DistUpgrade/DistUpgradeViewGtk.py:202
#, python-format
msgid ""
@@ -534,29 +546,30 @@ msgstr "ארעה שגיאה חמורה"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
+#, 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:492
-#, 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:498
-#, fuzzy
+#, fuzzy, python-format
msgid "%d package is going to be upgraded."
msgid_plural "%d packages are going to be upgraded."
msgstr[0] "חבילה %s תשודרג."
@@ -585,8 +598,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr "כדי למנוע אובדן מידע אנא סגרו על תוכנית או מסמך פתוחים."
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "המערכת שלך מעודכנת"
@@ -632,6 +646,7 @@ msgid "%li seconds"
msgstr "%liשניות"
#. 56 kbit
+#. 1Mbit = 1024 kbit
#: ../DistUpgrade/DistUpgradeView.py:38
#, python-format
msgid ""
@@ -651,6 +666,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 " "
@@ -760,6 +776,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 "לא ניתן להריץ את כלי השדרוג"
@@ -849,14 +866,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 "עדכונים מוצעים"
@@ -869,71 +889,74 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "גרסה %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr "מוריד רשימת שינויים..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "גודל ההורדה: %s"
-#: ../UpdateManager/UpdateManager.py:617
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:633
+#, fuzzy, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "מתקין עדכונים..."
msgstr[1] "מתקין עדכונים..."
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "אנא חכו, התהליך לארוך זמן מה."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "העדכון הושלם"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "מחפש עדכונים"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "גרסה %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(גודל: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "גרסת ההפצה שלך אינה נתמכת יותר"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -942,16 +965,17 @@ msgstr ""
"המערכת שלכם לא תקבל עדכוני אבטחה יותר. אנא שדרגו אותו לגירסה מאוחרת יותר של "
"אובונטו לינוקס. ראו http://www.ubuntu.com למידע נוסף על שידרוג המערכת."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>גירסה חדשה של ההפצה, \"%s\", זמינה</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "אינדקס התוכנות פגום"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -960,19 +984,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"
@@ -1230,8 +1258,8 @@ msgid ""
msgstr ""
"<big><b>הכנס את שורת APT השלמה של המאגר שברצונך להוסיף</b></big>\n"
"\n"
-"שורת APT מכילה סוג, מיקום ותוכן של המאגר. לדוגמה: <i>\"deb "
-"http://ftp.debian.org sarge main\"</i>\n"
+"שורת APT מכילה סוג, מיקום ותוכן של המאגר. לדוגמה: <i>\"deb http://ftp.debian."
+"org sarge main\"</i>\n"
"אפשר למצוא הסבר מפורט על זה בתיעוד."
#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14
@@ -1316,216 +1344,259 @@ 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
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
#, fuzzy
msgid "Cdrom with Ubuntu 6.10 'Edgy Eft'"
msgstr "תקליטור עם אובונטו 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
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("
+#. 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 "תקליטור עם אובונטו 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\""
+#. 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\""
+#. Description
#: ../data/channels/Ubuntu.info.in:165
#, fuzzy
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
#, fuzzy
msgid "Officially supported"
msgstr "נתמך רשמית"
+#. Description
#: ../data/channels/Ubuntu.info.in:177
#, fuzzy
msgid "Ubuntu 5.04 Security Updates"
msgstr "עדכוני אבטחה - אובונטו 5.10"
+#. Description
#: ../data/channels/Ubuntu.info.in:182
#, fuzzy
msgid "Ubuntu 5.04 Updates"
msgstr "עדכונים - אובונטו 5.10"
+#. 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\""
+#. 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\""
+#. 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 "עדכוני אבטחה - אובונטו 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."
@@ -1555,11 +1626,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 במהירות לא ידועה"
@@ -1572,13 +1641,14 @@ msgstr ""
#~ msgid ""
#~ "<b><big>You must check for updates manually</big></b>\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 ""
#~ "<b><big>יש לחפש עדכונים ידניתg></b>\n"
#~ "\n"
-#~ "המערכת שלך לא מחפשת עדכונים באופן אוטומטי. ניתן לשנות הגדרות אלו ב\"מערכת\"-"
-#~ "> \"ניהול\" -> \"אפשרויות תוכנה\"."
+#~ "המערכת שלך לא מחפשת עדכונים באופן אוטומטי. ניתן לשנות הגדרות אלו ב\"מערכת"
+#~ "\"-> \"ניהול\" -> \"אפשרויות תוכנה\"."
#~ msgid "Cancel _Download"
#~ msgstr "בטל _הורדה"
@@ -1604,7 +1674,6 @@ msgstr ""
#~ msgid "Oficially supported"
#~ msgstr "נתמך רשמית"
-#, python-format
#~ msgid "About %li seconds remaining"
#~ msgstr "נותרו %li שניות."
@@ -1719,8 +1788,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 ""
#~ "הוסף קובץ מפתח חדש לרשימת המפתחות שאתה בוטח בהם. אנא וודא שאתה שקיבלת את "
#~ "המפתח בדרך מאובטחת ושאתה בוטח בבעלים. "
@@ -1750,8 +1819,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 ""
#~ "שחזר את מפתחות ברירת המחדל שבאו עם ההפצה. זה לא ישנה את המפתחות המותקנים."
@@ -1782,8 +1851,8 @@ msgstr ""
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>עדכונים זמינים</b></big>\n"
#~ "\n"
@@ -1855,7 +1924,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"
@@ -1863,8 +1933,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 ""
#~ "אפשר להריץ רק מנהל חבילות אחד באותו זמן. אנא סגור מנהלי חבילות אחרים קודם."
@@ -1879,16 +1949,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/ בשביל "
#~ "הוראות שדרוג."
@@ -1897,4 +1967,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 6eea2d4a..a23f976b 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-08-01 15:30+0000\n"
"Last-Translator: Gaurav Mishra <gauravtechie@gmail.com>\n"
"Language-Team: Hindi <hi@li.org>\n"
@@ -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 ""
@@ -251,6 +256,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -307,6 +313,7 @@ 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 ""
@@ -369,6 +376,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -379,6 +387,7 @@ 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"
@@ -429,6 +438,7 @@ 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,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:202
#, python-format
msgid ""
@@ -494,13 +506,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -540,8 +553,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -711,6 +727,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 ""
@@ -800,14 +817,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 ""
@@ -820,106 +840,114 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
+#: ../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:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1241,187 +1269,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 fb78eb28..154fd296 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:38+0000\n"
"Last-Translator: Ante Karamatić <ivoks@grad.hr>\n"
"Language-Team: Croatian <hr@li.org>\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,13 +124,12 @@ 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
+#, fuzzy, python-format
msgid ""
"<big><b>Error scanning the CD</b></big>\n"
"\n"
@@ -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"
@@ -180,6 +183,7 @@ msgstr ""
"Neriješiv problem se pojavio prilikom rješavanja nadogradnje. Molimo "
"prijavite ovo kao grešku."
+#. 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"
@@ -207,6 +211,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"
@@ -287,6 +292,7 @@ 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?"
@@ -299,8 +305,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."
@@ -358,6 +364,7 @@ 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?"
@@ -377,8 +384,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"
@@ -435,6 +442,7 @@ 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"
@@ -445,6 +453,7 @@ 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"
@@ -504,6 +513,7 @@ 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'"
@@ -514,7 +524,7 @@ msgid "Fetching is complete"
msgstr "Preuzimanje je završeno"
#: ../DistUpgrade/DistUpgradeViewGtk.py:129
-#, fuzzy
+#, fuzzy, python-format
msgid "Fetching file %li of %li at %s/s"
msgstr "Preuzimam datoteku %li od %li pri %s/s"
@@ -525,12 +535,13 @@ msgid "About %s remaining"
msgstr "Otprilike je ostalo %s"
#: ../DistUpgrade/DistUpgradeViewGtk.py:132
-#, fuzzy
+#, fuzzy, 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"
@@ -548,8 +559,9 @@ 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
+#, fuzzy, python-format
msgid ""
"Replace the customized configuration file\n"
"'%s'?"
@@ -573,20 +585,21 @@ msgstr "Pojavila se ozbiljna greška"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
+#, fuzzy, 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."
@@ -594,7 +607,7 @@ msgstr[1] "%s paketa će biti uklonjena."
msgstr[2] "%s paketa će biti uklonjeno."
#: ../DistUpgrade/DistUpgradeViewGtk.py:492
-#, 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 novi paket će biti instaliran."
@@ -602,7 +615,7 @@ msgstr[1] "%s nova paketa će biti instalirana."
msgstr[2] "%s novih paketa će biti instalirano."
#: ../DistUpgrade/DistUpgradeViewGtk.py:498
-#, 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 će biti nadograđen."
@@ -610,7 +623,7 @@ msgstr[1] "%s paketa će biti nadograđena."
msgstr[2] "%s paketa će biti nadograđeno."
#: ../DistUpgrade/DistUpgradeViewGtk.py:503
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"\n"
"\n"
@@ -633,8 +646,9 @@ 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:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Vaš sustav sadrži posljednje nadogradnje"
@@ -680,6 +694,7 @@ msgid "%li seconds"
msgstr "%li sekundi"
#. 56 kbit
+#. 1Mbit = 1024 kbit
#: ../DistUpgrade/DistUpgradeView.py:38
#, python-format
msgid ""
@@ -701,6 +716,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,8 +737,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:5
msgid "<b><big>Restart the system to complete the upgrade</big></b>"
msgstr ""
-"<b><big>Ponovno pokretanje računala potrebno je za završetak "
-"nadogradnje</big></b>"
+"<b><big>Ponovno pokretanje računala potrebno je za završetak nadogradnje</"
+"big></b>"
#: ../DistUpgrade/DistUpgrade.glade.h:6
msgid "<b><big>Start the upgrade?</big></b>"
@@ -815,6 +831,7 @@ msgstr "Nisam mogao dobaviti 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"
@@ -848,8 +865,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. Vjerovatno je problem u mreži. "
+msgstr "Preuzimanje nadogradnje nije uspjelo. Vjerovatno je problem u mreži. "
#: ../UpdateManager/DistUpgradeFetcher.py:214
msgid "Failed to extract"
@@ -889,12 +905,12 @@ msgstr ""
"poslužiteljem. "
#: ../UpdateManager/GtkProgress.py:108
-#, fuzzy
+#, fuzzy, python-format
msgid "Downloading file %(current)li of %(total)li with %(speed)s/s"
msgstr "Preuzimam datoteku %li od %li pri %s/s"
#: ../UpdateManager/GtkProgress.py:113
-#, fuzzy
+#, fuzzy, python-format
msgid "Downloading file %(current)li of %(total)li"
msgstr "Preuzimam datoteku %li od %li pri %s/s"
@@ -919,14 +935,17 @@ msgstr ""
"Preuzimanje popisa promjena nije uspjelo. 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"
@@ -941,35 +960,37 @@ msgstr "Ubuntu 5.10 backporti"
msgid "Distribution updates"
msgstr "_Nastavi nadogradnju"
+#. TRANSLATORS: updates from an 'unknown' origin
#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266
msgid "Other updates"
msgstr "Druge nadogradnje"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Verzija %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "Preuzimam popis promjena..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
#, fuzzy
msgid "_Check All"
msgstr "Pro_vjeri"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Veličina preuzimanja: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
@@ -977,39 +998,40 @@ msgstr[0] "Možete instalirati %s nadogradnju"
msgstr[1] "Možete instalirati %s nadogradnje"
msgstr[2] "Možete instalirati %s nadogradnji"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Molim pričekajte, ovo može potrajati."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Nadogradnja je gotova"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "_Instaliraj nadogradnje"
-#: ../UpdateManager/UpdateManager.py:810
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:826
+#, fuzzy, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Nova verzija: %s (Veličina: %s)"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Verzija %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Veličina: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Vaša distibucija više nije podržana"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -1019,16 +1041,17 @@ msgstr ""
"na noviju verziju Ubuntu Linuxa. Pogledajte na http://www.ubuntu.com za više "
"detalja o nadogradnji."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Novo izdanje distribucije, '%s', je dostupno</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Popis programa je oštećen"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1038,19 +1061,23 @@ msgstr ""
"upravitelja paketima \"Synaptic\" ili upišite \"sudo apt-get install -f\" u "
"terminal 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"
+#. 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"
@@ -1324,8 +1351,8 @@ msgid ""
"The APT line includes the type, location and components of a repository, for "
"example <i>\"deb http://ftp.debian.org sarge main\"</i>."
msgstr ""
-"<big><b>Unesite kompletnu APT liniju repozitorija koji želite "
-"dodati</b></big>\n"
+"<big><b>Unesite kompletnu APT liniju repozitorija koji želite dodati</b></"
+"big>\n"
"\n"
"APT linija uključuje vstu, lokaciju i komponente kanala, na primjer <i>\"deb "
"http://ftp.debian.org sarge main\"</i>."
@@ -1416,192 +1443,235 @@ 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)"
+#. 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 ""
+#. 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"
+#. 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"
@@ -1652,8 +1722,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 "
@@ -1663,7 +1733,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"
@@ -1735,4 +1804,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 e7f789c0..2e1c6b18 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-06 10:07+0000\n"
"Last-Translator: Gabor Kelemen <kelemengabor@linuxforum.hu>\n"
"Language-Team: Hungarian <gnome@gnome.hu>\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 ""
"<big><b>Error scanning the CD</b></big>\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"
@@ -287,6 +292,7 @@ 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?"
@@ -354,10 +360,11 @@ 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?"
@@ -377,8 +384,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"
@@ -435,6 +442,7 @@ 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"
@@ -445,6 +453,7 @@ 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"
@@ -504,6 +513,7 @@ 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'"
@@ -525,12 +535,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..."
@@ -549,6 +560,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
#, python-format
msgid ""
@@ -576,9 +588,9 @@ msgstr "Végzetes hiba történt"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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-"
@@ -588,6 +600,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:487
#, python-format
msgid "%d package is going to be removed."
@@ -607,7 +620,7 @@ msgid_plural "%d packages are going to be upgraded."
msgstr[0] "%d csomag frissítve lesz."
#: ../DistUpgrade/DistUpgradeViewGtk.py:503
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"\n"
"\n"
@@ -631,8 +644,9 @@ 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
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "A rendszere naprakész"
@@ -680,6 +694,7 @@ msgid "%li seconds"
msgstr "%li másodperc"
#. 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 " "
@@ -815,6 +831,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"
@@ -889,12 +906,12 @@ msgstr ""
"kiszolgálóval. "
#: ../UpdateManager/GtkProgress.py:108
-#, fuzzy
+#, fuzzy, 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"
#: ../UpdateManager/GtkProgress.py:113
-#, fuzzy
+#, fuzzy, python-format
msgid "Downloading file %(current)li of %(total)li"
msgstr "%li. fájl letöltése, összesen: %li, sebesség: %s/mp"
@@ -918,14 +935,17 @@ msgstr ""
"A módosítások listájának letöltése meghiúsult. 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"
@@ -939,71 +959,74 @@ msgstr "Visszaportolt csomagok"
msgid "Distribution updates"
msgstr "Frissítés _folytatása"
+#. TRANSLATORS: updates from an 'unknown' origin
#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266
msgid "Other updates"
msgstr "Egyéb frissítések"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "%s verzió: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "Módosítások listájának letöltése..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "_Kijelölések törlése"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr "Összes _ellenőrzése"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Letöltés mérete: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "%s frissítést telepíthet"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Kis türelmet, ez eltarthat egy ideig."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "A frissítés befejeződött"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "Frissítések keresése"
-#: ../UpdateManager/UpdateManager.py:810
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:826
+#, fuzzy, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Új verzió: %s (Méret: %s)"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "%s verzió"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Méret: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "A terjesztés már nem támogatott"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -1013,16 +1036,17 @@ msgstr ""
"Frissítsen az Ubuntu Linux egy újabb változatára. A frissítéssel kapcsolatos "
"információkat az http://www.ubuntu.com weboldalon talál."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>A disztribúció új \"%s\" kiadása elérhető</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "A szoftverindex sérült"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1032,19 +1056,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"
@@ -1058,8 +1086,8 @@ msgid ""
"Your system does not check for updates automatically. You can configure this "
"behavior in <i>Software Sources</i> on the <i>Internet Updates</i> tab."
msgstr ""
-"<b><big>Önnek kézzel kell megkeresnie a rendelkezésre álló "
-"frissítéseket</big></b>\n"
+"<b><big>Önnek kézzel kell megkeresnie a rendelkezésre álló frissítéseket</"
+"big></b>\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\" "
@@ -1072,8 +1100,8 @@ msgstr "<big><b>Tartsa naprakészen a rendszerét</b></big>"
#: ../data/glade/UpdateManager.glade.h:5
msgid "<big><b>Not all updates can be installed</b></big>"
msgstr ""
-"<big><b>Nem minden frissítés telepíthető</b></big> \n"
-" \n"
+"<big><b>Nem minden frissítés telepíthető</b></big>\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 ""
-"<b><big>Az elérhető szoftverekkel kapcsolatos információk "
-"elévültek</big></b>\n"
+"<b><big>Az elérhető szoftverekkel kapcsolatos információk elévültek</big></"
+"b>\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 <i>\"deb http://ftp.debian.org sarge main\"</i>."
msgstr ""
-"<big><b>Adja meg a forrásként felvenni kívánt tároló teljes APT "
-"sorát</b></big>\n"
+"<big><b>Adja meg a forrásként felvenni kívánt tároló teljes APT sorát</b></"
+"big>\n"
"\n"
-"Az APT sor tartalmazza a tároló típusát, helyét és összetevőit, például "
-"<i>\"deb http://ftp.debian.org sarge main\"</i>."
+"Az APT sor tartalmazza a tároló típusát, helyét és összetevőit, például <i>"
+"\"deb http://ftp.debian.org sarge main\"</i>."
#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14
msgid "APT line:"
@@ -1416,191 +1444,234 @@ 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)"
+#. 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"
@@ -1651,8 +1722,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 "
@@ -1662,7 +1733,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"
@@ -1687,7 +1757,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 "<b>Channels</b>"
#~ msgstr "<b>Csatornák</b>"
@@ -1733,4 +1804,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 4cd6c8b7..210d7c10 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:38+0000\n"
"Last-Translator: Andy Apdhani <imtheface@gmail.com>\n"
"Language-Team: Indonesian <id@li.org>\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 ""
"<big><b>Error scanning the CD</b></big>\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"
@@ -281,6 +286,7 @@ 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?"
@@ -352,6 +358,7 @@ 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?"
@@ -427,6 +434,7 @@ 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"
@@ -437,6 +445,7 @@ 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"
@@ -466,7 +475,7 @@ msgid "Invalid package information"
msgstr "Informasi paket tidak valid"
#: ../DistUpgrade/DistUpgradeControler.py:721
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"After your package information was updated the essential package '%s' can "
"not be found anymore.\n"
@@ -495,6 +504,7 @@ 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'"
@@ -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:249
-#, 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:202
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"Replace the customized configuration file\n"
"'%s'?"
@@ -564,37 +576,38 @@ msgstr "Terjadi kesalahan fatal"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
#, 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
+#, 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:492
-#, 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:498
-#, 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:503
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"\n"
"\n"
@@ -618,8 +631,9 @@ 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
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Sistem anda telah 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 " "
@@ -798,6 +814,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"
@@ -870,12 +887,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"
@@ -900,15 +917,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"
@@ -924,93 +944,97 @@ 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"
msgstr "_Instal Update"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Versi %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "Mengunduh senarai dari perubahan..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
#, fuzzy
msgid "_Check All"
msgstr "_Periksa"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Ukuran unduh: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Anda dapat instal %s pemutakhiran"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Silakan tunggu, hal ini membutuhkan beberapa waktu."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Pemutakhiran selesai"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "_Instal Update"
-#: ../UpdateManager/UpdateManager.py:810
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:826
+#, fuzzy, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Versi baru: %s (Ukuran: %s)"
-#: ../UpdateManager/UpdateManager.py:814
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:830
+#, fuzzy, python-format
msgid "Version %s"
msgstr "Versi %s:"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Distribusi anda tidak disokong lagi"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 ""
"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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Luncuran distribusi baru '%s' telah tersedia</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Indeks perangkat lunak telah rusak"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1020,19 +1044,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"
@@ -1307,8 +1335,8 @@ msgid ""
"The APT line includes the type, location and components of a repository, for "
"example <i>\"deb http://ftp.debian.org sarge main\"</i>."
msgstr ""
-"<big><b>Masukkan baris lengkap APT dari kanal yang ingin anda tambah "
-"</b></big>\n"
+"<big><b>Masukkan baris lengkap APT dari kanal yang ingin anda tambah </b></"
+"big>\n"
"\n"
"Baris APT menyertakan tipe, lokasi dan komponen dari kanal, sebagai contoh "
"<i>\"deb http://ftp.debian.org sarge main\"</i>."
@@ -1401,210 +1429,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"
@@ -1628,7 +1699,8 @@ msgstr "Perangkat Lunak yang tidak sesuai dengan DFSG"
#~ msgid ""
#~ "<span weight=\"bold\" size=\"x-large\">Upgrading to Ubuntu 6.10</span>"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"x-large\">Mengupgrade ke Ubuntu 6.06 LTS</span>"
+#~ "<span weight=\"bold\" size=\"x-large\">Mengupgrade ke Ubuntu 6.06 LTS</"
+#~ "span>"
#, fuzzy
#~ msgid "Important security updates of Ubuntu"
@@ -1658,18 +1730,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"
@@ -1734,4 +1805,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 6f370bd5..90005ae0 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-06 12:46+0000\n"
"Last-Translator: Luca Ferretti <elle.uca@libero.it>\n"
"Language-Team: Italian <it@li.org>\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:207
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"
@@ -294,6 +299,7 @@ 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?"
@@ -334,9 +340,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"
@@ -365,6 +371,7 @@ 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?"
@@ -385,8 +392,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"
@@ -443,6 +450,7 @@ 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"
@@ -453,6 +461,7 @@ 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"
@@ -469,8 +478,8 @@ 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"
@@ -511,6 +520,7 @@ 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'"
@@ -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 ""
"'update-manager' e di includere i file in /var/log/dist-upgrade/ nella "
"segnalazione."
+#. self.expander.set_expanded(True)
#: ../DistUpgrade/DistUpgradeViewGtk.py:202
#, python-format
msgid ""
@@ -583,18 +595,19 @@ msgstr "Si è verificato un errore fatale"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -641,8 +654,9 @@ 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
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Il sistema è aggiornato"
@@ -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 "<b><big>Restart the system to complete the upgrade</big></b>"
-msgstr ""
-"<b><big>Riavviare il sistema per completare l'aggiornamento</big></b>"
+msgstr "<b><big>Riavviare il sistema per completare l'aggiornamento</big></b>"
#: ../DistUpgrade/DistUpgrade.glade.h:6
msgid "<b><big>Start the upgrade?</big></b>"
@@ -821,6 +836,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"
@@ -926,14 +942,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"
@@ -946,73 +965,76 @@ 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"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Versione %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr "Scaricamento dell'elenco dei cambiamenti..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
#, fuzzy
msgid "_Uncheck All"
msgstr "_Decontrassegnare tutti"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
#, fuzzy
msgid "_Check All"
msgstr "_Contrassengare tutti"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Dati da scaricare: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "È possibile installare %s aggiornamento"
msgstr[1] "È possibile installare %s aggiornamenti"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Attendere, l'operazione potrebbe richiedere del tempo."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "L'aggiornamento è stato completato"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "Verifica degli aggiornamenti..."
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Dalla versione %(old_version)s alla %(new_version)s"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Versione %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Dimensione: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "La distribuzione in uso non è più supportata"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -1022,16 +1044,17 @@ msgstr ""
"versione più aggiornata di Ubuntu Linux. Per maggiori informazioni "
"consultare http://www.ubuntu.com."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>È disponibile il nuovo rilascio «%s» della distribuzione</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "L'indice del software è danneggiato"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1041,19 +1064,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"
@@ -1420,203 +1447,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 ""
@@ -1635,7 +1705,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"
@@ -1684,18 +1753,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"
@@ -1704,7 +1772,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"
@@ -1723,8 +1792,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 "<b>Channels</b>"
#~ msgstr "<b>Canali</b>"
@@ -1777,27 +1846,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"
@@ -1817,8 +1886,8 @@ msgstr "Software non compatibile con le DFSG"
#~ msgid ""
#~ "<big><b>Analysing your system</b></big>\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 ""
#~ "<big><b>Analisi del sistema in uso</b></big>\n"
#~ "\n"
@@ -1826,8 +1895,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à."
@@ -1838,18 +1907,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 ""
-#~ "<big><b>Enter the complete APT line of the channel that you want to "
-#~ "add</b></big>\n"
+#~ "<big><b>Enter the complete APT line of the channel that you want to add</"
+#~ "b></big>\n"
#~ "\n"
#~ "The APT line contains the type, location and sections of a channel, for "
#~ "example <i>\"deb http://ftp.debian.org sarge main\"</i>."
#~ msgstr ""
-#~ "<big><b>Inserire la riga APT completa del canale che si vuole "
-#~ "aggiungere</b></big>\n"
+#~ "<big><b>Inserire la riga APT completa del canale che si vuole aggiungere</"
+#~ "b></big>\n"
#~ "\n"
#~ "La riga APT contiene il tipo, la posizione e le sezioni di un canale, ad "
#~ "esempio <i>\"deb http://ftp.debian.org sarge main\"</i>"
@@ -1868,8 +1937,8 @@ msgstr "Software non compatibile con le DFSG"
#~ "\n"
#~ "Need to get the changes from the central server"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"larger\">Download delle modifiche in "
-#~ "corso</span>\n"
+#~ "<span weight=\"bold\" size=\"larger\">Download delle modifiche in corso</"
+#~ "span>\n"
#~ "\n"
#~ "Devo scaricare le modifiche dal server centrale"
@@ -1911,11 +1980,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..."
@@ -1943,8 +2012,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."
@@ -1976,13 +2045,13 @@ msgstr "Software non compatibile con le DFSG"
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<bi><b>Aggiornamenti Disponibili</b></big>\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"
@@ -2017,7 +2086,8 @@ msgstr "Software non compatibile con le DFSG"
#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
#~ msgstr ""
-#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu <cdimage@ubuntu.com>"
+#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu <cdimage@ubuntu."
+#~ "com>"
#~ msgid "Choose a key-file"
#~ msgstr "Scegli un file di chiave"
@@ -2042,7 +2112,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] ""
@@ -2050,8 +2121,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."
@@ -2067,27 +2138,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 5fcdda7f..bbd32963 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:39+0000\n"
"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
"Language-Team: Ubuntu Japanese Team <ubuntu-ja-users@freeml.com>\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
@@ -117,19 +120,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 ""
"<big><b>Error scanning the CD</b></big>\n"
"\n"
@@ -156,7 +159,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:207
msgid "Can't upgrade required meta-packages"
@@ -166,6 +170,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 "アップグレードが算定できません"
@@ -179,6 +184,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 "いくつかのパッケージが認証されませんでした"
@@ -189,9 +195,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
@@ -202,8 +208,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 "メタパッケージを推測できません"
@@ -217,9 +225,11 @@ 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
@@ -267,11 +277,14 @@ 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 "標準のソースを生成しますか?"
@@ -286,7 +299,8 @@ msgid ""
msgstr ""
"'sources.list' をスキャン中、 '%s' の正しいエントリが見つかりませんでした。\n"
"\n"
-"'%s' のデフォルトエントリを追加しますか? 'いいえ' を選択するとアップデートをキャンセルします。"
+"'%s' のデフォルトエントリを追加しますか? 'いいえ' を選択するとアップデートを"
+"キャンセルします。"
#: ../DistUpgrade/DistUpgradeControler.py:301
msgid "Repository information invalid"
@@ -296,7 +310,9 @@ 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"
@@ -309,8 +325,9 @@ msgid ""
"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"
@@ -320,7 +337,9 @@ 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"
@@ -333,9 +352,11 @@ 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 "アップグレードを開始しますか?"
@@ -353,8 +374,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)。"
+"アップグレードを中断しました。システムが使用できない状態になっている可能性が"
+"あります。ただいま修正を実行中です (dpkg --configure -a)。"
#: ../DistUpgrade/DistUpgradeControler.py:479
msgid "Could not download the upgrades"
@@ -364,7 +385,9 @@ 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"
@@ -379,9 +402,11 @@ 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?"
@@ -403,8 +428,11 @@ 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 "システムを元に戻し中"
@@ -415,6 +443,7 @@ 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 +471,7 @@ msgid "Invalid package information"
msgstr "無効なパッケージ情報"
#: ../DistUpgrade/DistUpgradeControler.py:721
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"After your package information was updated the essential package '%s' can "
"not be found anymore.\n"
@@ -469,6 +498,7 @@ 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,23 +510,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:249
-#, 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 "変更を適用中"
@@ -512,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:202
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"Replace the customized configuration file\n"
"'%s'?"
@@ -538,36 +570,38 @@ msgstr "重大なエラーが発生しました"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
#, 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
+#, fuzzy, python-format
msgid "%d package is going to be removed."
msgid_plural "%d packages are going to be removed."
msgstr[0] "%s つのパッケージが削除されます。"
#: ../DistUpgrade/DistUpgradeViewGtk.py:492
-#, 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·つのパッケージがインストールされます。"
#: ../DistUpgrade/DistUpgradeViewGtk.py:498
-#, fuzzy
+#, fuzzy, python-format
msgid "%d package is going to be upgraded."
msgid_plural "%d packages are going to be upgraded."
msgstr[0] "%s·つのパッケージがアップグレードされます。"
#: ../DistUpgrade/DistUpgradeViewGtk.py:503
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"\n"
"\n"
@@ -586,10 +620,13 @@ msgstr "アップグレードには数時間かかり、今後一切キャンセ
#: ../DistUpgrade/DistUpgradeViewGtk.py:512
msgid "To prevent data loss close all open applications and documents."
-msgstr "データの損失を避けるため、すべてのアプリケーションとドキュメントを閉じてください。"
+msgstr ""
+"データの損失を避けるため、すべてのアプリケーションとドキュメントを閉じてくだ"
+"さい。"
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "システムは最新の状態です!"
@@ -615,12 +652,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 分"
@@ -635,6 +672,7 @@ msgid "%li seconds"
msgstr "%li 秒"
#. 56 kbit
+#. 1Mbit = 1024 kbit
#: ../DistUpgrade/DistUpgradeView.py:38
#, python-format
msgid ""
@@ -654,6 +692,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 " "
@@ -668,11 +707,13 @@ msgid ""
msgstr ""
"<b><big>アップグレードをキャンセルしますか?</big></b>\n"
"\n"
-"アップグレードをキャンセルすると、おそらくシステムは不安定な状態になります。アップグレードを再開することを強くおすすめします。"
+"アップグレードをキャンセルすると、おそらくシステムは不安定な状態になります。"
+"アップグレードを再開することを強くおすすめします。"
#: ../DistUpgrade/DistUpgrade.glade.h:5
msgid "<b><big>Restart the system to complete the upgrade</big></b>"
-msgstr "<b><big>アップグレードを完了するためにシステムの再起動が必要です</big></b>"
+msgstr ""
+"<b><big>アップグレードを完了するためにシステムの再起動が必要です</big></b>"
#: ../DistUpgrade/DistUpgrade.glade.h:6
msgid "<b><big>Start the upgrade?</big></b>"
@@ -765,6 +806,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 +848,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"
@@ -817,7 +861,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"
@@ -827,15 +873,17 @@ 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
+#, 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/秒"
@@ -856,17 +904,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"
@@ -882,113 +935,123 @@ 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"
msgstr "アップデートをインストール中"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "バージョン %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "変更点を取得中..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "すべてのチェックをはずす(_U)"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
#, fuzzy
msgid "_Check All"
msgstr "チェック(_C)"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "ダウンロードサイズ: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "%s 個のアップデートがインストールされます"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "しばらくお待ちください。少々時間がかかります。"
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "アップデートが完了しました"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "インストールできるアップデートをチェック"
-#: ../UpdateManager/UpdateManager.py:810
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:826
+#, fuzzy, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "新しいバージョン: %s (サイズ: %s)"
-#: ../UpdateManager/UpdateManager.py:814
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:830
+#, fuzzy, python-format
msgid "Version %s"
msgstr "バージョン %s:"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(サイズ: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "このディストリビューションはすでにサポート対象外です"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 ""
-"セキュリティフィックスやアップデートはもう提供されません。最新バージョンの Ubuntu Linux にアップグレードしてください。 \n"
+"セキュリティフィックスやアップデートはもう提供されません。最新バージョンの "
+"Ubuntu Linux にアップグレードしてください。\r\n"
"アップグレードに関する詳細な情報は http://www.ubuntu.com をご覧ください。"
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>新しいディストリビューション '%s' にアップグレードできます</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "ソフトウェアのインデックスが壊れています"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 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"
@@ -1004,8 +1067,9 @@ msgid ""
msgstr ""
"<b><big>アップデートの情報を手動でチェックしてください</big></b>\n"
"\n"
-"システムはアップデートを自動的にチェックしません。この設定の変更は·\"システム(System)\"·->·\"システム管理\"·-"
-">·\"ソフトウェアのプロパティ (Software Properties)\" で行います。"
+"システムはアップデートを自動的にチェックしません。この設定の変更は·\"システム"
+"(System)\"·->·\"システム管理\"·->·\"ソフトウェアのプロパティ (Software "
+"Properties)\" で行います。"
#: ../data/glade/UpdateManager.glade.h:4
msgid "<big><b>Keep your system up-to-date</b></big>"
@@ -1068,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"
@@ -1163,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"
@@ -1225,7 +1293,8 @@ msgid ""
msgstr ""
"<b><big>チャンネルの情報が古いです</big></b>\n"
"\n"
-"新規追加ないし変更したチャンネルからインストールまたはアップデートを行うため、チャンネルを再読み込みしてください。\n"
+"新規追加ないし変更したチャンネルからインストールまたはアップデートを行うた"
+"め、チャンネルを再読み込みしてください。\n"
"\n"
"続けるためには、インターネット接続が有効になっている必要があります。"
@@ -1260,8 +1329,8 @@ msgid ""
msgstr ""
"<big><b>追加したい完全な APT line を入力してください。</b></big>\n"
"\n"
-"APT lineにはタイプ、場所、チャンネルのセクションなどを含めることができます。例:<i>\"deb http://ftp.debian.org "
-"sarge main\"</i>"
+"APT lineにはタイプ、場所、チャンネルのセクションなどを含めることができます。"
+"例:<i>\"deb http://ftp.debian.org sarge main\"</i>"
#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14
msgid "APT line:"
@@ -1305,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"
@@ -1318,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"
@@ -1348,205 +1420,249 @@ 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
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'"
+#. 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 "非フリー (Multiuniverse)"
+#. 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)"
+#. 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.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に適合しないソフトウェア"
@@ -1555,7 +1671,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"
@@ -1579,7 +1694,8 @@ msgstr "DFSGに適合しないソフトウェア"
#~ msgid ""
#~ "<span weight=\"bold\" size=\"x-large\">Upgrading to Ubuntu 6.10</span>"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"x-large\">Ubuntu 6.06 LTS にアップデート中</span>"
+#~ "<span weight=\"bold\" size=\"x-large\">Ubuntu 6.06 LTS にアップデート中</"
+#~ "span>"
#, fuzzy
#~ msgid "Important security updates of Ubuntu"
@@ -1600,23 +1716,25 @@ msgstr "DFSGに適合しないソフトウェア"
#~ msgstr ""
#~ "<big><b>システムを解析中です</b></big>\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 秒"
@@ -1636,11 +1754,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 "<b>Channels</b>"
#~ msgstr "<b>チャンネル</b>"
@@ -1692,9 +1813,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 "リポジトリが変更されました"
@@ -1702,17 +1825,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 "<b>Sections</b>"
#~ msgstr "<b>セクション:</b>"
#~ 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 "古いパッケージ削除しますか?"
@@ -1721,18 +1847,19 @@ msgstr "DFSGに適合しないソフトウェア"
#~ "<span weight=\"bold\" size=\"x-large\">Upgrading to Ubuntu \"Dapper\" "
#~ "6.04</span>"
#~ msgstr ""
-#~ "<span·weight=\"bold\"·size=\"x-large\">Ubuntu·\"Dapper\"·6.04 "
-#~ "にアップグレード中</span>"
+#~ "<span·weight=\"bold\"·size=\"x-large\">Ubuntu·\"Dapper\"·6.04 にアップグ"
+#~ "レード中</span>"
#~ msgid ""
#~ "<big><b>Checking for available updates</b></big>\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 ""
#~ "<big><b>アップデートをチェック中</b></big>\n"
#~ "\n"
-#~ "アップデートによってソフトウェアの問題を修正し、セキュリティホールを除去し、新機能を追加します。"
+#~ "アップデートによってソフトウェアの問題を修正し、セキュリティホールを除去"
+#~ "し、新機能を追加します。"
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>セクション:</b>"
@@ -1775,11 +1902,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 "パッケージ取得中にエラー"
@@ -1787,7 +1915,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"
@@ -1812,9 +1942,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 "<b>Sources</b>"
@@ -1848,15 +1980,18 @@ msgstr "DFSGに適合しないソフトウェア"
#~ msgstr ""
#~ "<big><b>認証鍵</b></big>\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)"
@@ -1877,9 +2012,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)"
@@ -1905,26 +2042,27 @@ msgstr "DFSGに適合しないソフトウェア"
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>アップデートがあります</b></big>\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 "バイナリ"
@@ -1945,7 +2083,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 "全てのパッケージをアップグレードすることは不可能です。"
@@ -1953,21 +2092,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 "アップデートされるパッケージのリスト..."
@@ -1977,22 +2122,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 "このメッセージを二度と表示しない"
@@ -2001,10 +2146,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 "アップデートリストを取得中..."
@@ -2021,9 +2167,10 @@ msgstr "DFSGに適合しないソフトウェア"
#, fuzzy
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>利用可能なアップデート</b></big>\n"
#~ "\n"
-#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれらのパッケージがインストールされます。" \ No newline at end of file
+#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれら"
+#~ "のパッケージがインストールされます。"
diff --git a/po/ka.po b/po/ka.po
index 067f4ffd..53b668c7 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:39+0000\n"
"Last-Translator: Vladimer Sichinava <alinux@siena.linux.it>\n"
"Language-Team: Georgian <geognome@googlegroups.com>\n"
@@ -57,13 +57,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)"
@@ -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,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 ""
"<big><b>Error scanning the CD</b></big>\n"
"\n"
@@ -171,6 +173,7 @@ msgstr "საჭჳრო მეტა-პაკეტების განა
msgid "A essential package would have to be removed"
msgstr "A არსებითი -სკენ"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:220
#, fuzzy
msgid "Could not calculate the upgrade"
@@ -186,6 +189,7 @@ msgid ""
msgstr ""
"მოხდა დაუდგენელი შეცდომა განახლების დათვლისას. შეატყობინეთ ეს როგორხ ხარვეზი."
+#. FIXME: maybe ask a question here? instead of failing?
#: ../DistUpgrade/DistUpgradeCache.py:246
msgid "Error authenticating some packages"
msgstr "ზოგიერთი პაკეტის ავთენთიფიკაციის შეცდომა"
@@ -209,9 +213,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 "მეტა-პაკეტი ვერ გამოვიცანით"
@@ -275,6 +279,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
#, fuzzy
msgid "Generate default sources?"
@@ -338,6 +343,7 @@ 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 "გნებავთ განახლების დაწყება?"
@@ -407,6 +413,7 @@ msgid ""
"more information. "
msgstr "-თვის ინფორმაცია "
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -417,6 +424,7 @@ 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,6 +481,7 @@ 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'"
@@ -501,6 +510,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 "ცვლილებების დამტკიცება"
@@ -516,6 +526,7 @@ msgid ""
"package and include the files in /var/log/dist-upgrade/ in the bugreport."
msgstr ""
+#. self.expander.set_expanded(True)
#: ../DistUpgrade/DistUpgradeViewGtk.py:202
#, python-format
msgid ""
@@ -542,15 +553,16 @@ msgstr "A შეცდომა"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
#, 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
+#, fuzzy, python-format
msgid "%d package is going to be removed."
msgid_plural "%d packages are going to be removed."
msgstr[0] "A არსებითი -სკენ"
@@ -587,8 +599,9 @@ msgstr "საათი და ნებისმიერი დრო."
msgid "To prevent data loss close all open applications and documents."
msgstr "ვის დახურვა ყველა გახსნა და დოკუმენტები."
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "თქვენი სისტემა განახლებულია"
@@ -634,6 +647,7 @@ msgid "%li seconds"
msgstr ""
#. 56 kbit
+#. 1Mbit = 1024 kbit
#: ../DistUpgrade/DistUpgradeView.py:38
#, python-format
msgid ""
@@ -654,6 +668,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 " "
@@ -767,6 +782,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 "ვერ ვრთავ განახლების ჩადგმის ხელსაწყოს"
@@ -871,15 +887,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"
@@ -895,74 +914,77 @@ 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"
msgstr "განახლებების _დაყენება"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "ვერსია %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "მიმდინარეობს ჩამოქაჩვა სია ის."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
#, fuzzy
msgid "_Check All"
msgstr "შ_ემოწმება"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "ჩამოსატვირთის ზომა: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "თქვენ შეგიძლიათ %s განახლების ჩადგმა"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "გთხოვთ მოითმინოთ, მიმდინარე პროცესს საკმაო დრო ესაჭიორება."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "განახლება გასრულებულია"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "განახლებების _დაყენება"
-#: ../UpdateManager/UpdateManager.py:810
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:826
+#, fuzzy, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "ახალი ვერსია: %s (ზომა: %s)"
-#: ../UpdateManager/UpdateManager.py:814
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:830
+#, fuzzy, python-format
msgid "Version %s"
msgstr "ვერსია %s:"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "თქვენი დისტრიბუტივს აღარ გააჩნია მხარდაჭერა"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../UpdateManager/UpdateManager.py:844
#, fuzzy
msgid ""
"You will not get any further security fixes or critical updates. Upgrade to "
@@ -972,16 +994,17 @@ msgstr ""
"თქვენ არა ნებისმიერი ან კრიტიკული განახლება -სკენ a ვერსია ის ლინუქსი "
"იხილეთhttp://www.ubuntu.com -თვის ინფორმაცია ჩართულია."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "პროგრამების სიის ინდექსი დაზიანებულია"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
#, fuzzy
msgid ""
"It is impossible to install or remove any software. Please use the package "
@@ -990,19 +1013,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"
@@ -1369,203 +1396,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"
@@ -1618,8 +1690,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 ტერმინალი -სკენ "
#~ "განახლება."
@@ -1698,4 +1770,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 cb8c6fe3..2ee4468a 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-06 11:33+0000\n"
"Last-Translator: Eungkyu Song <eungkyu@gmail.com>\n"
"Language-Team: Korean <ko@li.org>\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:207
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,9 +220,10 @@ 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"
@@ -230,8 +238,8 @@ msgid ""
"The error message was:\n"
"'%s'"
msgstr ""
-"CD를 더할 때 오류가 발생하였기 때문에 업그레이드는 중단될 것입니다. 올바른 우분투 CD를 사용하고 있었다면 이 버그를 보고해 "
-"주십시오.\n"
+"CD를 더할 때 오류가 발생하였기 때문에 업그레이드는 중단될 것입니다. 올바른 우"
+"분투 CD를 사용하고 있었다면 이 버그를 보고해 주십시오.\n"
"\n"
"오류 메시지:\n"
"'%s'"
@@ -251,8 +259,10 @@ 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"
@@ -269,12 +279,15 @@ 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 "기본 설정된 소스 목록을 만듭니까?"
@@ -289,7 +302,8 @@ msgid ""
msgstr ""
"'sources.list'를 검색했지만 '%s'에 적합한 항목을 찾지 못했습니다.\n"
"\n"
-"'%s'에 대한 기본 항목을 추가하시겠습니까? '아니오'를 선택하면 업데이트가 취소됩니다."
+"'%s'에 대한 기본 항목을 추가하시겠습니까? '아니오'를 선택하면 업데이트가 취소"
+"됩니다."
#: ../DistUpgrade/DistUpgradeControler.py:301
msgid "Repository information invalid"
@@ -299,7 +313,9 @@ 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"
@@ -311,8 +327,9 @@ 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"
@@ -323,7 +340,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"
@@ -336,9 +354,11 @@ 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 "업그레이드를 시작하시겠습니까?"
@@ -355,11 +375,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"
@@ -369,7 +389,9 @@ 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"
@@ -383,9 +405,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"
+"Canonical Ltd.는 다음의 소프트웨어 패키지를 더 이상 지원하지 않습니다. 커뮤니"
+"티를 통해서 여전히 지원받을 수 있습니다.\n"
"\n"
-"커뮤니티 관리 소프트웨어를 (universe) 활성화하지 않았다면, 다음 단계에서 이 패키지들을 삭제하도록 제안할 것입니다."
+"커뮤니티 관리 소프트웨어를 (universe) 활성화하지 않았다면, 다음 단계에서 이 "
+"패키지들을 삭제하도록 제안할 것입니다."
#: ../DistUpgrade/DistUpgradeControler.py:552
msgid "Remove obsolete packages?"
@@ -407,8 +431,11 @@ 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 "시스템을 원래의 상태로 복구하고 있습니다"
@@ -419,6 +446,7 @@ 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"
@@ -453,8 +481,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"
@@ -472,6 +500,7 @@ 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,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:202
#, python-format
msgid ""
@@ -541,16 +573,18 @@ msgstr "심각한 오류 발생"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -584,14 +618,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:512
msgid "To prevent data loss close all open applications and documents."
msgstr "데이터 손실을 막으려면 열려있는 모든 프로그램과 문서를 닫으십시오."
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "시스템이 최신의 상태입니다."
@@ -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 ""
"<b><big>실행 중인 업그레이드를 취소하시겠습니까?</big></b>\n"
"\n"
-"업그레이드를 취소하면 시스템이 사용할 수 없는 상태가 될 수 있습니다. 업그레이드를 계속 하시기를 강력히 건의합니다."
+"업그레이드를 취소하면 시스템이 사용할 수 없는 상태가 될 수 있습니다. 업그레이"
+"드를 계속 하시기를 강력히 건의합니다."
#: ../DistUpgrade/DistUpgrade.glade.h:5
msgid "<b><big>Restart the system to complete the upgrade</big></b>"
@@ -764,6 +804,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 +846,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 +858,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 +870,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
@@ -853,14 +901,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 "제안하는 업데이트"
@@ -873,109 +924,118 @@ msgstr "Backports"
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "버전 %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr "변경 사항 목록을 다운로드하고 있습니다..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "전체 선택 취소(_U)"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr "전체 선택(_C)"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "다운로드 크기: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "업데이트 %s개를 설치할 수 있습니다."
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "잠시만 기다리십시오. 이 작업은 약간의 시간이 걸립니다."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "완전히 업데이트하였습니다."
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "업데이트 확인"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "버전 %(old_version)s에서 %(new_version)s(으)로"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "버전 %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(크기: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "더 이상 지원되지 않는 배포판입니다."
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 ""
-"더 이상 보안이나 중요 업데이트를 받을 수 없습니다. 최신의 우분투 리눅스로 업그레이드 하십시오. 업그레이드에 대한 더 많은 정보는 "
-"http://www.ubuntu.com에서 보실 수 있습니다."
+"더 이상 보안이나 중요 업데이트를 받을 수 없습니다. 최신의 우분투 리눅스로 업"
+"그레이드 하십시오. 업그레이드에 대한 더 많은 정보는 http://www.ubuntu.com에"
+"서 보실 수 있습니다."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>새 배포판 '%s'을(를) 설치할 수 있습니다</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "소프트웨어 목록이 망가졌습니다."
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 ""
-"어떤 소프트웨어도 설치하거나 삭제할 수 없습니다. \"시냅틱\"이나 터미널에서 \"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"
@@ -990,7 +1050,8 @@ msgid ""
msgstr ""
"<b><big>업데이트 확인을 직접 해야 합니다.</big></b>\n"
"\n"
-"업데이트 확인이 자동으로 되지 않습니다. 이 동작은 <i>인터넷 업데이트</i> 탭의 <i>소프트웨어 소스</i>에서 설정할 수 있습니다."
+"업데이트 확인이 자동으로 되지 않습니다. 이 동작은 <i>인터넷 업데이트</i> 탭"
+"의 <i>소프트웨어 소스</i>에서 설정할 수 있습니다."
#: ../data/glade/UpdateManager.glade.h:4
msgid "<big><b>Keep your system up-to-date</b></big>"
@@ -1037,7 +1098,8 @@ msgid ""
msgstr ""
"배포판 업그레이드를 수행하여 가능한 많은 업데이트를 설치합니다. \n"
"\n"
-"이것은 완료되지 않은 업그레이드나 비공식 소프트웨어 패키지, 또는 개발버전에서 실행했기 때문일 수 있습니다."
+"이것은 완료되지 않은 업그레이드나 비공식 소프트웨어 패키지, 또는 개발버전에"
+"서 실행했기 때문일 수 있습니다."
#: ../data/glade/UpdateManager.glade.h:16
msgid "Show progress of single files"
@@ -1051,7 +1113,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"
@@ -1111,10 +1175,12 @@ msgid ""
"The results are used to improve the support for popular applications and to "
"rank applications in the search results.</i>"
msgstr ""
-"<i>우분투의 사용자 경험을 개선하기 위해 인기 경연에 참여해 주십시오. 그러면 설치된 소프트웨어의 목록과 사용하는 빈도를 수집하여 "
-"우분투 프로젝트로 일주일에 한번씩 익명으로 전송합니다.\n"
+"<i>우분투의 사용자 경험을 개선하기 위해 인기 경연에 참여해 주십시오. 그러면 "
+"설치된 소프트웨어의 목록과 사용하는 빈도를 수집하여 우분투 프로젝트로 일주일"
+"에 한번씩 익명으로 전송합니다.\n"
"\n"
-"그 결과는 인기있는 프로그램의 지원을 개선하고 검색 결과에서 프로그램의 순위를 매기는데 사용합니다.</i>"
+"그 결과는 인기있는 프로그램의 지원을 개선하고 검색 결과에서 프로그램의 순위"
+"를 매기는데 사용합니다.</i>"
#: ../data/glade/SoftwareProperties.glade.h:9
msgid "Add Cdrom"
@@ -1202,7 +1268,8 @@ msgid ""
msgstr ""
"<b><big>이용할 수 있는 소프트웨어에 대한 정보가 오래되었습니다.</big></b>\n"
"\n"
-"새로 추가하거나 변경한 소스로부터 소프트웨어를 설치하거나 업데이트하려면, 이용할 수 있는 소프트웨어에 대한 정보를 다시 읽어야 합니다.\n"
+"새로 추가하거나 변경한 소스로부터 소프트웨어를 설치하거나 업데이트하려면, 이"
+"용할 수 있는 소프트웨어에 대한 정보를 다시 읽어야 합니다.\n"
"\n"
"계속하기 위해서는 인터넷 연결이 필요합니다."
@@ -1234,10 +1301,11 @@ msgid ""
"The APT line includes the type, location and components of a repository, for "
"example <i>\"deb http://ftp.debian.org sarge main\"</i>."
msgstr ""
-"<big><b>추가하고자 하는 소스 저장소의 APT 줄을 완전히 입력하십시오.</b></big>\n"
+"<big><b>추가하고자 하는 소스 저장소의 APT 줄을 완전히 입력하십시오.</b></"
+"big>\n"
"\n"
-"APT 줄은 다음 예와 같이 채널의 종류, 위치, 구성요소를 포함합니다. <i>\"deb http://ftp.debian.org "
-"sarge main\"</i>"
+"APT 줄은 다음 예와 같이 채널의 종류, 위치, 구성요소를 포함합니다. <i>\"deb "
+"http://ftp.debian.org sarge main\"</i>"
#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14
msgid "APT line:"
@@ -1279,7 +1347,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"
@@ -1291,8 +1360,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"
@@ -1320,199 +1389,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 "변경 사항 목록이 아직 없습니다. 잠시 후 다시 시도해 주십시오."
@@ -1520,10 +1636,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 27d3aac3..6f6e1835 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-04 06:52+0000\n"
"Last-Translator: ElîxanLoran <elixanloran@hotmail.com>\n"
"Language-Team: Kurdish <ku@li.org>\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"
@@ -291,6 +296,7 @@ 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?"
@@ -359,6 +365,7 @@ 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î?"
@@ -430,6 +437,7 @@ 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"
@@ -440,6 +448,7 @@ 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,8 +482,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."
@@ -495,6 +504,7 @@ 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'"
@@ -523,6 +533,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 "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:202
#, python-format
msgid ""
@@ -566,9 +578,9 @@ msgstr "Çewtiyeke giran derket"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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,29 +590,30 @@ 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
+#, fuzzy, 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."
#: ../DistUpgrade/DistUpgradeViewGtk.py:492
-#, 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 dê were sazkirin"
msgstr[1] "%s paket dê werin sazkirin"
#: ../DistUpgrade/DistUpgradeViewGtk.py:498
-#, 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 dê were bilindkirin."
msgstr[1] "%s paket dê werin bilindkirin."
#: ../DistUpgrade/DistUpgradeViewGtk.py:503
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"\n"
"\n"
@@ -622,8 +635,9 @@ 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:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Sîstema te rojane ye"
@@ -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 "<b><big>Restart the system to complete the upgrade</big></b>"
msgstr ""
-"<b><big>Ji bo bidawîanîna bilindkirinê pergalê ji nû ve bide "
-"destpêkirin</big></b>"
+"<b><big>Ji bo bidawîanîna bilindkirinê pergalê ji nû ve bide destpêkirin</"
+"big></b>"
#: ../DistUpgrade/DistUpgrade.glade.h:6
msgid "<b><big>Start the upgrade?</big></b>"
@@ -801,6 +817,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"
@@ -896,14 +913,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"
@@ -916,71 +936,74 @@ msgstr ""
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"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Guherto %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr "Lîsteya guhartinan tê daxistin..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "Yekê Jî _Hilnebijêre"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr "Hemûyan _Hilbijêrî"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Mezinahiya daxistinê: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Tu dikarî %s rojanekirinê saz bikî"
msgstr[1] "Tu dikarî %s rojanekirinan saz bikî"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Divê raweste, dibe ku ev hinekî demdijêj be."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Rojanekirin temam bû"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "Rojanekirin têne venihartin."
-#: ../UpdateManager/UpdateManager.py:810
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:826
+#, fuzzy, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Guhertoya nû: %s (Mezinahî: %s)"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Guherto %s:"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Mezinahî:%s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Belavkariya ku tu bikar tîne nayê destekirin"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -990,16 +1013,17 @@ msgstr ""
"nestîne. Pergala xwe ya xebatê bilindî guhertoya Ubuntu Linuxê bike. Ji bo "
"agahiyên berfireh malpera http://www.ubuntu.com ziyaret bike."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Weşana belavkariya nû dikare bigihêje '%s'</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Pêrista nivîsbariyê xera bûye"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1007,23 +1031,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"
@@ -1361,193 +1389,237 @@ 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 ""
+#. 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'"
+#. 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 "Neazad (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 "Neazad (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 "Cdroma 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 "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'"
+#. Description
#: ../data/channels/Ubuntu.info.in:140
#, fuzzy
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 6.06 'Dapper Drake'"
+#. 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 ""
+#. 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'"
+#. 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 ""
+#. 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 ""
+#. CompDescription
#: ../data/channels/Ubuntu.info.in:209
#, fuzzy
msgid "No longer officially supported"
msgstr "Bi piştgirtiya fermî"
+#. 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 ""
+#. 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 ""
+#. CompDescription
#: ../data/channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr ""
@@ -1578,4 +1650,4 @@ msgstr ""
#~ msgstr "<b>Kanal</b>"
#~ msgid " "
-#~ msgstr " " \ No newline at end of file
+#~ msgstr " "
diff --git a/po/lt.po b/po/lt.po
index 4669a9cd..4ba906c9 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:39+0000\n"
"Last-Translator: Mantas Kriaučiūnas <mantas@akl.lt>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\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,13 +55,15 @@ 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
+#, fuzzy, python-format
msgid "%s updates"
msgstr "Diegiami 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 ""
"<big><b>Error scanning the CD</b></big>\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"
@@ -274,6 +279,7 @@ 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šą?"
@@ -338,6 +344,7 @@ 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ą?"
@@ -413,6 +420,7 @@ 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"
@@ -423,6 +431,7 @@ 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 +461,7 @@ msgid "Invalid package information"
msgstr "Netinkama paketo informacija"
#: ../DistUpgrade/DistUpgradeControler.py:721
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"After your package information was updated the essential package '%s' can "
"not be found anymore.\n"
@@ -480,6 +489,7 @@ 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'"
@@ -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:202
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"Replace the customized configuration file\n"
"'%s'?"
@@ -549,20 +561,21 @@ msgstr "Įvyko lemtinga klaida"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
#, 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
+#, 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:492
-#, 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:498
-#, 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:503
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"\n"
"\n"
@@ -610,8 +623,9 @@ msgstr ""
"Norint išvengti duomenų praradimo turite užverti visas atvertas programas ir "
"dokumentus."
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Jūsų sistema atnaujinta"
@@ -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 "<b><big>Restart the system to complete the upgrade</big></b>"
msgstr ""
-"<b><big>Norėdami užbaigti atnaujinimą paleiskite operacijų sistemą iš "
-"naujo</big></b>"
+"<b><big>Norėdami užbaigti atnaujinimą paleiskite operacijų sistemą iš naujo</"
+"big></b>"
#: ../DistUpgrade/DistUpgrade.glade.h:6
msgid "<b><big>Start the upgrade?</big></b>"
@@ -793,6 +809,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"
@@ -866,12 +883,12 @@ msgstr ""
"serverio problema. "
#: ../UpdateManager/GtkProgress.py:108
-#, fuzzy
+#, fuzzy, 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"
#: ../UpdateManager/GtkProgress.py:113
-#, fuzzy
+#, fuzzy, python-format
msgid "Downloading file %(current)li of %(total)li"
msgstr "Atsiunčiamas failas %li iš %li, %s/s greičiu"
@@ -894,15 +911,18 @@ msgid ""
"Please check your Internet connection."
msgstr "Nepavyko atsiųsti pakeitimų sąrašo. 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"
+#. 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"
@@ -918,76 +938,79 @@ msgstr "Ubuntu 5.10 atnaujinimai"
msgid "Distribution updates"
msgstr "_Tęsti atnaujinimą"
+#. TRANSLATORS: updates from an 'unknown' origin
#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266
#, fuzzy
msgid "Other updates"
msgstr "Diegiami atnaujinimai"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Versija %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "Atsiunčiamas pakeitimų sąrašas..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
#, fuzzy
msgid "_Check All"
msgstr "_Patikrinti"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. 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:617
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:633
+#, fuzzy, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Rodyti ir įdiegti galimus atnaujinimus"
msgstr[1] "Rodyti ir įdiegti galimus atnaujinimus"
msgstr[2] "Rodyti ir įdiegti galimus atnaujinimus"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Palaukite, tai gali užtrukti."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Atnaujinimas užbaigtas"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "Diegiami atnaujinimai"
-#: ../UpdateManager/UpdateManager.py:810
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:826
+#, fuzzy, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Nauja versija: %s (Dydis: %s)"
-#: ../UpdateManager/UpdateManager.py:814
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:830
+#, fuzzy, python-format
msgid "Version %s"
msgstr "Versija %s:"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Jūsų distribucija daugiau nebepalaikoma"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -997,16 +1020,17 @@ msgstr ""
"Atnaujinkite į naujausią „Ubuntu Linux“ versiją. Daugiau informacijos apie "
"atnaujinimą rasite http://www.ubuntu.com ."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Programinės įrangos turinys sugadintas"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1016,19 +1040,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"
@@ -1398,211 +1426,253 @@ 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"
+#. CompDescription
#: ../data/channels/Ubuntu.info.in:13
#, fuzzy
msgid "Community maintained"
msgstr "Prižiūrima bendruomenės (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 "Ne Laisva (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
#, 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)"
+#. CompDescriptionLong
#: ../data/channels/Ubuntu.info.in:65
#, fuzzy
msgid "Community maintained Open Source software"
msgstr "Prižiūrima bendruomenės (Universe)"
+#. 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 ""
+#. 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“"
+#. 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 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"
+#. 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 "Oficialiai palaikoma"
+#. Description
#: ../data/channels/Ubuntu.info.in:177
#, fuzzy
msgid "Ubuntu 5.04 Security Updates"
msgstr "Ubuntu 5.10 saugumo atnaujinimai"
+#. Description
#: ../data/channels/Ubuntu.info.in:182
#, fuzzy
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.10 atnaujinimai"
+#. Description
#: ../data/channels/Ubuntu.info.in:187
#, fuzzy
msgid "Ubuntu 5.04 Backports"
msgstr "Ubuntu 5.10 atnaujinimai"
+#. 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 "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 ""
+#. 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"
+#. Description
#: ../data/channels/Ubuntu.info.in:223
#, fuzzy
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 5.10 atnaujinimai"
+#. Description
#: ../data/channels/Ubuntu.info.in:228
#, fuzzy
msgid "Ubuntu 4.10 Backports"
msgstr "Ubuntu 5.10 atnaujinimai"
+#. 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"
@@ -1626,7 +1696,8 @@ msgstr "Su DFSG nesuderinama programinė įranga"
#~ msgid ""
#~ "<span weight=\"bold\" size=\"x-large\">Upgrading to Ubuntu 6.10</span>"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"x-large\">Atnaujinama į Ubuntu 6.06 LTS</span>"
+#~ "<span weight=\"bold\" size=\"x-large\">Atnaujinama į Ubuntu 6.06 LTS</"
+#~ "span>"
#, fuzzy
#~ msgid "Important security updates of Ubuntu"
@@ -1648,21 +1719,21 @@ msgstr "Su DFSG nesuderinama programinė įranga"
#~ msgstr ""
#~ "<big><b>Ieškoma galimų atnaujinimų</b></big>\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:"
@@ -1740,8 +1811,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"
@@ -1753,17 +1824,19 @@ msgstr "Su DFSG nesuderinama programinė įranga"
#~ msgstr "<b>Skyriai:</b>"
#~ msgid ""
-#~ "<b><big>You need to manually reload the latest information about "
-#~ "updates</big></b>\n"
+#~ "<b><big>You need to manually reload the latest information about updates</"
+#~ "big></b>\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 ""
-#~ "<b><big>Jūs turite patys įkelti naujausią informaciją apie "
-#~ "atnaujinimus</big></b>\n"
+#~ "<b><big>Jūs turite patys įkelti naujausią informaciją apie atnaujinimus</"
+#~ "big></b>\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 874789b6..5b5b8394 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -8,8 +8,8 @@
msgid ""
msgstr ""
"Project-Id-Version: lp-upd-manager-lv\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2006-10-04 20:51+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 19:12+0000\n"
"Last-Translator: mixat <miks.latvis@gmail.com>\n"
"Language-Team: Latvian <locale@laka.lv>\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 ""
@@ -254,6 +259,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -310,6 +316,7 @@ 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 ""
@@ -372,6 +379,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -382,6 +390,7 @@ 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"
@@ -432,6 +441,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -497,13 +509,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -546,8 +559,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -717,6 +733,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,14 +823,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 ""
@@ -826,33 +846,35 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Versija %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
@@ -860,73 +882,79 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "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"
@@ -1250,187 +1278,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 354dbda5..f9f85504 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:39+0000\n"
"Last-Translator: Арангел Ангов <ufo@linux.net.mk>\n"
"Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\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 "Не може да се погоди мета пакетот"
@@ -276,6 +281,7 @@ msgstr ""
"изберете „Да“, ќе ги надградам '%s' до '%s' записи.\n"
"Ако изберете „не“, надградбата ќе прекине."
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
#, fuzzy
msgid "Generate default sources?"
@@ -289,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' да бидат додадени? Ако изберете „Не“, "
"надградувањето ќе прекини."
@@ -346,6 +352,7 @@ 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 "Дали сакате да ја започнете надградбата?"
@@ -413,6 +420,7 @@ msgstr ""
"Се случи некој проблем при расчистувањето. Видете ја пораката подолу за "
"повеќе информации. "
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -423,6 +431,7 @@ 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
@@ -479,6 +488,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -545,13 +557,14 @@ msgstr "Се случи фатална грешка"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -596,8 +609,9 @@ msgstr ""
"За да спречите загуба на податоци, затворете ги сите отворени апликации и "
"документи."
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
#, fuzzy
msgid "Your system is up-to-date"
msgstr "Вашиот систем е надграден!"
@@ -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 " "
@@ -777,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 "Не можам да ја извршам алатката за надградба"
@@ -880,15 +897,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"
@@ -904,95 +924,99 @@ 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"
msgstr "Инсталирам надградби..."
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Верзија %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "Преземам промени"
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
-#, fuzzy
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
+#, fuzzy, python-format
msgid "Download size: %s"
msgstr "Преземам промени"
-#: ../UpdateManager/UpdateManager.py:617
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:633
+#, fuzzy, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Инсталирам надградби..."
msgstr[1] "Инсталирам надградби..."
msgstr[2] "Инсталирам надградби..."
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Ве молам, почекајте, ова може да потрае."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Надградбата е завршена"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "Проверувам за надградби..."
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:830
+#, fuzzy, python-format
msgid "Version %s"
msgstr "Верзија %s:"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
#, fuzzy
msgid "Your distribution is not supported anymore"
msgstr "Вашата дистрибуција повеќе не е поддржана"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 ""
"Повеќе нема да добивате безбедносни поправки или критични надградби. "
-"Надградете го системот на понова верзија на Ubuntu Linux. Видете на "
-"http://www.ubuntu.com за повеќе информации за надградувањето."
+"Надградете го системот на понова верзија на Ubuntu Linux. Видете на http://"
+"www.ubuntu.com за повеќе информации за надградувањето."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Новото издание на дистрибуцијата, '%s', е достапно</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Индексот на софтвер е расипан"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1002,19 +1026,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"
@@ -1277,8 +1305,8 @@ msgid ""
"The APT line includes the type, location and components of a repository, for "
"example <i>\"deb http://ftp.debian.org sarge main\"</i>."
msgstr ""
-"<big><b>Внесете ја комплетната линија за APT складиштето за да го "
-"додадете</b></big>\n"
+"<big><b>Внесете ја комплетната линија за APT складиштето за да го додадете</"
+"b></big>\n"
"\n"
"APT линијата го содржи типот, локацијата и содржината на складиштето за на "
"пример <i>\"deb http://ftp.debian.org sarge main\"</i>. Во документацијата "
@@ -1368,209 +1396,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-компатибилен софтвер"
@@ -1598,8 +1670,8 @@ msgstr "Не-DFSG-компатибилен софтвер"
#, fuzzy
#~ msgid "The upgrade aborts now. Please report this bug."
#~ msgstr ""
-#~ "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова "
-#~ "како бубачка."
+#~ "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го "
+#~ "ова како бубачка."
#, fuzzy
#~ msgid "Hide details"
@@ -1705,13 +1777,13 @@ msgstr "Не-DFSG-компатибилен софтвер"
#~ "<big><b>Внесете ја комплетната линија за APT складиштето за да го "
#~ "додадете</b></big>\n"
#~ "\n"
-#~ "APT линијата го содржи типот, локацијата и содржината на складиштето за на "
-#~ "пример <i>\"deb http://ftp.debian.org sarge main\"</i>. Во документацијата "
-#~ "можете да најдете детален опис на синтаксата."
+#~ "APT линијата го содржи типот, локацијата и содржината на складиштето за "
+#~ "на пример <i>\"deb http://ftp.debian.org sarge main\"</i>. Во "
+#~ "документацијата можете да најдете детален опис на синтаксата."
#~ 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 ""
#~ "Додајте нова датотека со клуч во доверливиот привезок. Осигурајте се дека "
#~ "сте го добиле клучот преку безбеден канал и дека му верувате на неговиот "
@@ -1745,8 +1817,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 ""
#~ "Врати ги стандардните клучеви на дистрибуцијата. Ова нема да ги смени "
#~ "клучевите инсталирани од корисникот."
@@ -1781,8 +1853,8 @@ msgstr "Не-DFSG-компатибилен софтвер"
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Достапни надградби</b></big>\n"
#~ "\n"
@@ -1874,7 +1946,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"
@@ -1889,11 +1962,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 "Ја ажурирам листата на пакети..."
@@ -1909,17 +1982,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."
@@ -1928,4 +2001,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 29126d96..71e50743 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:40+0000\n"
"Last-Translator: azlinux <azlinux@gmail.com>\n"
"Language-Team: Malay <ms@li.org>\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 ""
"<big><b>Error scanning the CD</b></big>\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."
@@ -279,24 +284,25 @@ 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
+#, 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."
@@ -357,6 +363,7 @@ 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?"
@@ -429,6 +436,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -439,6 +447,7 @@ 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"
@@ -492,6 +501,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -557,15 +569,16 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
+#, 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,11 +614,11 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:512
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
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -776,6 +791,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 ""
@@ -865,14 +881,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 ""
@@ -885,106 +904,114 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
+#: ../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:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1314,188 +1341,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 a2e34ea5..9d1ae679 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:40+0000\n"
"Last-Translator: Hans Petter Birkeland <hanspb@bluezone.no>\n"
"Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\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 ""
"<big><b>Error scanning the CD</b></big>\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"
@@ -287,6 +291,7 @@ 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?"
@@ -360,6 +365,7 @@ 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?"
@@ -435,6 +441,7 @@ 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"
@@ -445,6 +452,7 @@ 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"
@@ -474,7 +482,7 @@ msgid "Invalid package information"
msgstr "Ugyldig pakkeinformasjon"
#: ../DistUpgrade/DistUpgradeControler.py:721
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"After your package information was updated the essential package '%s' can "
"not be found anymore.\n"
@@ -502,6 +510,7 @@ 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'"
@@ -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:249
-#, 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:202
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"Replace the customized configuration file\n"
"'%s'?"
@@ -571,39 +582,40 @@ msgstr "En uopprettelig feil oppsto"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
#, 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
+#, 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:492
-#, 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:498
-#, 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:503
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"\n"
"\n"
@@ -627,8 +639,9 @@ 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
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Systemet ditt er oppdatert!"
@@ -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 " "
@@ -808,6 +823,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"
@@ -883,12 +899,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"
@@ -913,16 +929,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"
@@ -938,94 +957,98 @@ 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"
msgstr "Installerer oppdateringer"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Versjon %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "Laster ned listen med endringer..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
#, fuzzy
msgid "_Check All"
msgstr "Sjekk"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Nedlastingsstørrelse: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Du kan installere %s oppdatering"
msgstr[1] "Du kan installere %s oppdateringer"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Vennligst vent, dette kan ta litt tid."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Oppdateringen er fullført"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "Sjekker for tilgjengelige oppdateringer"
-#: ../UpdateManager/UpdateManager.py:810
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:826
+#, fuzzy, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Ny versjon: %s (Størrelse: %s)"
-#: ../UpdateManager/UpdateManager.py:814
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:830
+#, fuzzy, python-format
msgid "Version %s"
msgstr "Versjon %s:"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Din distribusjon er ikke lenger støttet"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 ""
"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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Ny versjon \"%s\" er tilgjengelig</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Programvareoversikten er ødelagt."
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1035,19 +1058,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"
@@ -1418,206 +1445,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"
@@ -1626,7 +1697,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"
@@ -1650,7 +1720,8 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgid ""
#~ "<span weight=\"bold\" size=\"x-large\">Upgrading to Ubuntu 6.10</span>"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"x-large\">Oppgraderer til Ubuntu 6.06 LTS</span>"
+#~ "<span weight=\"bold\" size=\"x-large\">Oppgraderer til Ubuntu 6.06 LTS</"
+#~ "span>"
#, fuzzy
#~ msgid "Important security updates of Ubuntu"
@@ -1671,26 +1742,25 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgstr ""
#~ "<big><b>Analyserer systemet</b></big>\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"
@@ -1766,8 +1836,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"
@@ -1779,8 +1849,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 "<b>Sections</b>"
#~ msgstr "<b>Seksjoner</b>"
@@ -1832,13 +1902,13 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgstr ""
#~ "<big><b>Autentiseringsnøkler</b></big>\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. "
@@ -1869,8 +1939,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"
@@ -1900,13 +1970,13 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Tilgjengelige oppdateringer</b></big>\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"
@@ -1982,7 +2052,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"
@@ -1990,8 +2061,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."
@@ -2007,19 +2078,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."
@@ -2052,8 +2123,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 ac095915..57911ef0 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:40+0000\n"
"Last-Translator: Jaydeep Bhusal <zaydeep@hotmail.com>\n"
"Language-Team: Nepali <info@mpp.org.np>\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 ""
@@ -264,6 +263,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -321,6 +321,7 @@ 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 ""
@@ -383,6 +384,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -393,6 +395,7 @@ 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
@@ -410,9 +413,7 @@ 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"
@@ -449,6 +450,7 @@ 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,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:202
#, python-format
msgid ""
@@ -515,13 +519,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -561,8 +566,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
#, fuzzy
msgid "Your system is up-to-date"
msgstr "तपाइं को प्रणालि अप-टु-डेट छ!"
@@ -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 " "
@@ -735,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 ""
@@ -743,9 +752,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
@@ -830,18 +837,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"
@@ -857,110 +866,118 @@ msgstr "युबन्टु ५.०४ अद्यावधिकहरु"
msgid "Distribution updates"
msgstr "स्तरवृद्धिहरु स्थापना गर्दै"
+#. TRANSLATORS: updates from an 'unknown' origin
#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266
#, fuzzy
msgid "Other updates"
msgstr "स्तरवृद्धिहरु स्थापना गर्दै"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "संस्करण %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "परिवर्तनहरु डाउनलोड गर्दै"
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
-#, fuzzy
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
+#, fuzzy, python-format
msgid "Download size: %s"
msgstr "परिवर्तनहरु डाउनलोड गर्दै"
-#: ../UpdateManager/UpdateManager.py:617
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:633
+#, fuzzy, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "स्तरवृद्धिहरु स्थापना गर्दै"
msgstr[1] "स्तरवृद्धिहरु स्थापना गर्दै"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "स्तरवृद्धिहरु स्थापना गर्दै"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:830
+#, fuzzy, python-format
msgid "Version %s"
msgstr "संस्करण %s:"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
#, fuzzy
msgid "Your distribution is not supported anymore"
msgstr "तपाईंको वितरण समर्थित छैन"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1221,12 +1238,11 @@ msgid ""
"The APT line includes the type, location and components of a repository, for "
"example <i>\"deb http://ftp.debian.org sarge main\"</i>."
msgstr ""
-"<big><b>तपाईंले थप्न चाहेको कोषको पुर्ण एपिटि हरफ प्रविष्ट "
-"गर्नुहोस</b></big>\n"
+"<big><b>तपाईंले थप्न चाहेको कोषको पुर्ण एपिटि हरफ प्रविष्ट गर्नुहोस</b></big>\n"
"\n"
-"एपिटि हरफमा कोषको प्रकार, स्थान र सामग्री समाहित हुन्छ, उदाहरण को लागि "
-"<i>\"deb http://ftp.debian.org sarge main\"</i>. तपाईंले मिसिलिकरण मा वाक्य "
-"संरचनाको एउटा विस्तृत विवरण पाउन सक्नुहुन्छ"
+"एपिटि हरफमा कोषको प्रकार, स्थान र सामग्री समाहित हुन्छ, उदाहरण को लागि <i>\"deb "
+"http://ftp.debian.org sarge main\"</i>. तपाईंले मिसिलिकरण मा वाक्य संरचनाको एउटा "
+"विस्तृत विवरण पाउन सक्नुहुन्छ"
#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14
msgid "APT line:"
@@ -1310,211 +1326,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 ""
@@ -1546,8 +1607,7 @@ msgstr ""
#, fuzzy
#~ msgid "The upgrade aborts now. Please report this bug."
#~ msgstr ""
-#~ "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा "
-#~ "दिनुहोस"
+#~ "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस"
#, fuzzy
#~ msgid "Hide details"
@@ -1603,11 +1663,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 "<b>Sections</b>"
@@ -1661,18 +1721,16 @@ msgstr ""
#~ msgstr ""
#~ "<big><b>प्रमाणीकरण कुञ्जिहरु</b></big>\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..."
@@ -1701,11 +1759,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 "प्याकेज क्यासको लागि अधिकतम आकार सेट गर्नुहोस"
@@ -1732,13 +1790,13 @@ msgstr ""
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>उपलब्ध अद्यावधिकहरु</b></big>\n"
#~ "\n"
-#~ "निम्न प्याकेजहरु स्तरवृद्धि गर्न योग्य पाइयो. तपाईंले तिनिहरु लाइ स्थापना "
-#~ "बटन प्रयोग गरेर स्तरवृद्धि गर्न सक्नुहुन्छ"
+#~ "निम्न प्याकेजहरु स्तरवृद्धि गर्न योग्य पाइयो. तपाईंले तिनिहरु लाइ स्थापना बटन प्रयोग "
+#~ "गरेर स्तरवृद्धि गर्न सक्नुहुन्छ"
#~ msgid "Cancel downloading the changelog"
#~ msgstr "परिवर्तनलग को डाउनलोड रद्द गर्नुहोस"
@@ -1785,11 +1843,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 "प्याकेज सुची स्तरवृद्धि गर्दै"
@@ -1803,20 +1861,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 "यो संदेश फेरि कहिले पनि नदेखाउनुहोस"
@@ -1837,8 +1894,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 "सबै प्याकेजहरु स्तरवृद्धि गर्न संभव छैन"
@@ -1846,12 +1903,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 b9ef144a..056cadef 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:40+0000\n"
"Last-Translator: Tino Meinen <a.t.meinen@chello.nl>\n"
"Language-Team: Nederlands <vertaling@vrijschrift.org>\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
@@ -124,14 +127,13 @@ 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
+#, fuzzy, python-format
msgid ""
"<big><b>Error scanning the CD</b></big>\n"
"\n"
@@ -170,6 +172,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"
@@ -185,6 +188,7 @@ msgstr ""
"Tijdens het berekenen van de upgrade ontstond er een onoplosbaar probleem. "
"Gelieve dit als fout te rapporteren."
+#. 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"
@@ -213,6 +217,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"
@@ -239,7 +244,7 @@ msgid "Failed to add the CD"
msgstr "Ophalen is mislukt"
#: ../DistUpgrade/DistUpgradeControler.py:75
-#, fuzzy
+#, fuzzy, 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"
@@ -293,6 +298,7 @@ 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?"
@@ -365,6 +371,7 @@ 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?"
@@ -441,6 +448,7 @@ 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"
@@ -451,6 +459,7 @@ 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"
@@ -480,7 +489,7 @@ msgid "Invalid package information"
msgstr "Ongeldige pakketinformatie"
#: ../DistUpgrade/DistUpgradeControler.py:721
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"After your package information was updated the essential package '%s' can "
"not be found anymore.\n"
@@ -508,6 +517,7 @@ 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'"
@@ -519,23 +529,24 @@ msgid "Fetching is complete"
msgstr "De update 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"
#: ../DistUpgrade/DistUpgradeViewGtk.py:130
#: ../DistUpgrade/DistUpgradeViewGtk.py:249
-#, fuzzy
+#, fuzzy, python-format
msgid "About %s remaining"
msgstr "Ongeveer %li minuten 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"
@@ -551,8 +562,9 @@ 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
+#, fuzzy, python-format
msgid ""
"Replace the customized configuration file\n"
"'%s'?"
@@ -577,41 +589,42 @@ msgstr "Er is een ernstige fout ontstaan"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
#, 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 ""
-"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 "
+"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."
+"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
+#, fuzzy, 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."
#: ../DistUpgrade/DistUpgradeViewGtk.py:492
-#, 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] "Er zal %s nieuw pakket geïnstalleerd worden."
msgstr[1] "Er zullen %s nieuwe pakketten geïnstalleerd worden."
#: ../DistUpgrade/DistUpgradeViewGtk.py:498
-#, fuzzy
+#, fuzzy, 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."
#: ../DistUpgrade/DistUpgradeViewGtk.py:503
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"\n"
"\n"
@@ -636,8 +649,9 @@ msgstr ""
"Sluit alle openstaande toepassingen en documenten om dataverlies te "
"voorkomen."
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Uw systeem is up-to-date"
@@ -663,12 +677,12 @@ msgid "Upgrade %s"
msgstr "%s upgraden"
#: ../DistUpgrade/DistUpgradeView.py:27
-#, fuzzy
+#, fuzzy, python-format
msgid "%li days %li hours %li minutes"
msgstr "Ongeveer %li dagen %li uur en %li minuten resterend"
#: ../DistUpgrade/DistUpgradeView.py:29
-#, fuzzy
+#, fuzzy, python-format
msgid "%li hours %li minutes"
msgstr "Ongeveer %li uur en %li minuten resterend"
@@ -683,6 +697,7 @@ msgid "%li seconds"
msgstr ""
#. 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 " "
@@ -815,6 +831,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"
@@ -889,12 +906,12 @@ msgstr ""
"met het netwerk of de server. "
#: ../UpdateManager/GtkProgress.py:108
-#, fuzzy
+#, fuzzy, python-format
msgid "Downloading file %(current)li of %(total)li with %(speed)s/s"
msgstr "Downloaden van bestand %li uit %li met %s/s"
#: ../UpdateManager/GtkProgress.py:113
-#, fuzzy
+#, fuzzy, python-format
msgid "Downloading file %(current)li of %(total)li"
msgstr "Downloaden van bestand %li uit %li met %s/s"
@@ -923,15 +940,18 @@ msgstr ""
"Kon de lijst met wijzigingen niet downloaden. Controleer uw "
"internetverbinding."
+#. Description
#: ../UpdateManager/UpdateManager.py:237 ../data/channels/Ubuntu.info.in:88
#, fuzzy
msgid "Important security updates"
msgstr "Ubuntu 5.10 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"
@@ -947,95 +967,99 @@ msgstr "Ubuntu 5.10 backports"
msgid "Distribution updates"
msgstr "_Upgrade hervatten"
+#. TRANSLATORS: updates from an 'unknown' origin
#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266
#, fuzzy
msgid "Other updates"
msgstr "Up_dates installeren"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Versie %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "Het overzicht van de wijzigingen wordt gedownload..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
#, fuzzy
msgid "_Uncheck All"
msgstr "Alles deselecteren"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
#, fuzzy
msgid "_Check All"
msgstr "_Controleren"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Downloadgrootte: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "U kunt %s update installeren"
msgstr[1] "U kunt %s updates installeren"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Een ogenblik geduld, dit kan even duren."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "De update is voltooid"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "Up_dates installeren"
-#: ../UpdateManager/UpdateManager.py:810
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:826
+#, fuzzy, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Nieuwe versie: %s (Grootte: %s)"
-#: ../UpdateManager/UpdateManager.py:814
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:830
+#, fuzzy, python-format
msgid "Version %s"
msgstr "Versie %s:"
-#: ../UpdateManager/UpdateManager.py:816
-#, fuzzy
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
+#, fuzzy, python-format
msgid "(Size: %s)"
msgstr "(Grootte: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Uw distributie wordt niet langer ondersteund"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 ""
"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:847
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:863
+#, fuzzy, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>De nieuwe Ubuntu-versie '%s' is beschikbaar</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Software-index is beschadigd"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1045,19 +1069,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 ""
+#. 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"
@@ -1332,8 +1360,8 @@ msgid ""
"The APT line includes the type, location and components of a repository, for "
"example <i>\"deb http://ftp.debian.org sarge main\"</i>."
msgstr ""
-"<big><b>Voer de volledige APT-regel in van het kanaal dat u wilt "
-"toevoegen</b></big>\n"
+"<big><b>Voer de volledige APT-regel in van het kanaal dat u wilt toevoegen</"
+"b></big>\n"
"\n"
"De APT-regel bevat het type, de locatie en de componenten van een kanaal, "
"bijvoorbeeld: <i>\"deb http://ftp.debian.org sarge main\"</i>."
@@ -1428,214 +1456,257 @@ msgstr "De venstergrootte"
msgid "Configure the sources for installable software and updates"
msgstr "Software-kanalen 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"
+#. CompDescription
#: ../data/channels/Ubuntu.info.in:13
#, fuzzy
msgid "Community maintained"
msgstr "Door de gemeenschap beheerd (Universe)"
+#. CompDescriptionLong
#: ../data/channels/Ubuntu.info.in:17
#, fuzzy
msgid "Proprietary drivers for devices"
msgstr "Proprietaire drivers voor apparaten"
+#. CompDescription
#: ../data/channels/Ubuntu.info.in:19
#, fuzzy
msgid "Restricted software"
msgstr "Niet-vrij (Multiverse)"
+#. 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'"
+#. CompDescriptionLong
#: ../data/channels/Ubuntu.info.in:62
#, fuzzy
msgid "Canonical supported Open Source software"
msgstr "Door de gemeenschap beheerd (Universe)"
+#. CompDescription
#: ../data/channels/Ubuntu.info.in:64
#, fuzzy
msgid "Community maintained (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)"
+#. CompDescription
#: ../data/channels/Ubuntu.info.in:67
#, fuzzy
msgid "Non-free drivers"
msgstr "Niet-vrij (Multiverse)"
+#. CompDescriptionLong
#: ../data/channels/Ubuntu.info.in:68
#, fuzzy
msgid "Proprietary drivers for devices "
msgstr "Proprietaire drivers voor apparaten "
+#. CompDescription
#: ../data/channels/Ubuntu.info.in:70
#, fuzzy
msgid "Restricted software (Multiverse)"
msgstr "Niet-vrij (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 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'"
+#. 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'"
+#. 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"
+#. Description
#: ../data/channels/Ubuntu.info.in:182
#, fuzzy
msgid "Ubuntu 5.04 Updates"
msgstr "Ubuntu 5.10 updates"
+#. 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 "Ubuntu 5.10 'Breezy Badger'"
+#. 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'"
+#. CompDescription
#: ../data/channels/Ubuntu.info.in:209
#, fuzzy
msgid "No longer officially supported"
msgstr "Bepaalde software wordt 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"
+#. Description
#: ../data/channels/Ubuntu.info.in:223
#, fuzzy
msgid "Ubuntu 4.10 Updates"
msgstr "Ubuntu 5.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\" 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"
@@ -1659,8 +1730,8 @@ msgstr "Software niet compatibel met DFSG"
#~ msgid ""
#~ "<span weight=\"bold\" size=\"x-large\">Upgrading to Ubuntu 6.10</span>"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"x-large\">Bezig met upgraden naar Ubuntu 6.06 "
-#~ "LTS</span>"
+#~ "<span weight=\"bold\" size=\"x-large\">Bezig met upgraden naar Ubuntu "
+#~ "6.06 LTS</span>"
#, fuzzy
#~ msgid "Important security updates of Ubuntu"
@@ -1681,8 +1752,8 @@ msgstr "Software niet compatibel met DFSG"
#~ msgstr ""
#~ "<big><b>Uw system wordt gecontroleerd</b></big>\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"
@@ -1690,18 +1761,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"
@@ -1765,7 +1836,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"
@@ -1775,4 +1846,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 cbe14d0e..b9646447 100644
--- a/po/nn.po
+++ b/po/nn.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2006-10-04 20:51+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-06-19 15:52+0000\n"
"Last-Translator: Willy André Bergstrøm <root@willyandre.net>\n"
"Language-Team: Norwegian Nynorsk <nn@li.org>\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"
@@ -269,6 +274,7 @@ 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?"
@@ -281,8 +287,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."
@@ -334,6 +340,7 @@ 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,6 +403,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -406,6 +414,7 @@ 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,6 +465,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -521,13 +533,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -567,8 +580,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -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,106 +867,114 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
+#: ../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:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -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/no.po b/po/no.po
index fef7836f..78f578db 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:04+0200\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2005-06-08 23:10+0200\n"
"Last-Translator: Terance Edward Sola <terance@lyse.net>\n"
"Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\n"
diff --git a/po/oc.po b/po/oc.po
index c290bdd4..19b234ac 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-09-30 00:43+0000\n"
-"Last-Translator: Yannig MARCHEGAY (Kokoyaya) "
-"<yannick.marchegay@lokanova.com>\n"
+"Last-Translator: Yannig MARCHEGAY (Kokoyaya) <yannick.marchegay@lokanova."
+"com>\n"
"Language-Team: Occitan (post 1500) <oc@li.org>\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 ""
"<big><b>Error scanning the CD</b></big>\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 ""
@@ -258,6 +263,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -314,6 +320,7 @@ 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 ?"
@@ -376,6 +383,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -386,6 +394,7 @@ 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"
@@ -436,6 +445,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -501,13 +513,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -530,7 +543,7 @@ msgstr[0] ""
msgstr[1] ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:503
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"\n"
"\n"
@@ -550,8 +563,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -722,6 +738,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"
@@ -811,14 +828,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 ""
@@ -833,109 +853,117 @@ msgstr "Ubuntu 5.10 'Breezy Badger'"
msgid "Distribution updates"
msgstr "<b>Mesas a jorn per internet</b>"
+#. TRANSLATORS: updates from an 'unknown' origin
#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266
#, fuzzy
msgid "Other updates"
msgstr "<b>Mesas a jorn per internet</b>"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Version %s : \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
#, fuzzy
msgid "_Check All"
msgstr "_Verificar"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Talha de la descarga : %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Podètz installar %s mesa a jorn"
msgstr[1] "Podètz installar %s mesas a jorn"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "La mesa a jorn es terminada"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "<b>Mesas a jorn per internet</b>"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:830
+#, fuzzy, python-format
msgid "Version %s"
msgstr "Version %s :"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Talha : %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1270,200 +1298,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 ""
@@ -1489,4 +1561,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 92afc9b8..7b3574df 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:43+0000\n"
"Last-Translator: Amanpreet Singh Alam <amanpreetalam@yahoo.com>\n"
"Language-Team: Punjabi <fedora-transa-pa@redhat.com>\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 ""
@@ -253,6 +258,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -309,6 +315,7 @@ 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 ""
@@ -371,6 +378,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -381,6 +389,7 @@ 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"
@@ -432,6 +441,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -497,13 +509,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -543,8 +556,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -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 ""
@@ -809,15 +826,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 "<b>ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ</b>"
+#. 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"
@@ -832,108 +852,116 @@ msgstr ""
msgid "Distribution updates"
msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ"
+#. TRANSLATORS: updates from an 'unknown' origin
#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266
#, fuzzy
msgid "Other updates"
msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..."
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:633
+#, fuzzy, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..."
msgstr[1] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..."
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..."
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1271,184 +1299,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 ""
@@ -1501,4 +1574,4 @@ msgstr ""
#, fuzzy
#~ msgid "<b>Sections:</b>"
-#~ msgstr "<b>ਵੇਰਵਾ</b>" \ No newline at end of file
+#~ msgstr "<b>ਵੇਰਵਾ</b>"
diff --git a/po/pl.po b/po/pl.po
index bdff1fad..cbd79878 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-09-02 19:44+0000\n"
"Last-Translator: White Eagle <piotrgaliszewski@gmail.com>\n"
"Language-Team: Polish <translators@gnomepl.org>\n"
@@ -55,6 +55,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"
@@ -62,6 +63,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)"
@@ -71,6 +73,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
@@ -120,8 +123,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
@@ -164,6 +166,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"
@@ -180,6 +183,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"
@@ -203,9 +207,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"
@@ -282,10 +286,11 @@ 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?"
@@ -298,8 +303,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."
@@ -327,8 +332,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"
@@ -353,10 +358,11 @@ 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ę?"
@@ -428,6 +434,7 @@ 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"
@@ -438,6 +445,7 @@ 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,8 +481,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"
@@ -492,6 +500,7 @@ 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'"
@@ -519,6 +528,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"
@@ -536,6 +546,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
#, python-format
msgid ""
@@ -561,18 +572,19 @@ msgstr "Wystąpił błąd krytyczny"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -622,8 +634,9 @@ msgstr ""
"Aby zapobiec utracie danych proszę zamknąć wszystkie otwarte aplikacje i "
"dokumenty."
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Twój system jest w pełni zaktualizowany"
@@ -669,6 +682,7 @@ msgid "%li seconds"
msgstr "%li sekund"
#. 56 kbit
+#. 1Mbit = 1024 kbit
#: ../DistUpgrade/DistUpgradeView.py:38
#, python-format
msgid ""
@@ -690,6 +704,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 " "
@@ -800,6 +815,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"
@@ -833,8 +849,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"
@@ -896,14 +911,17 @@ msgid ""
"Please check your Internet connection."
msgstr ""
+#. 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"
@@ -916,33 +934,35 @@ msgstr "Backporty"
msgid "Distribution updates"
msgstr ""
+#. TRANSLATORS: updates from an 'unknown' origin
#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266
msgid "Other updates"
msgstr "Inne aktualizacje"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Wersja %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "Odznacz wszystkie"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr "Zaznacz wszystkie"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Rozmiar do pobrania: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
@@ -950,38 +970,39 @@ msgstr[0] "Ilość dostępnych aktualizacji: %s"
msgstr[1] "Ilość dostępnych aktualizacji: %s"
msgstr[2] "Ilość dostępnych aktualizacji: %s"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Proszę czekać, to może chwilę potrwać."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Aktualizacja została ukończona."
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "Sprawdzanie dostępności aktualizacji"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Wersja %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Rozmiar: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Twoja dystrybucja nie jest już wspierana"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -991,16 +1012,17 @@ msgstr ""
"krytycznych aktualizacji. Zaktualizuj do nowszej wersji Ubuntu Linux. "
"Odwiedź http://www.ubuntu.com po więcej informacji."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Nowe wydanie dystrybucji \"%s\" jest dostępne</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Spis oprogramowania jest uszkodzony"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1010,19 +1032,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"
@@ -1042,8 +1068,7 @@ msgstr "<big><b>Utrzymuj system w pełni zaktualizowany</b></big>"
#: ../data/glade/UpdateManager.glade.h:5
msgid "<big><b>Not all updates can be installed</b></big>"
-msgstr ""
-"<big><b>Nie wszystkie aktualizacje mogą zostać zainstalowane</b></big>"
+msgstr "<big><b>Nie wszystkie aktualizacje mogą zostać zainstalowane</b></big>"
#: ../data/glade/UpdateManager.glade.h:6
msgid "<big><b>Starting update manager</b></big>"
@@ -1379,190 +1404,233 @@ 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 ""
+#. 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 ""
+#. 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 ""
#~ "<big><b>Error scaning the CD</b></big>\n"
#~ "\n"
@@ -1573,21 +1641,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 ""
@@ -1600,8 +1669,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 --"
@@ -1623,7 +1692,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"
@@ -1633,37 +1701,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'?"
@@ -1672,42 +1733,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."
@@ -1729,17 +1788,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ą"
@@ -1773,13 +1830,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:"
@@ -1793,17 +1850,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 ""
#~ "<b><big>You must check for updates manually</big></b>\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 ""
-#~ "<b><big>Wymagane jest ręczne sprawdzenie dostępności aktualizacji</big></b>\n"
+#~ "<b><big>Wymagane jest ręczne sprawdzenie dostępności aktualizacji</big></"
+#~ "b>\n"
#~ "\n"
#~ "System nie sprawdza dostępności aktualizacji automatycznie. To ustawienie "
#~ "można to zmienić w \"System\" -> \"Administracja\" -> \"Software "
@@ -1817,8 +1875,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#~ msgstr ""
#~ "<big><b>Sprawdzanie systemu</b></big>\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"
@@ -1826,8 +1884,8 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#~ msgid ""
#~ "<b><big>The channel information is out-of-date</big></b>\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,31 +1897,33 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#~ "Aby kontynuować potrzebne jest działające połączenie internetowe."
#~ msgid ""
-#~ "<big><b>Enter the complete APT line of the source that you want to "
-#~ "add</b></big>\n"
+#~ "<big><b>Enter the complete APT line of the source that you want to add</"
+#~ "b></big>\n"
#~ "\n"
#~ "The APT line includes the type, location and components of a source, for "
#~ "example <i>\"deb http://ftp.debian.org sarge main\"</i>."
#~ msgstr ""
-#~ "<big><b>Wpisz pełny wiersz APT opisujący kanał który chcesz dodać</b></big>\n"
+#~ "<big><b>Wpisz pełny wiersz APT opisujący kanał który chcesz dodać</b></"
+#~ "big>\n"
#~ "\n"
-#~ "Wiersz APT zawiera typ, lokalizację i zawartość kanału, przykładowo <i>\"deb "
-#~ "http://ftp.debian.org sarge main\"</i>."
+#~ "Wiersz APT zawiera typ, lokalizację i zawartość kanału, przykładowo <i>"
+#~ "\"deb http://ftp.debian.org sarge main\"</i>."
#~ 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)"
@@ -1876,7 +1936,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)"
@@ -1953,8 +2014,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"
@@ -2021,13 +2082,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Dostępne aktualizacje</b></big>\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 "<b>Repository</b>"
#~ msgstr "<b>Repozytorium</b>"
@@ -2047,20 +2108,21 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#~ msgstr ""
#~ "<big><b>Klucze autentykacyjne</b></big>\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"
@@ -2082,11 +2144,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"
@@ -2110,8 +2172,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"
@@ -2119,12 +2182,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 ""
@@ -2135,11 +2199,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..."
@@ -2149,13 +2213,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!"
@@ -2166,11 +2231,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..."
@@ -2208,13 +2273,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#, fuzzy
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Dostępne aktualizacje</b></big>\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 ec8da300..227583eb 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-06 18:27+0000\n"
"Last-Translator: Susana <susana.pereira@gmail.com>\n"
"Language-Team: Ubuntu Portuguese Team <ubuntu-pt.org>\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"
@@ -288,6 +293,7 @@ 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?"
@@ -356,10 +362,11 @@ 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?"
@@ -437,6 +444,7 @@ 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"
@@ -447,6 +455,7 @@ 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"
@@ -505,6 +514,7 @@ 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'"
@@ -532,6 +542,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"
@@ -547,9 +558,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
#, python-format
msgid ""
@@ -577,18 +589,19 @@ msgstr "Ocorreu um erro fatal"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -611,7 +624,7 @@ msgstr[0] "%d pacote será actualizado."
msgstr[1] "%d pacotes serão actualizados."
#: ../DistUpgrade/DistUpgradeViewGtk.py:503
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"\n"
"\n"
@@ -635,8 +648,9 @@ 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
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "O seu sistema está actualizado"
@@ -684,6 +698,7 @@ msgid "%li seconds"
msgstr "%li segundos"
#. 56 kbit
+#. 1Mbit = 1024 kbit
#: ../DistUpgrade/DistUpgradeView.py:38
#, python-format
msgid ""
@@ -706,6 +721,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"
@@ -917,14 +933,17 @@ msgstr ""
"Falha a 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"
@@ -937,71 +956,74 @@ 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"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Versão %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr "A descarregar a lista de alterações..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "_Desmarcar Todos"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr "_Verificar Todos"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Tamanho do download: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Pode instalar %s actualização"
msgstr[1] "Pode instalar %s actualizações"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Por favor aguarde, isto pode levar algum tempo."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "A actualização está completa"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "Verificar por actualizações disponíveis"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Da versão: %(old_version)s para %(new_version)s"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Versão %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Tamanho: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "A sua distribuição já não é suportada"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -1011,16 +1033,17 @@ msgstr ""
"versão mais recente do Ubuntu Linux. Veja http://www.ubuntu.com para mais "
"informação em como actualizar."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Está disponível a nova versão '%s' da distribuição</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "O índice de software está quebrado"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1030,19 +1053,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"
@@ -1069,8 +1096,8 @@ msgstr "<big><b>Mantenha o seu sistema actualizado</b></big>"
#: ../data/glade/UpdateManager.glade.h:5
msgid "<big><b>Not all updates can be installed</b></big>"
msgstr ""
-"<big><b>Não é possível instalar todas as actualizações</b></big> \n"
-" \n"
+"<big><b>Não é possível instalar todas as actualizações</b></big>\r\n"
+"\r\n"
"%s"
#: ../data/glade/UpdateManager.glade.h:6
@@ -1413,192 +1440,235 @@ 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)"
+#. 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"
@@ -1621,7 +1691,8 @@ msgstr "Software compatível-DFSG"
#~ msgid ""
#~ "<span weight=\"bold\" size=\"x-large\">Upgrading to Ubuntu 6.10</span>"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"x-large\">A actualizar para Ubuntu 6.10</span>"
+#~ "<span weight=\"bold\" size=\"x-large\">A actualizar para Ubuntu 6.10</"
+#~ "span>"
#~ msgid "Important security updates of Ubuntu"
#~ msgstr "Actualizações de segurança importantes do Ubuntu"
@@ -1648,17 +1719,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"
@@ -1679,12 +1749,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 "<b>Channels</b>"
#~ msgstr "<b>Repositórios</b>"
@@ -1734,8 +1806,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"
@@ -1754,15 +1826,15 @@ msgstr "Software compatível-DFSG"
#~ "\n"
#~ "Need to get the changes from the central server"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"larger\">A efectuar download de "
-#~ "alterações</span>\n"
+#~ "<span weight=\"bold\" size=\"larger\">A efectuar download de alterações</"
+#~ "span>\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 "
@@ -1775,8 +1847,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"
@@ -1801,8 +1873,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. "
@@ -1817,4 +1889,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 60893d45..def6479d 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-02 11:49+0000\n"
"Last-Translator: Andre Noel <drenoel@gmail.com>\n"
"Language-Team: Ubuntu-BR <tradutores@listas.ubuntubrasil.org>\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"
@@ -291,6 +296,7 @@ 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?"
@@ -364,6 +370,7 @@ 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?"
@@ -435,6 +442,7 @@ 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"
@@ -445,6 +453,7 @@ 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 +487,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."
@@ -500,6 +509,7 @@ 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'"
@@ -528,6 +538,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"
@@ -546,6 +557,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
#, python-format
msgid ""
@@ -571,17 +583,18 @@ msgstr "Ocorreu um erro fatal"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -626,8 +639,9 @@ 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:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Seu sistema está atualizado"
@@ -675,6 +689,7 @@ msgid "%li seconds"
msgstr "%li segundos"
#. 56 kbit
+#. 1Mbit = 1024 kbit
#: ../DistUpgrade/DistUpgradeView.py:38
#, python-format
msgid ""
@@ -696,6 +711,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 " "
@@ -715,8 +731,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:5
msgid "<b><big>Restart the system to complete the upgrade</big></b>"
-msgstr ""
-"<b><big>Reinicie o seu sistema para finalizar a atualização</big></b>"
+msgstr "<b><big>Reinicie o seu sistema para finalizar a atualização</big></b>"
#: ../DistUpgrade/DistUpgrade.glade.h:6
msgid "<b><big>Start the upgrade?</big></b>"
@@ -806,6 +821,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"
@@ -904,14 +920,17 @@ msgid ""
"Please check your Internet connection."
msgstr ""
+#. 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"
@@ -924,71 +943,74 @@ msgstr "Backports"
msgid "Distribution updates"
msgstr ""
+#. TRANSLATORS: updates from an 'unknown' origin
#: ../UpdateManager/UpdateManager.py:249 ../UpdateManager/UpdateManager.py:266
msgid "Other updates"
msgstr "Outras atualizações"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Versão %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "_Desmarcar Todos"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr "_Marcar Todos"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Tamanho do download: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Você pode instalar %s atualização"
msgstr[1] "Você pode instalar %s atualizações"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Aguarde por favor, isso pode levar algum tempo."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "A atualização está completa"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "Verificando por atualizações"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Versão %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Tamanho: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Sua distribuição não é mais suportada"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -998,16 +1020,17 @@ msgstr ""
"falhas de segurança. Atualize para uma versão mais nova do Ubuntu Linux. "
"Veja http://www.ubuntu-br.org para mais informações."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Uma nova versão da distribuição '%s' está disponível</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "O index do software está quebrado"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1017,19 +1040,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"
@@ -1261,8 +1288,8 @@ msgid ""
"\n"
"You need a working internet connection to continue."
msgstr ""
-"<b><big>A informação sobre programas disponíveis está "
-"desatualizada</big></b>\n"
+"<b><big>A informação sobre programas disponíveis está desatualizada</big></"
+"b>\n"
"\n"
"Para instalar programas e atualizações de fontes recentemente adicionadas ou "
"alteradas, você tem que recarregar as informações sobre programas "
@@ -1372,8 +1399,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 ""
@@ -1390,190 +1416,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 ""
+#. 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 ""
+#. 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 ""
#~ "<big><b>Error scaning the CD</b></big>\n"
#~ "\n"
@@ -1587,22 +1656,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."
@@ -1611,9 +1680,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."
@@ -1631,7 +1700,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'?"
@@ -1639,19 +1707,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."
@@ -1663,10 +1728,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."
@@ -1674,27 +1738,26 @@ msgstr "Programas não compatíveis com a DFSG"
#~ msgid ""
#~ "<span weight=\"bold\" size=\"x-large\">Upgrading to Ubuntu 6.10</span>"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"x-large\">Atualizando para o Ubuntu 6.10</span>"
+#~ "<span weight=\"bold\" size=\"x-large\">Atualizando para o Ubuntu 6.10</"
+#~ "span>"
#~ 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 "
@@ -1730,21 +1793,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 ""
#~ "<b><big>You must check for updates manually</big></b>\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 ""
#~ "<b><big>Você deve verificar por atualizações manualmente</big></b>\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 ""
#~ "<big><b>Examining your system</b></big>\n"
@@ -1754,8 +1817,8 @@ msgstr "Programas não compatíveis com a DFSG"
#~ msgstr ""
#~ "<big><b>Verificando as Atualizações Disponíveis</b></big>\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"
@@ -1763,8 +1826,8 @@ msgstr "Programas não compatíveis com a DFSG"
#~ msgid ""
#~ "<b><big>The channel information is out-of-date</big></b>\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 ""
@@ -1776,8 +1839,8 @@ msgstr "Programas não compatíveis com a DFSG"
#~ "Você necessita uma conexão de internet para continuar."
#~ msgid ""
-#~ "<big><b>Enter the complete APT line of the source that you want to "
-#~ "add</b></big>\n"
+#~ "<big><b>Enter the complete APT line of the source that you want to add</"
+#~ "b></big>\n"
#~ "\n"
#~ "The APT line includes the type, location and components of a source, for "
#~ "example <i>\"deb http://ftp.debian.org sarge main\"</i>."
@@ -1790,8 +1853,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ê "
@@ -1818,18 +1881,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"
@@ -1850,7 +1912,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."
@@ -1909,8 +1972,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"
@@ -1961,12 +2024,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"
@@ -1976,8 +2039,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"
@@ -2002,11 +2065,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 "<b>Sources</b>"
@@ -2029,13 +2092,13 @@ msgstr "Programas não compatíveis com a DFSG"
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Available Updates</b></big>\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 "<b>Repository</b>"
#~ msgstr "<b>Repository</b>"
@@ -2055,16 +2118,16 @@ msgstr "Programas não compatíveis com a DFSG"
#~ msgstr ""
#~ "<big><b>Authentication keys</b></big>\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. "
@@ -2089,11 +2152,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"
@@ -2126,11 +2189,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."
@@ -2139,11 +2204,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..."
@@ -2153,33 +2218,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..."
@@ -2211,10 +2276,10 @@ msgstr "Programas não compatíveis com a DFSG"
#, fuzzy
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Available Updates</b></big>\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 38609208..d8a39c96 100644
--- a/po/qu.po
+++ b/po/qu.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2006-10-04 20:51+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Quechua <qu@li.org>\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 ""
@@ -251,6 +256,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -307,6 +313,7 @@ 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 ""
@@ -369,6 +376,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -379,6 +387,7 @@ 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"
@@ -429,6 +438,7 @@ 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,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:202
#, python-format
msgid ""
@@ -494,13 +506,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -540,8 +553,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -711,6 +727,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 ""
@@ -800,14 +817,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 ""
@@ -820,106 +840,114 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
+#: ../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:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1241,184 +1269,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 9335d302..e11b90cb 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:40+0000\n"
"Last-Translator: Sami POTIRCA <spotirca@gmail.com>\n"
"Language-Team: Romanian <gnomero-list@lists.sourceforge.net>\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 ""
"<big><b>Error scanning the CD</b></big>\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"
@@ -285,6 +290,7 @@ 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?"
@@ -353,6 +359,7 @@ 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?"
@@ -424,6 +431,7 @@ 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"
@@ -435,6 +443,7 @@ 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"
@@ -469,8 +478,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."
@@ -490,6 +499,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -557,18 +569,19 @@ msgstr "S-a produs o eroare fatală"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -618,8 +631,9 @@ msgstr ""
"Pentru a preveni pierderea datelor închideţi toate aplicaţiile şi "
"documentele."
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Sistemul dumneavoastră este actualizat la zi!"
@@ -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 " "
@@ -797,6 +813,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"
@@ -896,14 +913,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"
@@ -918,34 +938,36 @@ 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"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Versiunea %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "Se descarcă listă schimbărilor..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Dimensiune descărcare: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
@@ -953,39 +975,40 @@ msgstr[0] "Puteţi instala actualizarea %s"
msgstr[1] "Puteţi instala actualizarea %s"
msgstr[2] "Puteţi instala actualizarea %s"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Vă rugăm aşteptaţi, ar putea dura."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Actualizare completă."
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "_Instalează actualizarile"
-#: ../UpdateManager/UpdateManager.py:810
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:826
+#, fuzzy, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Versiunea nouă: %s (Mărime: %s)"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Versiunea %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Dimensiune: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Distribuţia dvs. nu mai este asistată"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -995,16 +1018,17 @@ msgstr ""
"Instalaţi o versiune mai nouă a Ubuntu Linux. Vedeţi http://www.ubuntu.com "
"pentru mai multe informaţii legate de actualizare."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Noua versiune '%s' este disponibilă</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Indexul software este deteriorat"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1014,19 +1038,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"
@@ -1294,9 +1322,9 @@ msgstr ""
"<big><b>Introduceţi linia APT completă a locaţiei pe care doriţi să o "
"adăugaţi</b></big>\n"
"\n"
-"Linia APT conţine tipul, adresa şi conţinutul unei locaţii, de "
-"exemplu<i>\"deb http://ftp.debian.org sarge main\"</i>. 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<i>"
+"\"deb http://ftp.debian.org sarge main\"</i>. Puteţi găsi o descriere "
+"detaliată a sintaxei în documentaţie."
#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14
msgid "APT line:"
@@ -1379,191 +1407,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"
@@ -1681,13 +1753,13 @@ msgstr "Software incompatibil DFSG"
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Actualizări disponibile</b></big>\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 "<b>Repository</b>"
#~ msgstr "<b>Locaţie</b>"
@@ -1707,8 +1779,8 @@ msgstr "Software incompatibil DFSG"
#~ msgstr ""
#~ "<big><b>Chei autentificare</b></big>\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"
@@ -1716,8 +1788,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 "
@@ -1734,8 +1806,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."
@@ -1760,8 +1832,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."
@@ -1771,8 +1843,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."
@@ -1795,13 +1867,13 @@ msgstr "Software incompatibil DFSG"
#, fuzzy
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Actualizări disponibile</b></big>\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 ff5f15bb..8274052c 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-03 02:07+0000\n"
"Last-Translator: Igor Zubarev <igor4u@gmail.com>\n"
"Language-Team: Russian <ru@li.org>\n"
@@ -18,7 +18,6 @@ msgstr ""
"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"
msgstr "Ежедневно"
@@ -57,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"
@@ -64,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)"
@@ -73,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
@@ -122,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 +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 "Невозможно подготовить обновление системы"
@@ -183,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 "Ошибка при проверке подлинности некоторых пакетов"
@@ -210,6 +213,7 @@ msgstr ""
"Невозможно установить необходимый пакет. Пожалуйста, отправьте отчет об "
"ошибке. "
+#. FIXME: provide a list
#: ../DistUpgrade/DistUpgradeCache.py:320
msgid "Can't guess meta-package"
msgstr "Невозможно подобрать мета-пакет"
@@ -289,6 +293,7 @@ msgstr ""
"обновлены все записи '%s' на '%s'.\n"
"Ответ 'Нет' отменит обновление."
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr "Сгенерировать источники по умолчанию?"
@@ -301,8 +306,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'? Ответ 'Нет' прервет обновление."
@@ -359,6 +364,7 @@ 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 "Вы хотите начать обновление системы?"
@@ -435,6 +441,7 @@ msgstr ""
"При очистке возникла проблема. Более полная информация приведена в сообщении "
"ниже. "
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr "Восстановление первоначального состояния системы"
@@ -445,6 +452,7 @@ 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"
@@ -498,6 +506,7 @@ 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'"
@@ -525,6 +534,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 "Применение изменений"
@@ -542,6 +552,7 @@ msgstr ""
"Обновление прервано. Пожалуйста сообщите об ошибке в пакете 'update-manager' "
"и включите файлы, находящиеся в /var/log/dist-upgrade/ в сообщение об ошибке"
+#. self.expander.set_expanded(True)
#: ../DistUpgrade/DistUpgradeViewGtk.py:202
#, python-format
msgid ""
@@ -567,17 +578,18 @@ msgstr "Произошла неисправимая ошибка"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -626,8 +638,9 @@ msgid "To prevent data loss close all open applications and documents."
msgstr ""
"Чтобы избежать потерь данных, закройте все открытые приложения и документы."
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Ваша система не требует обновления"
@@ -674,6 +687,7 @@ msgid "%li seconds"
msgstr "%li секунд"
#. 56 kbit
+#. 1Mbit = 1024 kbit
#: ../DistUpgrade/DistUpgradeView.py:38
#, python-format
msgid ""
@@ -688,12 +702,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 " "
@@ -803,6 +817,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 "Невозможно запустить утилиту обновления"
@@ -900,14 +915,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 "Предлагаемые обновления"
@@ -920,33 +938,35 @@ msgstr "Бэкпорты"
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Версия %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr "Загрузка списка изменений..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "Сбросить все"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr "Проверить все"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Размер загружаемых данных: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
@@ -954,38 +974,39 @@ msgstr[0] "Вы можете установить %s обновление"
msgstr[1] "Вы можете установить %s обновления"
msgstr[2] "Вы можете установить %s обновлений"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Пожалуйста подождите, это может занять некоторое время."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Обновление завершено"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "Проверка наличия обновлений"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "С версии %(old_version)s на %(new_version)s"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Версия %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Размер: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Ваша версия Ubuntu больше не поддерживается"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -995,16 +1016,17 @@ msgstr ""
"обновления. Обновите систему до более поздней версии Ubuntu Linux. Для "
"получения информации об обновлении посетите http://www.ubuntu.com"
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Доступен новый релиз дистрибутива '%s'</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Индекс программ поврежден"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1014,19 +1036,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"
@@ -1387,207 +1413,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 ""
+#. 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 "
@@ -1604,7 +1674,6 @@ msgstr "Не-DFSG-совместимое ПО"
#~ "Программное обеспечение, ограниченное копирайтом или другими правовыми "
#~ "проблемами"
-#, python-format
#~ msgid "Downloading file %li of %li with unknown speed"
#~ msgstr "Загрузка файла %li из %li с неизвестной скоростью"
@@ -1655,17 +1724,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 секунд"
@@ -1741,4 +1810,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 d3e86628..4d7d8978 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:43+0000\n"
"Last-Translator: Steve Murphy <murf@e-tools.com>\n"
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\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 ""
@@ -266,6 +271,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -323,6 +329,7 @@ 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 ""
@@ -385,6 +392,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -395,6 +403,7 @@ 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
@@ -448,6 +457,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -514,13 +526,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -557,8 +570,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
#, fuzzy
msgid "Your system is up-to-date"
msgstr "Sisitemu ni Hejuru Kuri Itariki"
@@ -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 " "
@@ -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 ""
@@ -829,15 +846,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"
@@ -853,109 +873,117 @@ 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:462
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:478
+#, fuzzy, python-format
msgid "Version %s: \n"
msgstr "Verisiyo \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "Iyimura... i"
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:633
+#, fuzzy, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Sisitemu ni Hejuru Kuri Itariki"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "Kwinjiza porogaramu"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:830
+#, fuzzy, python-format
msgid "Version %s"
msgstr "Verisiyo"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
#, fuzzy
msgid "Your distribution is not supported anymore"
msgstr "Ikwirakwiza... ni Oya"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1300,207 +1328,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 ""
@@ -1631,8 +1704,8 @@ msgstr ""
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 B Byabonetse Kuri ku ikoresha i Akabuto"
#, fuzzy
@@ -1654,13 +1727,13 @@ msgstr ""
#~ "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 ""
-#~ "<B Utubuto B Kongeramo Na Gukuraho... Utubuto in iyi Ikiganiro A Urufunguzo "
-#~ "Kuri Kugenzura... i Bya i Gufungura"
+#~ "<B Utubuto B Kongeramo Na Gukuraho... Utubuto in iyi Ikiganiro A "
+#~ "Urufunguzo Kuri Kugenzura... i Bya i Gufungura"
#, 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 Gishya Urufunguzo IDOSIYE Kuri i i Urufunguzo KURI a Na i "
#, fuzzy
@@ -1685,8 +1758,8 @@ 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 ""
#~ "i Mburabuzi Utubuto Na: i Ikwirakwiza... OYA Guhindura>> Ukoresha: Utubuto"
@@ -1719,7 +1792,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"
@@ -1734,8 +1808,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"
@@ -1750,16 +1824,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
@@ -1768,8 +1842,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"
@@ -1798,4 +1872,4 @@ msgstr ""
#, fuzzy
#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr "com" \ No newline at end of file
+#~ msgstr "com"
diff --git a/po/sk.po b/po/sk.po
index f8f2a15c..34c34f09 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:43+0000\n"
"Last-Translator: Peter Chabada <ubuntu@chabada.sk>\n"
"Language-Team: Slovak <sk-i18n@linux.sk>\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 ""
"<big><b>Error scanning the CD</b></big>\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."
@@ -278,6 +283,7 @@ 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?"
@@ -290,8 +296,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ý."
@@ -350,6 +356,7 @@ 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?"
@@ -425,6 +432,7 @@ 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"
@@ -435,6 +443,7 @@ 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 +473,7 @@ msgid "Invalid package information"
msgstr "Neplatná informácia o balíku"
#: ../DistUpgrade/DistUpgradeControler.py:721
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"After your package information was updated the essential package '%s' can "
"not be found anymore.\n"
@@ -472,8 +481,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
@@ -492,6 +501,7 @@ 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'"
@@ -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:249
-#, 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:202
-#, 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:356
#, 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
+#, 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:492
-#, 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:498
-#, 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:503
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"\n"
"\n"
@@ -613,16 +626,16 @@ 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:512
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
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Váš systém je aktuálny"
@@ -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 " "
@@ -801,6 +816,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"
@@ -874,12 +890,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"
@@ -904,15 +920,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"
@@ -928,36 +947,38 @@ 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"
msgstr "Nainštalovať _aktualizácie"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Verzia %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "Získava sa zoznam zmien..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
#, fuzzy
msgid "_Check All"
msgstr "_Skontrolovať"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Veľkosť na stiahnutie: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
@@ -965,39 +986,40 @@ msgstr[0] "Môžete nainštalovať %s aktualizáciu"
msgstr[1] "Môžete nainštalovať %s aktualizácie"
msgstr[2] "Môžete nainštalovať %s aktualizácií"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Čakajte prosím, toto môže chvíľu trvať."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Aktualizácia je dokončená"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "Kontrolujem aktualizácie..."
-#: ../UpdateManager/UpdateManager.py:810
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:826
+#, fuzzy, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Nová verzia: %s (veľkosť: %s)"
-#: ../UpdateManager/UpdateManager.py:814
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:830
+#, fuzzy, python-format
msgid "Version %s"
msgstr "Verzia %s:"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Vaša distribúcia už nie je podporovaná"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -1005,19 +1027,20 @@ 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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>K dispozícii je nové vydanie distribúcie '%s'</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Index softvéru je poškodený"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1027,20 +1050,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"
@@ -1317,11 +1344,11 @@ msgid ""
"The APT line includes the type, location and components of a repository, for "
"example <i>\"deb http://ftp.debian.org sarge main\"</i>."
msgstr ""
-"<big><b>Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete "
-"pridať</b></big>\n"
+"<big><b>Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete pridať</"
+"b></big>\n"
"\n"
-"APT riadok obsahuje typ, umiestnenie a súčasti zdrojov softvéru. Napr.: "
-"<i>\"deb·http://ftp.debian.org·sarge·main\"</i>."
+"APT riadok obsahuje typ, umiestnenie a súčasti zdrojov softvéru. Napr.: <i>"
+"\"deb·http://ftp.debian.org·sarge·main\"</i>."
#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14
msgid "APT line:"
@@ -1413,206 +1440,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"
@@ -1621,7 +1692,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"
@@ -1645,8 +1715,8 @@ msgstr "Softvér nekompatibilný s DFSG"
#~ msgid ""
#~ "<span weight=\"bold\" size=\"x-large\">Upgrading to Ubuntu 6.10</span>"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"x-large\">Prebieha aktualizácia na Ubuntu 6.06 "
-#~ "LTS</span>"
+#~ "<span weight=\"bold\" size=\"x-large\">Prebieha aktualizácia na Ubuntu "
+#~ "6.06 LTS</span>"
#, fuzzy
#~ msgid "Important security updates of Ubuntu"
@@ -1675,18 +1745,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"
@@ -1769,15 +1838,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)."
@@ -1786,8 +1855,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"
@@ -1802,14 +1871,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 ""
#~ "<big><b>Analysing your system</b></big>\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 ""
#~ "<big><b>Analyzuje sa váš systém</b></big>\n"
#~ "\n"
@@ -1817,8 +1886,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."
@@ -1829,15 +1898,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 "<b>Sections</b>"
#~ msgstr "<b>Sekcie:</b>"
#~ msgid ""
-#~ "<big><b>Enter the complete APT line of the channel that you want to "
-#~ "add</b></big>\n"
+#~ "<big><b>Enter the complete APT line of the channel that you want to add</"
+#~ "b></big>\n"
#~ "\n"
#~ "The APT line contains the type, location and sections of a channel, for "
#~ "example <i>\"deb http://ftp.debian.org sarge main\"</i>."
@@ -1845,8 +1914,8 @@ msgstr "Softvér nekompatibilný s DFSG"
#~ "<big><b>Zadajte kompletný APT riadok zdroja softvéru, ktorý chcete "
#~ "pridať</b></big>\n"
#~ "\n"
-#~ "APT riadok obsahuje typ, umiestnenie a sekcie zdrojov softvéru. Napr.: "
-#~ "<i>\"deb·http://ftp.debian.org·sarge·main\"</i>."
+#~ "APT riadok obsahuje typ, umiestnenie a sekcie zdrojov softvéru. Napr.: <i>"
+#~ "\"deb·http://ftp.debian.org·sarge·main\"</i>."
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Sekcie:</b>"
@@ -1878,8 +1947,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. "
@@ -1909,8 +1978,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."
@@ -1942,8 +2011,8 @@ msgstr "Softvér nekompatibilný s DFSG"
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Dostupné aktualizácie</b></big>\n"
#~ "\n"
@@ -2024,7 +2093,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"
@@ -2033,8 +2103,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."
@@ -2047,8 +2117,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 "
@@ -2059,12 +2129,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"
@@ -2077,4 +2147,4 @@ msgstr "Softvér nekompatibilný s DFSG"
#~ msgstr "A_utentifikácia"
#~ msgid "<b>Packages to install:</b>"
-#~ msgstr "<b>Balíky na inštaláciu:</b>" \ No newline at end of file
+#~ msgstr "<b>Balíky na inštaláciu:</b>"
diff --git a/po/sl.po b/po/sl.po
index dc01145c..a5582fbc 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -7,16 +7,16 @@
msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2006-10-04 20:51+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-08-01 13:08+0000\n"
"Last-Translator: Tadej <tadej.888@gmail.com>\n"
"Language-Team: Slovenian <sl@li.org>\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"
@@ -270,6 +275,7 @@ 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?"
@@ -337,6 +343,7 @@ 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?"
@@ -403,6 +410,7 @@ 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 ""
@@ -413,6 +421,7 @@ 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"
@@ -463,6 +472,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -528,13 +540,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -580,8 +593,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -751,6 +767,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 ""
@@ -840,14 +857,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 ""
@@ -860,33 +880,35 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Različica %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Velikost prenosa: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
@@ -895,73 +917,79 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1283,184 +1311,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 42f6ef44..10e0f7bb 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2006-10-04 20:51+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-09-30 21:20+0000\n"
"Last-Translator: Alejdin Tirolli <a.tirolli@hotmail.com>\n"
"Language-Team: Albanian <sq@li.org>\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"
@@ -273,6 +278,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -329,6 +335,7 @@ 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 ""
@@ -391,6 +398,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -401,6 +409,7 @@ 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"
@@ -451,6 +460,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -516,13 +528,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -562,8 +575,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -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 ""
@@ -822,14 +839,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 ""
@@ -842,106 +862,114 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
+#: ../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:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1263,184 +1291,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 9583ee0a..d433222d 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-06-01 10:04+0000\n"
"Last-Translator: Vladimir Samardzic <vladosam@hotmail.com>\n"
"Language-Team: Serbian <sr@li.org>\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 ""
@@ -264,6 +269,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -314,16 +320,17 @@ msgid "Not enough free disk space"
msgstr "Нема довољно места на диску"
#: ../DistUpgrade/DistUpgradeControler.py:369
-#, fuzzy
+#, 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'."
+#. ask the user if he wants to do the changes
#: ../DistUpgrade/DistUpgradeControler.py:440
msgid "Do you want to start the upgrade?"
msgstr ""
@@ -386,6 +393,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -396,6 +404,7 @@ 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"
@@ -447,6 +456,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -513,13 +525,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -564,8 +577,9 @@ msgid "To prevent data loss close all open applications and documents."
msgstr ""
"Да би спречили губитак података затворите све активне програме и документа."
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -737,6 +753,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 ""
@@ -826,14 +843,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 ""
@@ -846,33 +866,35 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
@@ -880,73 +902,79 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -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/sv.po b/po/sv.po
index a6bc08ea..61bc47ff 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-06 03:32+0000\n"
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\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"
@@ -291,6 +296,7 @@ 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?"
@@ -362,6 +368,7 @@ 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?"
@@ -381,8 +388,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"
@@ -438,6 +445,7 @@ 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"
@@ -448,6 +456,7 @@ 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"
@@ -464,8 +473,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"
@@ -506,6 +515,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -577,17 +589,18 @@ msgstr "Ett ödesdigert fel uppstod"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -632,8 +645,9 @@ 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:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Ditt system är uppdaterat"
@@ -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 " "
@@ -813,6 +829,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"
@@ -916,14 +933,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"
@@ -936,71 +956,74 @@ 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"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Version %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr "Hämtar lista över ändringar..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "_Avmarkera allt"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr "_Kontrollera alla"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Hämtningsstorlek: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "Du kan installera %s uppdatering"
msgstr[1] "Du kan installera %s uppdateringar"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Var god vänta, det här kan ta lite tid."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Uppdateringen är färdig"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "Letar efter uppdateringar"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "Från version %(old_version)s till %(new_version)s"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Version %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Storlek: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Din distribution stöds inte längre"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -1010,16 +1033,17 @@ msgstr ""
"Uppgradera till en senare version av Ubuntu Linux. Se http://www.ubuntu.com "
"för mer information om hur man uppgraderar."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Ny distributionsutgåva \"%s\" finns tillgänglig</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Programindexet är trasigt"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1029,19 +1053,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"
@@ -1402,193 +1430,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 ""
#~ "<big><b>Error scaning the CD</b></big>\n"
#~ "\n"
@@ -1599,22 +1669,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."
@@ -1624,15 +1694,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"
@@ -1644,14 +1714,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"
@@ -1661,37 +1730,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'?"
@@ -1700,38 +1762,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."
@@ -1744,8 +1806,8 @@ msgstr "Icke-DFSG-kompatibel programvara"
#~ msgid ""
#~ "<span weight=\"bold\" size=\"x-large\">Upgrading to Ubuntu 6.06 LTS</span>"
#~ msgstr ""
-#~ "<span weight=\"bold\" size=\"x-large\">Uppgraderar till Ubuntu 6.06 "
-#~ "LTS</span>"
+#~ "<span weight=\"bold\" size=\"x-large\">Uppgraderar till Ubuntu 6.06 LTS</"
+#~ "span>"
#~ msgid "Downloading and installing the upgrades"
#~ msgstr "Hämtar och installerar uppgraderingarna"
@@ -1754,17 +1816,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"
@@ -1783,13 +1843,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:"
@@ -1803,7 +1863,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)"
@@ -1818,13 +1877,14 @@ msgstr "Icke-DFSG-kompatibel programvara"
#~ msgid ""
#~ "<b><big>You must check for updates manually</big></b>\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 ""
#~ "<b><big>Du måste leta efter uppdateringar manuellt</big></b>\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 ""
@@ -1865,8 +1925,8 @@ msgstr "Icke-DFSG-kompatibel programvara"
#~ msgid ""
#~ "<b><big>The channel information is out-of-date</big></b>\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 ""
@@ -1884,16 +1944,17 @@ msgstr "Icke-DFSG-kompatibel programvara"
#~ msgstr "<b>Komponenter</b>"
#~ msgid ""
-#~ "<big><b>Enter the complete APT line of the channel that you want to "
-#~ "add</b></big>\n"
+#~ "<big><b>Enter the complete APT line of the channel that you want to add</"
+#~ "b></big>\n"
#~ "\n"
#~ "The APT line includes the type, location and components of a channel, for "
#~ "example <i>\"deb http://ftp.debian.org sarge main\"</i>."
#~ msgstr ""
-#~ "<big><b>Skriv in hela APT-raden till kanalen du vill lägga till</b></big>\n"
+#~ "<big><b>Skriv in hela APT-raden till kanalen du vill lägga till</b></"
+#~ "big>\n"
#~ "\n"
-#~ "APT-raden innehåller typ, plats och komponenter för en kanal, till exempel "
-#~ "<i>\"deb http://ftp.debian.org sarge main\"</i>."
+#~ "APT-raden innehåller typ, plats och komponenter för en kanal, till "
+#~ "exempel <i>\"deb http://ftp.debian.org sarge main\"</i>."
#~ msgid "Add Channel"
#~ msgstr "Lägg till kanal"
@@ -1911,12 +1972,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 "
@@ -1948,12 +2009,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"
@@ -1962,15 +2023,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)."
@@ -1980,8 +2041,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"
@@ -2001,17 +2062,17 @@ msgstr "Icke-DFSG-kompatibel programvara"
#~ msgid ""
#~ "<big><b>Analysing your system</b></big>\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 ""
#~ "<big><b>Analyserar ditt system</b></big>\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."
@@ -2021,22 +2082,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 "<b>Sections</b>"
#~ msgstr "<b>Avdelningar:</b>"
#~ msgid ""
-#~ "<big><b>Enter the complete APT line of the channel that you want to "
-#~ "add</b></big>\n"
+#~ "<big><b>Enter the complete APT line of the channel that you want to add</"
+#~ "b></big>\n"
#~ "\n"
#~ "The APT line contains the type, location and sections of a channel, for "
#~ "example <i>\"deb http://ftp.debian.org sarge main\"</i>."
#~ msgstr ""
-#~ "<big><b>Skriv in den kompletta APT-raden för kanalen du vill lägga "
-#~ "till</b></big>\n"
+#~ "<big><b>Skriv in den kompletta APT-raden för kanalen du vill lägga till</"
+#~ "b></big>\n"
#~ "\n"
#~ "APT-raden innehåller typ, plats och avdelningar för kanalen, till exempel "
#~ "<i>\"deb http://ftp.debian.org sarge main\"</i>."
@@ -2072,8 +2133,8 @@ msgstr "Icke-DFSG-kompatibel programvara"
#~ "Need to get the changes from the central server"
#~ msgstr ""
#~ "<span weight=\"bold\" size=\"larger\">Nätverksinställningar</span>\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"
@@ -2154,7 +2215,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."
@@ -2163,11 +2225,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..."
@@ -2189,11 +2251,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..."
@@ -2349,16 +2411,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?"
@@ -2599,10 +2663,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"
@@ -3103,8 +3168,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."
@@ -3125,8 +3190,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 ""
@@ -3248,8 +3313,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."
@@ -3359,8 +3424,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"
@@ -3504,7 +3571,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."
@@ -3610,9 +3678,9 @@ msgstr "Icke-DFSG-kompatibel programvara"
#~ "packages. You must free up some disk space before you can continue. Some "
#~ "options include:"
#~ msgstr ""
-#~ "<!--html-->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:"
+#~ "<!--html-->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 "<!--html-->Removing some packages from your system"
#~ msgstr "<!--html-->Tar bort en del paket från ditt system"
@@ -3624,13 +3692,14 @@ msgstr "Icke-DFSG-kompatibel programvara"
#~ msgstr "<a href=\"updater:cache_clear\">Töm din cache</a>."
#~ msgid ""
-#~ "<font color=#ff0000>Warning!</font> 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."
+#~ "<font color=#ff0000>Warning!</font> 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 ""
#~ "<font color=#ff0000>Varning!</font> 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&nbsp;Package"
#~ msgstr "1&nbsp;paket"
@@ -3648,24 +3717,25 @@ msgstr "Icke-DFSG-kompatibel programvara"
#~ msgstr "nödvändiga installationer"
#~ msgid "<html><body><b>Please wait, loading page...</b></body></html>"
-#~ msgstr "<html><body><b>Var vänlig vänta, läser in sidan...</b></body></html>"
+#~ msgstr ""
+#~ "<html><body><b>Var vänlig vänta, läser in sidan...</b></body></html>"
#~ 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 <a href=\"updater:info_page\">about page</a> to "
-#~ "get more information about what software is available, or you can go "
+#~ "You can visit the channel's <a href=\"updater:info_page\">about page</a> "
+#~ "to get more information about what software is available, or you can go "
#~ "directly to the <a href=\"updater:available_page\">install page</a> to "
#~ "install software."
#~ msgstr ""
-#~ "Du kan besöka kanalens <a href=\"updater:info_page\">om-sida</a> för att få "
-#~ "mer information om vilken programvara som är tillgänglig, eller gå direkt "
-#~ "till <a href=\"updater:available_page\">installationssidan</a> för att "
-#~ "installera program."
+#~ "Du kan besöka kanalens <a href=\"updater:info_page\">om-sida</a> för att "
+#~ "få mer information om vilken programvara som är tillgänglig, eller gå "
+#~ "direkt till <a href=\"updater:available_page\">installationssidan</a> för "
+#~ "att installera program."
#~ msgid "View the <a href=\"updater:info_page\">about page</a>."
#~ msgstr "Visa <a href=\"updater:info_page\">om-sidan</a>."
@@ -3677,8 +3747,8 @@ msgstr "Icke-DFSG-kompatibel programvara"
#~ msgstr "Gå tillbaka till <a href=\"updater:summary\">sammanfattningen</a>."
#~ 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 <a href=updater:available_page>Install page</a>."
#~ msgstr ""
#~ "Du har inga paket installerade från denna kanal. Följande fördefinierade "
@@ -3686,37 +3756,37 @@ msgstr "Icke-DFSG-kompatibel programvara"
#~ "href=updater:available_page>installationssidan</a>."
#~ msgid ""
-#~ "To install new software from this channel, visit the <a "
-#~ "href=\"updater:available_page\">install page</a>."
+#~ "To install new software from this channel, visit the <a href=\"updater:"
+#~ "available_page\">install page</a>."
#~ msgstr ""
-#~ "För att installera ny programvara går du till <a "
-#~ "href=\"updater:available_page\">installationssidan</a>."
+#~ "För att installera ny programvara går du till <a href=\"updater:"
+#~ "available_page\">installationssidan</a>."
#~ msgid ""
-#~ "To remove already installed software from this channel, visit the <a "
-#~ "href=\"updater:installed_page\">remove page</a>."
+#~ "To remove already installed software from this channel, visit the <a href="
+#~ "\"updater:installed_page\">remove page</a>."
#~ msgstr ""
-#~ "För att ta bort redan installerad programvara från denna kanal går du till "
-#~ "<a href=\"updater:installed_page\">borttagningssidan</a>."
+#~ "För att ta bort redan installerad programvara från denna kanal går du "
+#~ "till <a href=\"updater:installed_page\">borttagningssidan</a>."
#~ msgid "<a href=\"updater:unsubscribe\">Unsubscribe</a> from this channel."
#~ msgstr ""
-#~ "<a href=\"updater:unsubscribed_page\">Säg upp prenumerationen</a> på denna "
-#~ "kanal."
+#~ "<a href=\"updater:unsubscribed_page\">Säg upp prenumerationen</a> på "
+#~ "denna kanal."
#~ msgid ""
-#~ "There is <b>1 update</b> available in this channel, totalling <b>%s</b> of "
-#~ "data to be downloaded."
+#~ "There is <b>1 update</b> available in this channel, totalling <b>%s</b> "
+#~ "of data to be downloaded."
#~ msgstr ""
#~ "Det finns <b>1 uppdatering</b> tillgänglig i denna kanal, som kräver att "
#~ "<b>%s</b> data hämtas."
#~ msgid ""
-#~ "There are <b>%s updates</b> available in this channel, totalling <b>%s</b> "
-#~ "of data to be downloaded."
+#~ "There are <b>%s updates</b> available in this channel, totalling <b>%s</"
+#~ "b> of data to be downloaded."
#~ msgstr ""
-#~ "Det finns <b>%s uppdateringar</b> tillgängliga i denna kanal, som kräver att "
-#~ "<b>%s</b> data hämtas."
+#~ "Det finns <b>%s uppdateringar</b> tillgängliga i denna kanal, som kräver "
+#~ "att <b>%s</b> data hämtas."
#~ msgid "Essential Updates"
#~ msgstr "Nödvändiga uppdateringar"
@@ -3748,34 +3818,36 @@ msgstr "Icke-DFSG-kompatibel programvara"
#~ "ditt system.</p>"
#~ msgid ""
-#~ "<p>You can go to the <a href=\"updater:update_page\">Update page</a> to view "
-#~ "available updates for your software in this channel, or return to the <a "
-#~ "href=\"updater:summary\">Summary</a> to view all available updates.</p>"
+#~ "<p>You can go to the <a href=\"updater:update_page\">Update page</a> to "
+#~ "view available updates for your software in this channel, or return to "
+#~ "the <a href=\"updater:summary\">Summary</a> to view all available updates."
+#~ "</p>"
#~ msgstr ""
-#~ "<p>Du kan gå till <a href=\"updater:update_page\">uppdateringssidan</a> för "
-#~ "att se de uppdateringar till din programvara som finns i denna kanal, eller "
-#~ "gå tillbaka till <a href=\"updater:summary\">sammanfattningen</a> för att se "
-#~ "alla tillgängliga uppdateringar.</p>"
+#~ "<p>Du kan gå till <a href=\"updater:update_page\">uppdateringssidan</a> "
+#~ "för att se de uppdateringar till din programvara som finns i denna kanal, "
+#~ "eller gå tillbaka till <a href=\"updater:summary\">sammanfattningen</a> "
+#~ "för att se alla tillgängliga uppdateringar.</p>"
#~ msgid ""
#~ "<p>You can go to the <a href=\"updater:summary\">Summary</a> to view all "
#~ "available updates for your system.</p>"
#~ msgstr ""
-#~ "<p>Du kan gå till <a href=\"updater:summary\">sammanfattningen</a> för att "
-#~ "se alla uppdateringar som är tillgängliga för ditt system.</p>"
+#~ "<p>Du kan gå till <a href=\"updater:summary\">sammanfattningen</a> för "
+#~ "att se alla uppdateringar som är tillgängliga för ditt system.</p>"
#~ msgid ""
#~ "<!--html-->The following packages from this channel are available for "
#~ "installation."
#~ msgstr ""
-#~ "<!--html-->Följande paket från denna kanal är tillgängliga för installation."
+#~ "<!--html-->Följande paket från denna kanal är tillgängliga för "
+#~ "installation."
#~ msgid ""
-#~ " Package names that are in <font color=\"#777777\">gray</font> indicate that "
-#~ "a newer version of this package is already installed."
+#~ " Package names that are in <font color=\"#777777\">gray</font> indicate "
+#~ "that a newer version of this package is already installed."
#~ msgstr ""
-#~ " Paketnamn som är <font color=\"#777777\">grå</font> indikerar att en nyare "
-#~ "version av detta paket redan är installerat."
+#~ " Paketnamn som är <font color=\"#777777\">grå</font> indikerar att en "
+#~ "nyare version av detta paket redan är installerat."
#~ msgid "Name:"
#~ msgstr "Namn:"
@@ -3817,18 +3889,18 @@ msgstr "Icke-DFSG-kompatibel programvara"
#~ msgstr "Du prenumererar för närvarande på alla tillgängliga kanaler!"
#~ msgid ""
-#~ "There is <b>one update</b> available for your system, totalling <b>%s</b> of "
-#~ "data to be downloaded."
+#~ "There is <b>one update</b> available for your system, totalling <b>%s</b> "
+#~ "of data to be downloaded."
#~ msgstr ""
-#~ "Det finns <b>en uppdatering</b> tillgänglig för ditt system, som kräver att "
-#~ "<b>%s</b> data hämtas."
+#~ "Det finns <b>en uppdatering</b> tillgänglig för ditt system, som kräver "
+#~ "att <b>%s</b> data hämtas."
#~ msgid ""
-#~ "There are <b>%s updates</b> available for your system, totalling <b>%s</b> "
-#~ "of data to be downloaded."
+#~ "There are <b>%s updates</b> available for your system, totalling <b>%s</"
+#~ "b> of data to be downloaded."
#~ msgstr ""
-#~ "Det finns <b>%s uppdateringar</b> tillgängliga för ditt system, som kräver "
-#~ "att <b>%s</b> data hämtas."
+#~ "Det finns <b>%s uppdateringar</b> tillgängliga för ditt system, som "
+#~ "kräver att <b>%s</b> data hämtas."
#~ msgid " Of these updates, <b>one</b> is <b>urgent</b>."
#~ msgstr " Utav dessa uppdateringar är <b>en brådskande</b>."
@@ -3846,7 +3918,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)"
@@ -3865,11 +3938,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"
@@ -4075,4 +4148,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 cf08e19a..5766fa79 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2006-10-04 20:51+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-08-04 02:52+0000\n"
"Last-Translator: Raghavan <vijay.raghavan08@gmail.com>\n"
"Language-Team: Tamil <ta@li.org>\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 ""
@@ -251,6 +256,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -309,6 +315,7 @@ 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 ""
@@ -371,6 +378,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -381,6 +389,7 @@ 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"
@@ -433,6 +442,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -499,13 +511,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -545,8 +558,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -717,6 +733,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,14 +823,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 ""
@@ -826,106 +846,114 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
+#: ../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:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1247,184 +1275,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 1d64a830..17a80581 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:44+0000\n"
"Last-Translator: Roys Hengwatanakul <roysheng@gmail.com>\n"
"Language-Team: Thai <th@li.org>\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:207
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,8 +221,8 @@ msgid ""
msgstr ""
"ระบบของคุณไม่มีอูบันตูเดสก์ท็อป คูบันตูเดสก์ท็อป หรือ เอ็ดดูบันตูเดกส์ท็อป "
"แพกเกจและไม่สามารถที่จะตรวจสอบได้ว่าคุณใช้อูบันตูรุ่นไหนอยู่\n"
-" กรุณาติดตั้งแพกเกจข้างบนอย่างใดอย่างหนึ่งก่อนโดยใช้โปรแกรม synaptic "
-"หรือโปรแกรม apt-get ก่อนดำเนินการต่อไป"
+" กรุณาติดตั้งแพกเกจข้างบนอย่างใดอย่างหนึ่งก่อนโดยใช้โปรแกรม synaptic หรือโปรแกรม apt-get "
+"ก่อนดำเนินการต่อไป"
#: ../DistUpgrade/DistUpgradeControler.py:74
msgid "Failed to add the CD"
@@ -233,8 +237,7 @@ msgid ""
"The error message was:\n"
"'%s'"
msgstr ""
-"มีปัญหาในการเพิ่มซีดีการปรับปรุงรุ่นจะถูกยกเลิก "
-"กรุณารายงานปัญหานี้ถ้าเป็นซีดีที่ถูกต้องของอูบันตู\n"
+"มีปัญหาในการเพิ่มซีดีการปรับปรุงรุ่นจะถูกยกเลิก กรุณารายงานปัญหานี้ถ้าเป็นซีดีที่ถูกต้องของอูบันตู\n"
"\n"
"ปัญหาคือ : \n"
"'%s'"
@@ -254,10 +257,9 @@ 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"
@@ -275,14 +277,13 @@ 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?"
@@ -307,8 +308,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"
@@ -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,9 +397,8 @@ 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"
"ถ้าคุณไม่ได้เลือกใช ้แพกเกจเหล่านี้จะถูกแนะนำให้ลบออกในขั้นต่อไป"
@@ -423,10 +422,9 @@ 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 "คืนระบบสู่สถานะแรกเริ่ม"
@@ -437,6 +435,7 @@ 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"
@@ -453,9 +452,7 @@ 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"
@@ -494,6 +491,7 @@ 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'"
@@ -521,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 "กำลังเปลี่ยนแปลง"
@@ -535,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:202
#, python-format
msgid ""
@@ -563,17 +563,17 @@ msgstr "เกิดข้อผิดพลาดอย่างร้ายแ
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -593,7 +593,7 @@ msgid_plural "%d packages are going to be upgraded."
msgstr[0] "%d แพกเกจจะถูกปรับปรุงรุ่น"
#: ../DistUpgrade/DistUpgradeViewGtk.py:503
-#, fuzzy
+#, fuzzy, python-format
msgid ""
"\n"
"\n"
@@ -607,16 +607,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:512
msgid "To prevent data loss close all open applications and documents."
msgstr "เพื่อป้องกันข้อมูลสูญหายกรุณาออกจากทุกโปรแกรมและเอกสารที่เปิดอยู่"
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "ระบบของคุณทันสมัยแล้ว"
@@ -662,6 +661,7 @@ msgid "%li seconds"
msgstr "%li วินาที"
#. 56 kbit
+#. 1Mbit = 1024 kbit
#: ../DistUpgrade/DistUpgradeView.py:38
#, python-format
msgid ""
@@ -676,13 +676,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 " "
@@ -697,8 +696,7 @@ msgid ""
msgstr ""
"<b><big>ต้องการยกเลิกการปรับปรุงที่กำลังทำอยู่หรือไม่?</big></b>\n"
"\n"
-"ระบบอาจจะไม่มั่นคงถ้าคุณยกเลิกการปรับปรุง "
-"ขอแนะนำเป็นอย่างยิ่งให้คุณดำเนินการปรับปรุงต่อไป"
+"ระบบอาจจะไม่มั่นคงถ้าคุณยกเลิกการปรับปรุง ขอแนะนำเป็นอย่างยิ่งให้คุณดำเนินการปรับปรุงต่อไป"
#: ../DistUpgrade/DistUpgrade.glade.h:5
msgid "<b><big>Restart the system to complete the upgrade</big></b>"
@@ -794,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 "ไม่สามารถเรียกใช้เครื่องมือปรับปรุง"
@@ -835,9 +834,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"
@@ -847,8 +844,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"
@@ -858,15 +854,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
@@ -890,17 +884,19 @@ 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 "การปรับปรุงที่เสนอให้ทำ"
@@ -913,71 +909,74 @@ msgstr "พอร์ตย้อนหลัง"
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "รุ่น %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "กำลังดาวน์โหลดรายการของการเปลี่ยนแปลง..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "ไ_ม่เลือกทั้งหมด"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr "เ_ลือกทั้งหมด"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "ขนาดดาวน์โหลด: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "คุณสามารถติดตั้ง %s รายการปรับปรุง"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "กรุณารอสักครู่ นี่อาจจะใช้เวลาสักหน่อย"
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "ปรับปรุงเสร็จสิ้นแล้ว"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "กำลังตรวจหาข้อมูลปรับปรุง"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "จากรุ่นเก่า: %(old_version)s ไปสู่รุ่นใหม่ %(new_version)s"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "รุ่น %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(ขนาด: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "ชุดเผยแพร่(distribution)ของคุณไม่มีบริการสนับสนุนแล้ว"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -987,38 +986,42 @@ msgstr ""
"ปรับปรุงขึ้นไปรุ่นถัดไปของอูบันตูลีนุกซ์ กรุณาอ่าน http://www.ubuntu.com "
"สำหรับรายละเอียดเพิ่มเติมในการปรับปรุงรุ่น"
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "มี<b>ชุดแจกจ่ายใหม่ '%s' </b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "ดัชนีของซอฟแวร์เสียหาย"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 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"
@@ -1033,8 +1036,8 @@ msgid ""
msgstr ""
"<b><big>คุณต้องตรวจหารายการปรับปรุงด้วยตนเอง</big></b>\n"
"\n"
-"ระบบของคุณไม่ตรวจหารายการปรับปรุงโดยอัตโนมัตื "
-"คุณสามารถปรับแต่งใน<i>แหล่งข้อมูล</i>ในแถบ<i>ปรับปรุงทางอินเทอร์เน็ต</i>"
+"ระบบของคุณไม่ตรวจหารายการปรับปรุงโดยอัตโนมัตื คุณสามารถปรับแต่งใน<i>แหล่งข้อมูล</"
+"i>ในแถบ<i>ปรับปรุงทางอินเทอร์เน็ต</i>"
#: ../data/glade/UpdateManager.glade.h:4
msgid "<big><b>Keep your system up-to-date</b></big>"
@@ -1081,8 +1084,8 @@ msgid ""
msgstr ""
"ดำเนินการปรับปรุงชุดเผยแพร่ ทำการติดตั้งปรับปรุงมากที่สุดเท่าที่จะทำได้ \n"
"\n"
-"นี่อาจจะมีเหตุมาจากการปรับปรุงที่ไม่เสร็จสิ้น "
-"ซอฟต์แวร์แพ็กเกจที่ไม่สนับสนุนอย่างเป็นทางการ หรือใช้รุ่นที่ยังพัฒนาไม่เสร็จ"
+"นี่อาจจะมีเหตุมาจากการปรับปรุงที่ไม่เสร็จสิ้น ซอฟต์แวร์แพ็กเกจที่ไม่สนับสนุนอย่างเป็นทางการ "
+"หรือใช้รุ่นที่ยังพัฒนาไม่เสร็จ"
#: ../data/glade/UpdateManager.glade.h:16
msgid "Show progress of single files"
@@ -1096,8 +1099,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"
@@ -1158,8 +1160,7 @@ msgid ""
"The results are used to improve the support for popular applications and to "
"rank applications in the search results.</i>"
msgstr ""
-"<i>เพื่อที่จะเพิ่มประสพการณ์ให้แก่ผู้ใช้อูบันตู "
-"กรุณาเข้าร่วนในการแข่งขันความนิยม ถ้าคุณร่วมด้วย "
+"<i>เพื่อที่จะเพิ่มประสพการณ์ให้แก่ผู้ใช้อูบันตู กรุณาเข้าร่วนในการแข่งขันความนิยม ถ้าคุณร่วมด้วย "
"รายการของซอฟต์แวร์ที่ติดตั้งและความถี่ในการเรียกใช้งานจะถูกเก็บไว้ "
"และส่งโดยไม่ระบุชื่อไปที่โครงการอูบันตูอาทิตย์ละครั้ง\n"
"\n"
@@ -1194,10 +1195,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"
@@ -1288,11 +1286,10 @@ msgid ""
"The APT line includes the type, location and components of a repository, for "
"example <i>\"deb http://ftp.debian.org sarge main\"</i>."
msgstr ""
-"<big><b>กรุณาเติมให้ครบบรรทัด APT "
-"ของแหล่งข้อมูลที่คุณต้องการจะเพิ่ม</b></big>\n"
+"<big><b>กรุณาเติมให้ครบบรรทัด APT ของแหล่งข้อมูลที่คุณต้องการจะเพิ่ม</b></big>\n"
"\n"
-"บรรทัด APT ประกอบด้วย ชนิด,สถานที่,ส่วนประกอบของแหล่งข้อมูล เช่น <i>\"deb "
-"http://ftp.debian.org sarge main\"</i>"
+"บรรทัด APT ประกอบด้วย ชนิด,สถานที่,ส่วนประกอบของแหล่งข้อมูล เช่น <i>\"deb http://ftp."
+"debian.org sarge main\"</i>"
#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14
msgid "APT line:"
@@ -1335,9 +1332,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"
@@ -1349,8 +1344,7 @@ msgid ""
"channel list manually. This option allows to hide the reminder shown in this "
"case."
msgstr ""
-"ถ้าการตรวจสอบสำหรับปรับปรุงโดยอัตโนมัติถูกปิดไว้ "
-"คุณจะต้องโหลดช่องรายการใหม่เอง "
+"ถ้าการตรวจสอบสำหรับปรับปรุงโดยอัตโนมัติถูกปิดไว้ คุณจะต้องโหลดช่องรายการใหม่เอง "
"ตัวเลือกนี้ทำให้ซ่อนคำเตือนที่จะแสดงในกรณีนี้ได้"
#: ../data/update-manager.schemas.in.h:4
@@ -1379,192 +1373,235 @@ 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)"
+#. 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 โดยไม่ทราบความเร็ว"
@@ -1616,17 +1653,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 วินาที"
@@ -1700,12 +1736,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 6d03541f..7eb08d54 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-09-27 21:59+0000\n"
"Last-Translator: Kayra Akman <ckakman@gmail.com>\n"
"Language-Team: Turkish <tr@li.org>\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 ""
"<big><b>Error scanning the CD</b></big>\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"
@@ -287,6 +289,7 @@ 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??"
@@ -357,6 +360,7 @@ 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?"
@@ -376,8 +380,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"
@@ -428,6 +432,7 @@ 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"
@@ -438,6 +443,7 @@ 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"
@@ -493,6 +499,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -564,9 +573,9 @@ msgstr "Giderilemez bir hata oluştu"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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:487
#, python-format
msgid "%d package is going to be removed."
@@ -617,8 +627,9 @@ 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
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "Sisteminiz güncel"
@@ -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 "<b><big>Restart the system to complete the upgrade</big></b>"
-msgstr ""
-"<b><big>Yükseltmeyi tamamlamak için sistemi yeniden başlatın</big></b>"
+msgstr "<b><big>Yükseltmeyi tamamlamak için sistemi yeniden başlatın</big></b>"
#: ../DistUpgrade/DistUpgrade.glade.h:6
msgid "<b><big>Start the upgrade?</big></b>"
@@ -784,7 +796,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
@@ -799,6 +811,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ı."
@@ -841,8 +854,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"
@@ -892,14 +904,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"
@@ -912,70 +927,73 @@ 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"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Sürüm %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "Hiç_birini Seçme"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr "_Hepsini Seç"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "İndirme boyutu: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "%s güncelleme kurabilirsiniz"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Lütfen bekleyin, bu işlem biraz zaman alabilir."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Güncelleme tamamlandı"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "Güncellemeler denetleniyor"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "Sürüm %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(Büyüklük:%s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Kullandığınız dağıtım artık desteklenmiyor"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 "
@@ -986,16 +1004,17 @@ msgstr ""
"Daha fazla bilgi ve yükseltme için http://www.ubuntu.com adresini ziyaret "
"edin."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>Yeni dağıtım yayını '%s' ulaşılabilir</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "Yazılım dizini bozulmuş"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 "
@@ -1005,19 +1024,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"
@@ -1039,8 +1062,8 @@ msgstr "<big><b>Sisteminizi güncel tutun</b></big>"
#, fuzzy
msgid "<big><b>Not all updates can be installed</b></big>"
msgstr ""
-"<big><b>CD taramada hata</b></big> \n"
-" \n"
+"<big><b>CD taramada hata</b></big>\r\n"
+"\r\n"
"%s"
#: ../data/glade/UpdateManager.glade.h:6
@@ -1368,185 +1391,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"
@@ -1584,4 +1651,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 9b91ef6d..6c21a38d 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-08-20 22:36+0000\n"
"Last-Translator: Vadim Abramchuck <abram@email.ua>\n"
"Language-Team: Ukrainian <uk@li.org>\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-пакунок"
@@ -259,6 +264,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr "Створити джерела за замовчуванням?"
@@ -318,6 +324,7 @@ 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 "Бажаєте почати оновлення системи?"
@@ -385,6 +392,7 @@ msgstr ""
"При очищенні системи виникли проблеми. Прочитайте детальнішу інформацію "
"нижче. "
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -395,6 +403,7 @@ 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,6 +454,7 @@ 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,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:202
#, python-format
msgid ""
@@ -511,13 +523,14 @@ msgstr "Виникла невиправна помилка"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -558,11 +571,11 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:512
msgid "To prevent data loss close all open applications and documents."
-msgstr ""
-"Для запобігання втраті інформації закрийте усі програми та документи."
+msgstr "Для запобігання втраті інформації закрийте усі програми та документи."
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
#, fuzzy
msgid "Your system is up-to-date"
msgstr "Ваша система оновлена!"
@@ -574,12 +587,12 @@ msgid ""
msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:535
-#, fuzzy
+#, fuzzy, python-format
msgid "<b>Remove %s</b>"
msgstr "<b>Видалити %s</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:537
-#, 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 " "
@@ -740,6 +755,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"
@@ -833,14 +849,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 ""
@@ -853,33 +872,35 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Версія %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "Розмір завантаження: %s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
@@ -887,76 +908,82 @@ msgstr[0] "Ви можете встановити %s оновлення"
msgstr[1] "Ви можете встановити %s оновлення"
msgstr[2] "Ви можете встановити %s оновлень"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "Будь ласка, зачекайте, це може зайняти деякий час."
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "Оновлення завершено"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "Ваш дистрибутив більше не підтримується"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 ""
"Ви більше не будете отримувати оновлень критичних оновлень та оновлень "
-"безпеки. Оновіться до новішої версії Ubuntu Linux. Зайдіть на "
-"http://www.ubuntu.com для подальшої інформації про оновлення."
+"безпеки. Оновіться до новішої версії Ubuntu Linux. Зайдіть на http://www."
+"ubuntu.com для подальшої інформації про оновлення."
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1289,190 +1316,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 ""
#~ "<big><b>Error scaning the CD</b></big>\n"
#~ "\n"
@@ -1483,32 +1553,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 "Деяке програмне забезпечення більше офіційно не підтримується"
@@ -1517,14 +1587,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"
@@ -1532,7 +1600,6 @@ msgstr ""
#~ msgid "The upgrade aborts now. Please report this bug."
#~ msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку."
-#, python-format
#~ msgid ""
#~ "Replace configuration file\n"
#~ "'%s'?"
@@ -1542,43 +1609,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 "Не знайдено пакунків для оновлення"
@@ -1626,7 +1691,6 @@ msgstr ""
#~ msgid "Show details"
#~ msgstr "Показати деталі"
-#, python-format
#~ msgid "New version: %s (Size: %s)"
#~ msgstr "Нова версія: %s (Розмір: %s)"
@@ -1661,16 +1725,17 @@ msgstr ""
#~ msgstr "<b>Компоненти</b>"
#~ msgid ""
-#~ "<big><b>Enter the complete APT line of the channel that you want to "
-#~ "add</b></big>\n"
+#~ "<big><b>Enter the complete APT line of the channel that you want to add</"
+#~ "b></big>\n"
#~ "\n"
#~ "The APT line includes the type, location and components of a channel, for "
#~ "example <i>\"deb http://ftp.debian.org sarge main\"</i>."
#~ msgstr ""
-#~ "<big><b>Введіть повний рядок сховища APT, який ви бажаєте додати</b></big>\n"
+#~ "<big><b>Введіть повний рядок сховища APT, який ви бажаєте додати</b></"
+#~ "big>\n"
#~ "\n"
-#~ "Рядок APT містить тип, адресу та вміст сховища, наприклад <i>\"deb "
-#~ "http://ftp.debian.org sarge main\"</i>. Докладні приклади можна знайти у "
+#~ "Рядок APT містить тип, адресу та вміст сховища, наприклад <i>\"deb http://"
+#~ "ftp.debian.org sarge main\"</i>. Докладні приклади можна знайти у "
#~ "документації."
#~ msgid "Add Channel"
@@ -1701,4 +1766,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 6845de02..1e9dcf1b 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:04+0200\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/po/ur.po b/po/ur.po
index d031acf9..4d127f41 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-05-19 02:46+0000\n"
"Last-Translator: Hameed محمد حمید <hameeduddin517@yahoo.com>\n"
"Language-Team: Urdu <urd@li.org>\n"
@@ -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 ""
@@ -252,6 +257,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -308,6 +314,7 @@ 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 ""
@@ -370,6 +377,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -380,6 +388,7 @@ 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"
@@ -430,6 +439,7 @@ 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,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:202
#, python-format
msgid ""
@@ -495,13 +507,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -541,8 +554,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -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,106 +841,114 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
+#: ../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:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1243,187 +1271,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 b8c3c023..978beca6 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:04+0200\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-05-07 01:53+0000\n"
"Last-Translator: Hameed محمد حمید <hameeduddin517@yahoo.com>\n"
"Language-Team: Urdu <urd@li.org>\n"
diff --git a/po/vi.po b/po/vi.po
index 8fba050d..50355c11 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:45+0000\n"
"Last-Translator: Tran The Trung <tttrung@hotmail.com>\n"
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\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"
@@ -261,6 +265,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -318,6 +323,7 @@ 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,6 +386,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -390,6 +397,7 @@ 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
@@ -444,6 +452,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -510,13 +521,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -553,8 +565,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
#, fuzzy
msgid "Your system is up-to-date"
msgstr "Hệ thống bạn toàn mới nhất."
@@ -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 " "
@@ -727,6 +742,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 ""
@@ -824,15 +840,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"
@@ -848,109 +867,117 @@ 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"
msgstr "Đang cài đặt bản cập nhật..."
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "Phiên bản %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "Đang tải các thay đổi"
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] ""
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "Đang cài đặt bản cập nhật..."
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:830
+#, fuzzy, python-format
msgid "Version %s"
msgstr "Phiên bản %s:"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
#, fuzzy
msgid "Your distribution is not supported anymore"
msgstr "Không còn hỗ trợ lại bản phát hành của bạn."
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1296,211 +1323,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 ""
@@ -1629,12 +1701,12 @@ msgstr ""
#~ msgstr ""
#~ "<big><b>Khóa xác thực</b></big>\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. "
@@ -1664,11 +1736,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"
@@ -1697,13 +1769,13 @@ msgstr ""
#~ msgid ""
#~ "<big><b>Available Updates</b></big>\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 ""
#~ "<big><b>Bản nâng cấp công bố</b></big>\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..."
@@ -1759,18 +1831,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..."
@@ -1783,22 +1856,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 "
#~ "<http://www.ubuntulinux.org> để 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 "
-#~ "<http://www.ubuntulinux.org> để 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 <http://www."
+#~ "ubuntulinux.org> để 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 beb100c7..8c711614 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:45+0000\n"
"Last-Translator: Canonical Ltd <translations@canonical.com>\n"
"Language-Team: Xhosa <xh-translate@ubuntu.com>\n"
@@ -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 ""
@@ -252,6 +257,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -308,6 +314,7 @@ 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 ""
@@ -370,6 +377,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -380,6 +388,7 @@ 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"
@@ -430,6 +439,7 @@ 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,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:202
#, python-format
msgid ""
@@ -495,13 +507,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -541,8 +554,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr ""
@@ -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 " "
@@ -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 ""
@@ -803,15 +820,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"
@@ -826,108 +846,116 @@ 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"
msgstr "Bonisa izihlaziyo"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:617
+#: ../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:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
#, fuzzy
msgid "Checking for updates"
msgstr "Bonisa izihlaziyo"
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1257,184 +1285,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 ""
@@ -1502,8 +1575,8 @@ msgstr ""
#~ msgstr ""
#~ "<span weight=\"bold\" size=\"larger\">Ulwazi oluhlaziyiweyo</span>\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 29018664..26a20108 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-10-05 20:36+0000\n"
"Last-Translator: catinsnow <catinsnow@gmail.com>\n"
"Language-Team: zh_CN <i18n-translation@lists.linux.net.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:207
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,8 +219,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
@@ -264,10 +274,12 @@ 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 "生成默认的源?"
@@ -303,7 +315,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 "sources.list中的一些第三方源被禁用。你可以在升级后用\"软件属性\"工具或新立得包管理器来重新启用它们."
+msgstr ""
+"sources.list中的一些第三方源被禁用。你可以在升级后用\"软件属性\"工具或新立得"
+"包管理器来重新启用它们."
#: ../DistUpgrade/DistUpgradeControler.py:358
msgid "Error during update"
@@ -326,8 +340,10 @@ 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 "你要开始升级么?"
@@ -344,9 +360,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-manger'包的bug,并在报告中包含/var/log/disg-upgrade/中的文件。"
+"请报告本'update-manger'包的bug,并在报告中包含/var/log/disg-upgrade/中的文"
+"件。"
#: ../DistUpgrade/DistUpgradeControler.py:479
msgid "Could not download the upgrades"
@@ -397,6 +415,7 @@ msgid ""
"more information. "
msgstr "在清理时发生问题。更多信息请查看以下消息。 "
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr "正在恢复原始系统状态"
@@ -407,6 +426,7 @@ 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"
@@ -444,7 +464,8 @@ 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"
@@ -462,6 +483,7 @@ 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'"
@@ -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:202
#, python-format
msgid ""
@@ -530,15 +556,17 @@ msgstr "出现致命错误"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
#, 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
#, python-format
msgid "%d package is going to be removed."
@@ -578,8 +606,9 @@ msgstr "下载及升级会持续几个小时,且不可取消。"
msgid "To prevent data loss close all open applications and documents."
msgstr "关闭所有打开的程序和文档以防止数据丢失。"
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "您的系统已为最新"
@@ -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 " "
@@ -754,6 +785,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 "不能运行升级工具"
@@ -819,12 +851,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"
@@ -846,14 +878,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,109 +902,119 @@ 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 "其它更新"
-#: ../UpdateManager/UpdateManager.py:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "版本 %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
#, fuzzy
msgid "Downloading list of changes..."
msgstr "正在下载更新列表..."
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr "取消全部(_U)"
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr "选中全部(_C)"
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "下载文件大小:%s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "你可以安装 %s 个更新"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "请稍等,这需要花一些时间。"
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "更新完成"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr "检查更新"
-#: ../UpdateManager/UpdateManager.py:810
-#, fuzzy
+#: ../UpdateManager/UpdateManager.py:826
+#, fuzzy, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr "新版本:%s(大小:%s)"
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "版本 %s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(大小:%s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "您的发行版不再被支持"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 ""
-"你将不再获得未来的安全修订或重要更新。升级到更高版本的 Ubuntu Linux。请参见 \n"
+"你将不再获得未来的安全修订或重要更新。升级到更高版本的 Ubuntu Linux。请参见"
+"\r\n"
"http://www.ubuntu.com 来获取更多有关升级的信息。"
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>新发行版 '%s' 可用</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "软件索引已被破坏"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 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"
@@ -985,7 +1030,8 @@ msgid ""
msgstr ""
"<b><big>你必须手动检测升级</big></b>\n"
"\n"
-"你的系统未自动检测升级。你可以通过编辑\"系统\" -> \"管理\" -> \"软件性能\"改变."
+"你的系统未自动检测升级。你可以通过编辑\"系统\" -> \"管理\" -> \"软件性能\"改"
+"变."
#: ../data/glade/UpdateManager.glade.h:4
msgid "<big><b>Keep your system up-to-date</b></big>"
@@ -1106,7 +1152,8 @@ msgid ""
"The results are used to improve the support for popular applications and to "
"rank applications in the search results.</i>"
msgstr ""
-"<i>为了提高Ubuntu的用户体验,请参加流行对比。这样,你安装了哪些软件及使用频度每周会被匿名发送给Unbuntu。\n"
+"<i>为了提高Ubuntu的用户体验,请参加流行对比。这样,你安装了哪些软件及使用频度"
+"每周会被匿名发送给Unbuntu。\n"
"\n"
"其结果用于流行软件支持及应用软件搜索排名。"
@@ -1231,7 +1278,8 @@ msgid ""
"example <i>\"deb http://ftp.debian.org sarge main\"</i>."
msgstr ""
"<big><b>输入你想增加的完整的频道 APT 命令行</b></big>\n"
-"APT 命令行包含频道的类型,位置和部分,例如:<i>\"deb http://ftp.debian.org sarge main\"</i>。"
+"APT 命令行包含频道的类型,位置和部分,例如:<i>\"deb http://ftp.debian.org "
+"sarge main\"</i>。"
#: ../data/glade/SoftwarePropertiesDialogs.glade.h:14
msgid "APT line:"
@@ -1285,7 +1333,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"
@@ -1314,188 +1364,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兼容软件"
@@ -1503,7 +1597,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 速度未知"
@@ -1525,7 +1618,8 @@ msgstr "非DFSG兼容软件"
#, fuzzy
#~ msgid ""
#~ "<span weight=\"bold\" size=\"x-large\">Upgrading to Ubuntu 6.10</span>"
-#~ msgstr "<span weight=\"bold\" size=\"x-large\">正在升级到 Ubuntu 6.06 LTS</span>"
+#~ msgstr ""
+#~ "<span weight=\"bold\" size=\"x-large\">正在升级到 Ubuntu 6.06 LTS</span>"
#, fuzzy
#~ msgid "Important security updates of Ubuntu"
@@ -1553,16 +1647,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秒"
@@ -1635,8 +1728,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"
@@ -1748,4 +1841,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 cbf7101e..50e902bc 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-06-16 01:18+0000\n"
"Last-Translator: Abel Cheung <abelcheung@gmail.com>\n"
"Language-Team: Chinese (Hong Kong) <community@linuxhall.org>\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:207
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 ""
@@ -249,6 +258,7 @@ msgid ""
"If you select 'no' the update will cancel."
msgstr ""
+#. hm, still nothing useful ...
#: ../DistUpgrade/DistUpgradeControler.py:266
msgid "Generate default sources?"
msgstr ""
@@ -305,6 +315,7 @@ 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 "是否要開始升級?"
@@ -367,6 +378,7 @@ msgid ""
"more information. "
msgstr ""
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr ""
@@ -377,6 +389,7 @@ 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"
@@ -427,6 +440,7 @@ 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,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:202
#, python-format
msgid ""
@@ -493,13 +509,14 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -536,8 +553,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "系統已經在最新狀態"
@@ -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 " "
@@ -707,6 +727,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 "無法執行升級工具"
@@ -796,14 +817,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 ""
@@ -816,106 +840,114 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "版本 %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "下載大小:%s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "你可以安裝 %s 個更新套件"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "完成更新"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
#, fuzzy
msgid "Your distribution is not supported anymore"
msgstr "已經不再支援你用的發行版本"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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"
@@ -1242,190 +1274,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 ""
#~ "<big><b>Error scaning the CD</b></big>\n"
#~ "\n"
@@ -1436,19 +1511,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 ""
@@ -1456,13 +1531,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 "某些軟件不會再有正式支援"
@@ -1470,33 +1547,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'?"
@@ -1504,17 +1575,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 個套件。"
@@ -1526,15 +1594,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,下載速度不明"
@@ -1551,11 +1617,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 "會略過更新以下套件:"
@@ -1598,16 +1665,16 @@ msgstr "和 DFSG 不相容的軟件"
#, fuzzy
#~ msgid ""
-#~ "<big><b>Enter the complete APT line of the channel that you want to "
-#~ "add</b></big>\n"
+#~ "<big><b>Enter the complete APT line of the channel that you want to add</"
+#~ "b></big>\n"
#~ "\n"
#~ "The APT line includes the type, location and components of a channel, for "
#~ "example <i>\"deb http://ftp.debian.org sarge main\"</i>."
#~ msgstr ""
#~ "<big><b>請輸入整行你想加入的 APT 軟件庫位置</b></big>\n"
#~ "\n"
-#~ "該行的內容包括 APT 軟件庫的類型、位置和內容,例如: <i>\"deb http://ftp.debian.org sarge "
-#~ "main\"</i>。你可以在文件中尋找有關該行的格式的詳細描述。"
+#~ "該行的內容包括 APT 軟件庫的類型、位置和內容,例如: <i>\"deb http://ftp."
+#~ "debian.org sarge main\"</i>。你可以在文件中尋找有關該行的格式的詳細描述。"
#~ msgid "Edit Channel"
#~ msgstr "修改套件來源"
@@ -1636,4 +1703,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 b1e583d0..203074cd 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-04 20:51+0000\n"
+"POT-Creation-Date: 2006-10-06 23:18+0200\n"
"PO-Revision-Date: 2006-09-14 07:29+0000\n"
"Last-Translator: SOC Ho <soc.scho@gmail.com>\n"
"Language-Team: Chinese (Taiwan) <zh-l10n@linux.org.tw>\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:207
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)"
@@ -212,7 +221,8 @@ msgid ""
"The error message was:\n"
"'%s'"
msgstr ""
-"在加入光碟時有錯誤產升,升級將終止。若此光碟為一個有效的ubuntu光碟,請將此舉報為臭蟲。\n"
+"在加入光碟時有錯誤產升,升級將終止。若此光碟為一個有效的ubuntu光碟,請將此舉"
+"報為臭蟲。\n"
"\n"
"錯誤訊息為:\n"
"「%s」"
@@ -248,11 +258,14 @@ 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 "產生預設的來源?"
@@ -311,8 +324,10 @@ 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,6 +390,7 @@ msgid ""
"more information. "
msgstr "在清理時發生一些問題。請參閱以下訊息以取得更多資訊。 "
+#. generate a new cache
#: ../DistUpgrade/DistUpgradeControler.py:576
msgid "Restoring original system state"
msgstr "回覆原有系統狀態"
@@ -385,6 +401,7 @@ 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"
@@ -435,6 +452,7 @@ 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,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:202
#, python-format
msgid ""
@@ -500,13 +520,14 @@ msgstr "發生嚴重錯誤"
#: ../DistUpgrade/DistUpgradeViewGtk.py:356
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
#, python-format
msgid "%d package is going to be removed."
@@ -546,8 +567,9 @@ msgstr ""
msgid "To prevent data loss close all open applications and documents."
msgstr "避免遺失請關閉所有已開啟的程式及文件。"
+#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:518
-#: ../UpdateManager/UpdateManager.py:606
+#: ../UpdateManager/UpdateManager.py:622
msgid "Your system is up-to-date"
msgstr "系統已經在最新狀態"
@@ -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 " "
@@ -720,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 "無法執行升級工具"
@@ -809,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 ""
@@ -829,108 +857,118 @@ msgstr ""
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:462
+#: ../UpdateManager/UpdateManager.py:478
#, python-format
msgid "Version %s: \n"
msgstr "版本 %s: \n"
-#: ../UpdateManager/UpdateManager.py:523
+#: ../UpdateManager/UpdateManager.py:539
msgid "Downloading list of changes..."
msgstr ""
-#: ../UpdateManager/UpdateManager.py:550
+#: ../UpdateManager/UpdateManager.py:566
msgid "_Uncheck All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:556
+#: ../UpdateManager/UpdateManager.py:572
msgid "_Check All"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:597 ../UpdateManager/UpdateManager.py:621
+#. TRANSLATORS: b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:613 ../UpdateManager/UpdateManager.py:637
#, python-format
msgid "Download size: %s"
msgstr "下載大小:%s"
-#: ../UpdateManager/UpdateManager.py:617
+#: ../UpdateManager/UpdateManager.py:633
#, python-format
msgid "You can install %s update"
msgid_plural "You can install %s updates"
msgstr[0] "您可以安裝 %s 個更新"
-#: ../UpdateManager/UpdateManager.py:650
+#: ../UpdateManager/UpdateManager.py:666
msgid "Please wait, this can take some time."
msgstr "請稍候,這可能需要一點時間。"
-#: ../UpdateManager/UpdateManager.py:652
+#: ../UpdateManager/UpdateManager.py:668
msgid "Update is complete"
msgstr "更新完成"
-#: ../UpdateManager/UpdateManager.py:703
+#: ../UpdateManager/UpdateManager.py:719
msgid "Checking for updates"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:810
+#: ../UpdateManager/UpdateManager.py:826
#, python-format
msgid "From version %(old_version)s to %(new_version)s"
msgstr ""
-#: ../UpdateManager/UpdateManager.py:814
+#: ../UpdateManager/UpdateManager.py:830
#, python-format
msgid "Version %s"
msgstr "版本%s"
-#: ../UpdateManager/UpdateManager.py:816
+#. TRANSLATORS: the b stands for Bytes
+#: ../UpdateManager/UpdateManager.py:832
#, python-format
msgid "(Size: %s)"
msgstr "(大小: %s)"
-#: ../UpdateManager/UpdateManager.py:827
+#: ../UpdateManager/UpdateManager.py:843
msgid "Your distribution is not supported anymore"
msgstr "您正使用的發行版本已不再支援"
-#: ../UpdateManager/UpdateManager.py:828
+#: ../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 ""
-"您不會再取得任何安全或重大更新,請升級到最新版本的 Ubuntu Linux。請參閱 http://www.ubuntu.com以取得更多升級資訊。"
+"您不會再取得任何安全或重大更新,請升級到最新版本的 Ubuntu Linux。請參閱 "
+"http://www.ubuntu.com以取得更多升級資訊。"
-#: ../UpdateManager/UpdateManager.py:847
+#: ../UpdateManager/UpdateManager.py:863
#, python-format
msgid "<b>New distribution release '%s' is available</b>"
msgstr "<b>有新的 distribution 發行版 '%s'</b>"
-#: ../UpdateManager/UpdateManager.py:882
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:898
msgid "Software index is broken"
msgstr "軟體索引損壞"
-#: ../UpdateManager/UpdateManager.py:883
+#: ../UpdateManager/UpdateManager.py:899
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 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"
@@ -1254,185 +1292,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 的軟體"
@@ -1440,17 +1522,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 個套件將會升級。"
@@ -1458,26 +1537,29 @@ msgstr "不符合 DFSG 的軟體"
#~ msgid ""
#~ "<b><big>The channel information is out-of-date</big></b>\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 ""
#~ "<b><big>套件來源的資料已經過期</big></b>\n"
#~ "\n"
-#~ "您需要重新載入套件來源的資料以安裝軟體,及更新套件來源新加入或修改了的套件。\n"
+#~ "您需要重新載入套件來源的資料以安裝軟體,及更新套件來源新加入或修改了的套"
+#~ "件。\n"
#~ "\n"
#~ "您須要連線到網際網路繼續。"
#~ msgid ""
#~ "<b><big>You must check for updates manually</big></b>\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 ""
#~ "<b><big>您必須自行檢查更新</big></b>\n"
#~ "\n"
-#~ "您的系統不會自動檢查更新。您可以在「系統」→「管理的→「軟體偏好設定」中設定。"
+#~ "您的系統不會自動檢查更新。您可以在「系統」→「管理的→「軟體偏好設定」中設"
+#~ "定。"
#~ msgid "<b>Channel</b>"
#~ msgstr "<b>套件來源</b>"
@@ -1492,8 +1574,8 @@ msgstr "不符合 DFSG 的軟體"
#~ msgstr "<b>金鑰</b>"
#~ msgid ""
-#~ "<big><b>Enter the complete APT line of the channel that you want to "
-#~ "add</b></big>\n"
+#~ "<big><b>Enter the complete APT line of the channel that you want to add</"
+#~ "b></big>\n"
#~ "\n"
#~ "The APT line includes the type, location and components of a channel, for "
#~ "example <i>\"deb http://ftp.debian.org sarge main\"</i>."
@@ -1501,10 +1583,9 @@ msgstr "不符合 DFSG 的軟體"
#~ "<big><b>請輸入您想加入的完整的 APT 來源列</b></big>\n"
#~ "\n"
#~ "\n"
-#~ "APT 來源列包括了來源的類型、位置及 components,例如 <i>\"deb http://ftp.debian.org sarge "
-#~ "main\"</i>。"
+#~ "APT 來源列包括了來源的類型、位置及 components,例如 <i>\"deb http://ftp."
+#~ "debian.org sarge main\"</i>。"
-#, python-format
#~ msgid ""
#~ "<big><b>Error scaning the CD</b></big>\n"
#~ "\n"
@@ -1526,26 +1607,23 @@ msgstr "不符合 DFSG 的軟體"
#~ msgid ""
#~ "<span weight=\"bold\" size=\"x-large\">Upgrading to Ubuntu 6.06 LTS</span>"
-#~ msgstr "<span weight=\"bold\" size=\"x-large\">升級至 Ubuntu 6.06 LTS</span>"
+#~ msgstr ""
+#~ "<span weight=\"bold\" size=\"x-large\">升級至 Ubuntu 6.06 LTS</span>"
#~ 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 秒鐘"
@@ -1555,7 +1633,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"
@@ -1582,19 +1659,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,下載速度不明"
@@ -1614,14 +1687,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)"
@@ -1633,15 +1707,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'?"
@@ -1669,16 +1743,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 "
@@ -1695,12 +1769,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 ""
@@ -1730,23 +1807,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."
@@ -1756,4 +1832,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)"