summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Heinlein <sebastian.heinlein@web.de>2006-02-24 02:40:48 +0100
committerSebastian Heinlein <sebastian.heinlein@web.de>2006-02-24 02:40:48 +0100
commitdf122edca2edce0b25e5e7c52a094ffa2ca81fcb (patch)
tree848eee21b5c50f4d77a1fcbf6ba82b5ac8ca399b
parent94d6f41fc71b1b416bc4a7812195d08fc5ad7c76 (diff)
parent2722df4ce2e4cd081e47d36a7c965829bad94f6b (diff)
downloadpython-apt-df122edca2edce0b25e5e7c52a094ffa2ca81fcb.tar.gz
* mergerd wirh michael
l---------DistUpgrade/DistInfo.py1
-rw-r--r--DistUpgrade/DistUpgradeCache.py2
-rw-r--r--DistUpgrade/DistUpgradeViewGtk.py2
-rw-r--r--DistUpgrade/TODO7
l---------DistUpgrade/aptsources.py1
-rwxr-xr-xDistUpgrade/build-tarball.sh4
-rwxr-xr-xDistUpgrade/dist-upgrade.py2
-rw-r--r--debian/changelog7
-rw-r--r--debian/control2
-rw-r--r--po/bg.po125
-rw-r--r--po/da.po103
-rw-r--r--po/de.po127
-rw-r--r--po/el.po103
-rw-r--r--po/en_CA.po121
-rw-r--r--po/en_GB.po121
-rw-r--r--po/es.po127
-rw-r--r--po/fi.po125
-rw-r--r--po/fr.po125
-rw-r--r--po/gl.po127
-rw-r--r--po/he.po109
-rw-r--r--po/hu.po119
-rw-r--r--po/it.po127
-rw-r--r--po/ja.po121
-rw-r--r--po/lt.po125
-rw-r--r--po/mk.po123
-rw-r--r--po/nb.po121
-rwxr-xr-xpo/ne.po121
-rw-r--r--po/nl.po96
-rw-r--r--po/no.po121
-rw-r--r--po/pa.po99
-rw-r--r--po/pl.po121
-rw-r--r--po/pt_BR.po119
-rw-r--r--po/ro.po103
-rw-r--r--po/rw.po128
-rw-r--r--po/sv.po134
-rw-r--r--po/uk.po123
-rw-r--r--po/vi.po119
-rw-r--r--po/xh.po98
-rw-r--r--po/zh_CN.po103
-rw-r--r--po/zh_HK.po121
-rw-r--r--po/zh_TW.po121
41 files changed, 770 insertions, 3034 deletions
diff --git a/DistUpgrade/DistInfo.py b/DistUpgrade/DistInfo.py
new file mode 120000
index 00000000..bdcd1ba6
--- /dev/null
+++ b/DistUpgrade/DistInfo.py
@@ -0,0 +1 @@
+../UpdateManager/Common/DistInfo.py \ No newline at end of file
diff --git a/DistUpgrade/DistUpgradeCache.py b/DistUpgrade/DistUpgradeCache.py
index ab7e24a4..1711ef1b 100644
--- a/DistUpgrade/DistUpgradeCache.py
+++ b/DistUpgrade/DistUpgradeCache.py
@@ -19,7 +19,7 @@ class MyCache(apt.Cache):
# turn on debuging
apt_pkg.Config.Set("Debug::pkgProblemResolver","true")
- fd = os.open(os.path.expanduser("~/dist-upgrade-apt.log"), os.O_RDWR|os.O_CREAT|os.O_TRUNC)
+ fd = os.open("/var/log/dist-upgrade-apt.log", os.O_RDWR|os.O_CREAT|os.O_TRUNC)
os.dup2(fd,1)
os.dup2(fd,2)
diff --git a/DistUpgrade/DistUpgradeViewGtk.py b/DistUpgrade/DistUpgradeViewGtk.py
index 9bd55d24..3697a49e 100644
--- a/DistUpgrade/DistUpgradeViewGtk.py
+++ b/DistUpgrade/DistUpgradeViewGtk.py
@@ -235,7 +235,7 @@ class DistUpgradeViewGtk(DistUpgradeView,SimpleGladeApp):
self._term.set_font_from_string("monospace 10")
self._term.connect("contents-changed", self._term_content_changed)
self._terminal_lines = []
- self._terminal_log = open(os.path.expanduser("~/dist-upgrade-term.log"),"w")
+ self._terminal_log = open("/var/log/dist-upgrade-term.log","w")
return self._term
def _term_content_changed(self, term):
" called when the *visible* part of the terminal changes "
diff --git a/DistUpgrade/TODO b/DistUpgrade/TODO
index 9d26eefc..df64b54b 100644
--- a/DistUpgrade/TODO
+++ b/DistUpgrade/TODO
@@ -5,6 +5,11 @@ hoary->breezy
(it will crash otherwise)
- send a "\n" on the libc6 question on hoary->breezy
+breezy->dapper
+--------------
+- gnome-icon-theme changes a lot, icons move from hicolor to gnome.
+ this might have caused a specatular crash during a upgrade
+
general
-------
- CDROM upgrades !!!
@@ -42,4 +47,4 @@ Robustness:
as possible. The problem here is that e.g. if libnoitfy0 explodes and
evolution, update-notifer depend on it, continuing means to evo and u-n
can't be upgraded and dpkg explodes on them too. This is not more worse
- than what we have right now I guess. \ No newline at end of file
+ than what we have right now I guess.
diff --git a/DistUpgrade/aptsources.py b/DistUpgrade/aptsources.py
new file mode 120000
index 00000000..2f041121
--- /dev/null
+++ b/DistUpgrade/aptsources.py
@@ -0,0 +1 @@
+../SoftwareProperties/aptsources.py \ No newline at end of file
diff --git a/DistUpgrade/build-tarball.sh b/DistUpgrade/build-tarball.sh
index 57185c34..9f01b87c 100755
--- a/DistUpgrade/build-tarball.sh
+++ b/DistUpgrade/build-tarball.sh
@@ -16,7 +16,7 @@ if [ ! -h $DIST ]; then
ln -s dist-upgrade.py $DIST
fi
-# create the tarbal
-tar -c -z -v --exclude=$DIST.tar.gz --exclude=$0 -f $DIST.tar.gz .
+# create the tarball, copy links in place
+tar -c -h -z -v --exclude=$DIST.tar.gz --exclude=$0 -f $DIST.tar.gz .
diff --git a/DistUpgrade/dist-upgrade.py b/DistUpgrade/dist-upgrade.py
index 437be42d..632de54d 100755
--- a/DistUpgrade/dist-upgrade.py
+++ b/DistUpgrade/dist-upgrade.py
@@ -9,7 +9,7 @@ import sys
if __name__ == "__main__":
logging.basicConfig(level=logging.DEBUG,
- filename=os.path.expanduser("~/dist-upgrade.log"),
+ filename="/var/log/dist-upgrade.log",
format='%(asctime)s %(levelname)s %(message)s',
filemode='w')
diff --git a/debian/changelog b/debian/changelog
index 1756819d..c5dd78ec 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+update-manager (0.42.2ubuntu6) dapper; urgency=low
+
+ * SoftwareProperties/*: fix some UI problems (thanks to Sebastian Heinlein)
+ * debian/control: arch: all now
+
+ -- Michael Vogt <michael.vogt@ubuntu.com> Thu, 23 Feb 2006 16:16:30 +0100
+
update-manager (0.42.2ubuntu5) dapper; urgency=low
* po/pt_BR.po: updated translation (thanks to
diff --git a/debian/control b/debian/control
index 314ec741..54dc884f 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,7 @@ Build-Depends: debhelper (>= 4.0.0), libxml-parser-perl, scrollkeeper, intltool,
Standards-Version: 3.6.1.1
Package: update-manager
-Architecture: any
+Architecture: all
Depends: ${python:Depends}, ${misc:Depends}, python, python-gnome2, python-glade2, python-apt (>= 0.6.15), synaptic (>= 0.57.8), lsb-release
Description: GNOME application that manages apt updates
This is the GNOME apt update manager. It checks for updates and lets the user
diff --git a/po/bg.po b/po/bg.po
index ac016704..5a0964fe 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: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-07-22 19:24+0300\n"
"Last-Translator: Rostislav \"zbrox\" Raykov <zbrox@i-space.org>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
@@ -91,50 +91,39 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Обновления на софтуера"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "Грешка при внасяне на избрания файл"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "Избраният файл или не е GPG файл или е повреден."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "Грешка при премахване на ключа"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"Ключа, който сте избрали, не може да бъде премахнат. Докладвайте това като "
"грешка."
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -142,44 +131,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Обновления на софтуера"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -461,7 +420,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Хранилище</b>"
+msgstr "<b>Ключове</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -637,15 +596,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "Инсталиране на обновленията..."
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Презареждане"
@@ -658,35 +613,6 @@ msgstr "Показване на наличните обновления и из
msgid "Update Manager"
msgstr "Управление на обновленията"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -796,17 +722,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr ""
-#~ "Автоматичен подписващ ключ за архива на Ubuntu <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr ""
-#~ "Автоматичен подписващ ключ за дисковете на Ubuntu <cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "Избор на ключов файл"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "Грешка при премахване на ключа"
@@ -832,6 +747,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Дистрибуция:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Хранилище</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Раздели:</b>"
@@ -1025,6 +943,17 @@ msgstr ""
#~ msgid "Debian Non-US (Testing)"
#~ msgstr "Debian Non-US (Testing)"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr ""
+#~ "Автоматичен подписващ ключ за архива на Ubuntu <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr ""
+#~ "Автоматичен подписващ ключ за дисковете на Ubuntu <cdimage@ubuntu.com>"
+
+#~ msgid "Choose a key-file"
+#~ msgstr "Избор на ключов файл"
+
#~ msgid "Your system is up-to-date!"
#~ msgstr "Програмите са обновени до последните версии!"
diff --git a/po/da.po b/po/da.po
index 6dae46de..b743daca 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: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-03-28 11:31+0200\n"
"Last-Translator: Martin Willemoes Hansen <mwh@sysrq.dk>\n"
"Language-Team: Danish <dansk@klid.dk>\n"
@@ -91,48 +91,37 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Opdateringer"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -140,44 +129,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Opdateringer"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -449,7 +408,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Arkiv</b>"
+msgstr "<b>Detaljer</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -628,15 +587,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "_Installér"
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Genindlæs"
@@ -649,35 +604,6 @@ msgstr "Vis tilgængelige opgraderinger og vælg hvilke der skal installeres"
msgid "Update Manager"
msgstr "Opdateringshåndtering"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -823,6 +749,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Distribution:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Arkiv</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Sektioner:</b>"
diff --git a/po/de.po b/po/de.po
index d91330f1..38b2dfb8 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: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-04-02 08:46+0200\n"
"Last-Translator: Frank Arnold <frank@scirocco-5v-turbo.de>\n"
"Language-Team: German GNOME Translations <gnome-de@gnome.org>\n"
@@ -94,52 +94,41 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Software-Aktualisierungen"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "Fehler beim Importieren der gewählten Datei"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
"Die gewählte Datei ist möglicherweise keine GPG-Schlüsseldatei oder ist "
"beschädigt."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "Fehler beim Entfernen des Schlüssels"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
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:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -147,44 +136,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Software-Aktualisierungen"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -467,7 +426,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Repository</b>"
+msgstr "<b>Details</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -647,16 +606,12 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "_Installieren"
# »Aktualisieren« könnte hier verwirrend sein -fa-
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Neu laden"
@@ -669,35 +624,6 @@ msgstr "Verfügbare Aktualisierungen anzeigen und zu installierende auswählen"
msgid "Update Manager"
msgstr "Aktualisierungsverwaltung"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -807,18 +733,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr ""
-#~ "Automatischer Signaturschlüssel des Ubuntu-Archivs <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr ""
-#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image <cdimage@ubuntu."
-#~ "com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "Eine Schlüsseldatei wählen"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "Fehler beim Entfernen des Schlüssels"
@@ -835,6 +749,9 @@ msgstr ""
#~ msgid "Cancel downloading of the changelog"
#~ msgstr "Herunterladen des Änderungsprotokolls abbrechen"
+#~ msgid "Choose a key-file"
+#~ msgstr "Eine Schlüsseldatei wählen"
+
#~ msgid "<b>Packages to install:</b>"
#~ msgstr "<b>Zu installierende Pakete:</b>"
@@ -859,6 +776,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Distribution:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Repository</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Sektionen:</b>"
@@ -1108,6 +1028,15 @@ msgstr ""
#~ msgid "US export restricted software"
#~ msgstr "Software mit US-Exportbeschränkungen"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr ""
+#~ "Automatischer Signaturschlüssel des Ubuntu-Archivs <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr ""
+#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image <cdimage@ubuntu."
+#~ "com>"
+
#~ msgid "Repositories changed"
#~ msgstr "Geänderte Repositories"
diff --git a/po/el.po b/po/el.po
index dbe06fbe..0e58916d 100644
--- a/po/el.po
+++ b/po/el.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: el\n"
"Report-Msgid-Bugs-To: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-03-05 14:33+0200\n"
"Last-Translator: Kostas Papadimas <pkst@gnome.org>\n"
"Language-Team: Greek <team@gnome.gr>\n"
@@ -89,48 +89,37 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "<b>Πηγές λογισμικού</b>"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -138,44 +127,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "<b>Πηγές λογισμικού</b>"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -444,7 +403,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Repository</b>"
+msgstr "<b>Ενότητες:</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, python-format
@@ -616,14 +575,10 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
msgid "_Install Updates"
msgstr ""
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
msgid "_Reload"
msgstr ""
@@ -635,35 +590,6 @@ msgstr ""
msgid "Update Manager"
msgstr ""
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -783,6 +709,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Διανομή:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Repository</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Ενότητες:</b>"
diff --git a/po/en_CA.po b/po/en_CA.po
index c438cbbb..9def7aad 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: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-04-03 01:26-0500\n"
"Last-Translator: Adam Weinberger <adamw@gnome.org>\n"
"Language-Team: Canadian English <adamw@gnome.org>\n"
@@ -92,49 +92,38 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Software Updates"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "Error importing selected file"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "The selected file may not be a GPG key file or it might be corrupt."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "Error removing the key"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
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."
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -142,44 +131,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Software Updates"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -459,7 +418,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Repository</b>"
+msgstr "<b>Details</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -637,15 +596,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "_Install"
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Reload"
@@ -658,35 +613,6 @@ msgstr "Show available updates and choose which to install"
msgid "Update Manager"
msgstr "Update Manager"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -796,15 +722,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "Choose a key-file"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "Error removing the key"
@@ -821,6 +738,9 @@ msgstr ""
#~ msgid "Cancel downloading of the changelog"
#~ msgstr "Cancel downloading the ChangeLog"
+#~ msgid "Choose a key-file"
+#~ msgstr "Choose a key-file"
+
#~ msgid "<b>Packages to install:</b>"
#~ msgstr "<b>Packages to install:</b>"
@@ -844,6 +764,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Distribution:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Repository</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Sections:</b>"
@@ -1085,6 +1008,12 @@ msgstr ""
#~ msgid "US export restricted software"
#~ msgstr "US export restricted software"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+
#~ msgid "Repositories changed"
#~ msgstr "Repositories changed"
diff --git a/po/en_GB.po b/po/en_GB.po
index f25a9fae..eae8881f 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: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-04-19 22:51-0400\n"
"Last-Translator: Abigail Brady <morwen@evilmagic.org>\n"
"Language-Team: \n"
@@ -94,49 +94,38 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Software Updates"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "Error importing selected file"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "The selected file may not be a GPG key file or it might be corrupt."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "Error removing the key"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
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."
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -144,44 +133,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Software Updates"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -462,7 +421,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Repository</b>"
+msgstr "<b>Details</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -638,15 +597,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "Installing updates..."
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Reload"
@@ -659,35 +614,6 @@ msgstr "Show available updates and choose which to install"
msgid "Update Manager"
msgstr "Update Manager"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -797,15 +723,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "Choose a key-file"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "Error removing the key"
@@ -829,6 +746,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Distribution:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Repository</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Sections:</b>"
@@ -1025,6 +945,15 @@ msgstr ""
#~ msgid "Debian Non-US (Testing)"
#~ msgstr "Debian Non-US (Testing)"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+
+#~ msgid "Choose a key-file"
+#~ msgstr "Choose a key-file"
+
#~ msgid "Your system is up-to-date!"
#~ msgstr "Your system is up-to-date!"
diff --git a/po/es.po b/po/es.po
index aa3431c4..042b8c19 100644
--- a/po/es.po
+++ b/po/es.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: es\n"
"Report-Msgid-Bugs-To: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-04-04 15:00+0200\n"
"Last-Translator: Jorge Bernal <koke@amedias.org>\n"
"Language-Team: Spanish <traductores@gnome.org>\n"
@@ -95,52 +95,41 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Actualizaciones de software"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "Hubo un error al importar el fichero seleccionado"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
"Puede que el fichero seleccionado no sea un fichero de clave GPG o que esté "
"corrupto."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "Hubo un error al quitar la clave"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
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."
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -148,44 +137,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Actualizaciones de software"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -468,7 +427,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Repositorio</b>"
+msgstr "<b>Detalles:</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -646,15 +605,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "_Instalar"
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Recargar"
@@ -667,35 +622,6 @@ msgstr "Mostrar actualizaciones disponibles y elegir cuáles instalar"
msgid "Update Manager"
msgstr "Gestor de actualizaciones"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -805,18 +731,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr ""
-#~ "Clave de firmado automático del archivo de Ubuntu <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr ""
-#~ "Clave de firmado automático de las imágenes de CD de Ubuntu "
-#~ "<cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "Elija un fichero de clave"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "Hubo un error al quitar la clave"
@@ -833,6 +747,9 @@ msgstr ""
#~ msgid "Cancel downloading of the changelog"
#~ msgstr "Cancelar la descarga del informe de cambios"
+#~ msgid "Choose a key-file"
+#~ msgstr "Elija un fichero de clave"
+
#~ msgid "<b>Packages to install:</b>"
#~ msgstr "<b>Paquetes a instalar:</b>"
@@ -856,6 +773,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Distribución:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Repositorio</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Secciones:</b>"
@@ -1103,6 +1023,15 @@ msgstr ""
#~ msgid "US export restricted software"
#~ msgstr "Software con restricciones de exportación estadounidenses"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr ""
+#~ "Clave de firmado automático del archivo de Ubuntu <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr ""
+#~ "Clave de firmado automático de las imágenes de CD de Ubuntu "
+#~ "<cdimage@ubuntu.com>"
+
#~ msgid "Repositories changed"
#~ msgstr "Hay cambios en los repositorios"
diff --git a/po/fi.po b/po/fi.po
index d18cc875..c9d7c97e 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: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-03-30 08:30+0200\n"
"Last-Translator: Timo Jyrinki <timo.jyrinki@iki.fi>\n"
"Language-Team: Finnish <LL@li.org>\n"
@@ -91,49 +91,38 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Ohjelmapäivitykset"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "Virhe tuotaessa valittua avainta"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "Valittua tedosto ei ole kelvollinen GPG:n avaintiedosto"
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "Virhe poistettaessa avainta"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
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."
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -141,44 +130,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Ohjelmapäivitykset"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -457,7 +416,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Varasto</b>"
+msgstr "<b>Yksityiskohdat</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -635,15 +594,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "_Asenna"
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Päivitä"
@@ -656,35 +611,6 @@ msgstr "Näytä saatavilla olevat päivitykset ja valitse asennettavat"
msgid "Update Manager"
msgstr "Päivitysten hallinta"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -794,17 +720,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr ""
-#~ "Ubuntu-arkiston automaattinen allekirjoitusavain <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr ""
-#~ "Ubuntun CD-vedosten automaattinen allekirjoitusavain <cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "Valitse avaintiedosto"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "Virhe poistettaessa avainta"
@@ -821,6 +736,9 @@ msgstr ""
#~ msgid "Cancel downloading of the changelog"
#~ msgstr "Keskeytä muutosluettelon lataus"
+#~ msgid "Choose a key-file"
+#~ msgstr "Valitse avaintiedosto"
+
#~ msgid "<b>Packages to install:</b>"
#~ msgstr "<b>Asennettavat paketit:</b>"
@@ -844,6 +762,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Jakelu:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Varasto</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Osastot:</b>"
@@ -1079,6 +1000,14 @@ msgstr ""
#~ msgid "US export restricted software"
#~ msgstr "USA:sta vientirajoitetut ohjelmat"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr ""
+#~ "Ubuntu-arkiston automaattinen allekirjoitusavain <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr ""
+#~ "Ubuntun CD-vedosten automaattinen allekirjoitusavain <cdimage@ubuntu.com>"
+
#~ msgid "Repositories changed"
#~ msgstr "Varastot muuttuneet"
diff --git a/po/fr.po b/po/fr.po
index 86fe3bbf..5f98866d 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: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-04-04 19:43+0200\n"
"Last-Translator: \n"
"Language-Team: French <gnomefr@traduc.org>\n"
@@ -92,52 +92,41 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Mises à jour des logiciels"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "Erreur lors du chargement du fichier sélectionné"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
"Le fichier sélectionné n'est peut-être pas un clé GPG ou alors il est "
"corrompu."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "Erreur lors de la suppression de la clé"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"La clé que vous avez sélectionné ne peut être supprimé. Veuillez envoyer "
"ceci comme étant un bug."
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -145,44 +134,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Mises à jour des logiciels"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -465,7 +424,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Dépôt</b>"
+msgstr "<b>Détails</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -643,15 +602,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "_Installer"
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Recharger"
@@ -664,35 +619,6 @@ msgstr "Montre les mises à jours disponibles et choisir celles à installer"
msgid "Update Manager"
msgstr "Gestionnaire de mises à jour"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -802,17 +728,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr ""
-#~ "Clé de signature automatique de l'archive Ubuntu <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr ""
-#~ "Clé de signature automatique des cédéroms Ubuntu <cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "Choisir un fichier de clé"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "Erreur lors de la suppression de la clé"
@@ -829,6 +744,9 @@ msgstr ""
#~ msgid "Cancel downloading of the changelog"
#~ msgstr "Annuler le téléchargement du changelog"
+#~ msgid "Choose a key-file"
+#~ msgstr "Choisir un fichier de clé"
+
#~ msgid "<b>Packages to install:</b>"
#~ msgstr "<b>Paquets à installer :</b>"
@@ -852,6 +770,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Distribution :</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Dépôt</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Sections :</b>"
@@ -1099,6 +1020,14 @@ msgstr ""
#~ msgid "US export restricted software"
#~ msgstr "Logiciel restreint à l'export (USA)"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr ""
+#~ "Clé de signature automatique de l'archive Ubuntu <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr ""
+#~ "Clé de signature automatique des cédéroms Ubuntu <cdimage@ubuntu.com>"
+
#~ msgid "Repositories changed"
#~ msgstr "Les dépôts ont été modifiés"
diff --git a/po/gl.po b/po/gl.po
index 299dff93..02daf88d 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gl\n"
"Report-Msgid-Bugs-To: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-12-02 15:59+0100\n"
"Last-Translator: Ignacio Casal Quinteiro <nacho.resa@gmail.com>\n"
"Language-Team: Galego\n"
@@ -91,52 +91,41 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Actualizacións de software"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "Erro importando o ficheiro seleccionado"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
"O ficheiro seleccionado pode que non sexa un ficheiro de clave GPG ou que "
"esté corrupto."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "Erro ao quitar a clave"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"Non se pode quitar a clave que seleccionou. Por favor, reporte isto coma un "
"erro."
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -144,44 +133,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Actualizacións de software"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -463,7 +422,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Repositorio</b>"
+msgstr "<b>Claves</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -639,15 +598,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "Instalando actualizacións..."
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Recargar"
@@ -660,35 +615,6 @@ msgstr "Amosar actualización dispoñibles e escoller cales instalar"
msgid "Update Manager"
msgstr "Xestor de actualizacións"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -798,18 +724,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr ""
-#~ "Clave de asinado automático do ficheiro de Ubuntu <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr ""
-#~ "Clave de asinado automático das imaxes de CD de Ubuntu <cdimage@ubuntu."
-#~ "com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "Escolla un ficheiro de clave"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "Erro ao quitar a clave"
@@ -835,6 +749,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Distribución:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Repositorio</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Seccións:</b>"
@@ -1010,6 +927,18 @@ msgstr ""
#~ msgid "Debian Non-US (Testing)"
#~ msgstr "Debian Non-US (Probas)"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr ""
+#~ "Clave de asinado automático do ficheiro de Ubuntu <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr ""
+#~ "Clave de asinado automático das imaxes de CD de Ubuntu <cdimage@ubuntu."
+#~ "com>"
+
+#~ msgid "Choose a key-file"
+#~ msgstr "Escolla un ficheiro de clave"
+
#~ msgid "Your system is up-to-date!"
#~ msgstr "O seu sistema está actualizado!"
diff --git a/po/he.po b/po/he.po
index ac2b4658..779a12b7 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: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-08-07 14:49+0300\n"
"Last-Translator: Yuval Tanny\n"
"Language-Team: Hebrew <he@li.org>\n"
@@ -94,48 +94,37 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "עדכוני תוכנה"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "שגיאה בייבוא קובץ נבחר"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "הקובץ הנבחר הוא לא מפתח GPG או שהוא לא תקין."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "שגיאה בהסרת המפתח"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr "לא ניתן להסיר את המפתח שבחרת. אנא דווח על זה כבאג."
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -143,44 +132,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "עדכוני תוכנה"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -456,7 +415,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>מאגר</b>"
+msgstr "<b>מפתחות</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -632,15 +591,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "מתקין עדכונים..."
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "טען מחדש"
@@ -653,35 +608,6 @@ msgstr "הראה עדכונים זמינים ובחר את מה להתקין"
msgid "Update Manager"
msgstr "מנהל עדכונים"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -791,9 +717,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Choose a key-file"
-#~ msgstr "בחר בקובץ מפתח"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "שגיאה בהסרת המפתח"
@@ -819,6 +742,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>הפצה:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>מאגר</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>מחלקה:</b>"
@@ -1007,6 +933,9 @@ msgstr ""
#~ msgid "Debian Non-US (Testing)"
#~ msgstr "דביאן לא ארה\"ב (בדיקה)"
+#~ msgid "Choose a key-file"
+#~ msgstr "בחר בקובץ מפתח"
+
#~ msgid "Your system is up-to-date!"
#~ msgstr "המערכת שלך מעודכנת!"
diff --git a/po/hu.po b/po/hu.po
index 1858468e..de177f3b 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: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-04-03 12:32+0200\n"
"Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome@gnome.hu>\n"
@@ -93,49 +93,38 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Szoftverfrissítések"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "Hiba a kiválasztott fájl importálása közben"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "A kiválasztott fájl vagy nem GPG kulcsfájl, vagy sérült."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "Hiba a kulcs eltávolítása közben"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
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:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -143,42 +132,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Szoftverfrissítések"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -455,7 +416,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Tároló</b>"
+msgstr "<b>Részletek</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -633,15 +594,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "_Telepítés"
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Újratöltés"
@@ -654,35 +611,6 @@ msgstr "Rendelkezésre álló frissítések mutatása és telepítése"
msgid "Update Manager"
msgstr "Frissítéskezelő"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -792,15 +720,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr "Ubuntu archívum automatikus aláírókulcs <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr "Ubuntu CD-kép automatikus aláírókulcs <cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "Válasszon egy kulcsfájlt"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "Hiba a kulcs eltávolítása közben"
@@ -817,6 +736,9 @@ msgstr ""
#~ msgid "Cancel downloading of the changelog"
#~ msgstr "A módosítások listájának letöltésének megszakítása"
+#~ msgid "Choose a key-file"
+#~ msgstr "Válasszon egy kulcsfájlt"
+
#~ msgid "<b>Packages to install:</b>"
#~ msgstr "<b>Telepítendő csomagok:</b>"
@@ -840,6 +762,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Disztribúció:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Tároló</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Csoportok:</b>"
@@ -1085,6 +1010,12 @@ msgstr ""
#~ msgid "US export restricted software"
#~ msgstr "Egyesült Államok exportkorlátozása alá eső szoftver"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr "Ubuntu archívum automatikus aláírókulcs <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr "Ubuntu CD-kép automatikus aláírókulcs <cdimage@ubuntu.com>"
+
#~ msgid "Repositories changed"
#~ msgstr "Megváltoztak a tárolók"
diff --git a/po/it.po b/po/it.po
index 2e141e84..f97e6041 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: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-10-26 12:25+0200\n"
"Last-Translator: Fabio Marzocca <thesaltydog@gmail.com>\n"
"Language-Team: Italian <it@li.org>\n"
@@ -91,52 +91,41 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Aggiornamenti Software"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "Errore nell'importazione del file selezionato"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
"Il file selezionato potrebbe non essere un file di chiave GPG o potrebbe "
"essere corrotto."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "Errore rimuovendo la chiave"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"La chiave selezionata non può essere rimossa. Per favore riporta questo come "
"bug."
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -144,44 +133,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Aggiornamenti Software"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -463,7 +422,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Repository</b>"
+msgstr "<b>Chiavi</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -640,15 +599,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "Installazione degli aggiornamenti..."
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Ricarica"
@@ -662,35 +617,6 @@ msgstr ""
msgid "Update Manager"
msgstr "Gestore degli Aggiornamenti"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -800,18 +726,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr ""
-#~ "Chiave di Firma Automatica per l'Archivio Ubuntu <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr ""
-#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu <cdimage@ubuntu."
-#~ "com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "Scegli un file di chiave"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "Errore rimuovendo la chiave"
@@ -837,6 +751,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Distribuzione:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Repository</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Sezioni:</b>"
@@ -1014,6 +931,18 @@ msgstr ""
#~ msgid "Debian Non-US (Testing)"
#~ msgstr "Debian·Non-US·(Testing)"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr ""
+#~ "Chiave di Firma Automatica per l'Archivio Ubuntu <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr ""
+#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu <cdimage@ubuntu."
+#~ "com>"
+
+#~ msgid "Choose a key-file"
+#~ msgstr "Scegli un file di chiave"
+
#~ msgid "Your system is up-to-date!"
#~ msgstr "Il tuo sistema è aggiornato!"
diff --git a/po/ja.po b/po/ja.po
index 4904c189..9a9f68c4 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-10-12 17:28+0900\n"
"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
"Language-Team: Ubuntu-ja <ubuntu-ja-users@freeml.com>\n"
@@ -93,49 +93,38 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "ソフトウェアのアップデート"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "選択したファイルのインポートエラー"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
"選択したファイルはGPGキーファイルではないか、壊れている可能性があります。"
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "キー削除のエラー"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr "選択したキーを削除できませんでした。バグとして報告してください。"
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -143,44 +132,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "ソフトウェアのアップデート"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -457,7 +416,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>リポジトリ</b>"
+msgstr "<b>詳細</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -633,15 +592,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "アップデートをインストール中..."
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "再読込"
@@ -654,35 +609,6 @@ msgstr "アップデート可能なファイルの表示とインストール"
msgid "Update Manager"
msgstr "アップデートマネージャ"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -790,15 +716,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "キーファイルを選択"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "キー削除のエラー"
@@ -815,6 +732,9 @@ msgstr ""
#~ msgid "Cancel downloading of the changelog"
#~ msgstr "変更点の取得を中止"
+#~ msgid "Choose a key-file"
+#~ msgstr "キーファイルを選択"
+
#~ msgid "<b>Comment:</b>"
#~ msgstr "<b>コメント:</b>"
@@ -824,6 +744,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>ディストリビューション:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>リポジトリ</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>セクション:</b>"
@@ -982,6 +905,12 @@ msgstr ""
#~ msgid "US export restricted software"
#~ msgstr "アメリカ合衆国外への輸出が禁止されているソフトウェア"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+
#~ msgid "Repositories changed"
#~ msgstr "リポジトリが変更されました"
diff --git a/po/lt.po b/po/lt.po
index d4b8cf25..92a29232 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-09-15 15:06+0300\n"
"Last-Translator: Žygimantas Beručka <uid0@akl.lt>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -91,49 +91,38 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Programinės įrangos atnaujinimai"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "Importuojant pasirinktą bylą įvyko klaida"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "Pasirinkta byla gali būti ne GPG rakto byla arba sugadinta byla."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "Šalinant raktą įvyko klaida"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
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:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -141,46 +130,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Programinės įrangos atnaujinimai"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -462,7 +419,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Saugykla</b>"
+msgstr "<b>Raktai</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -638,15 +595,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "Diegiami atnaujinimai..."
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Atnaujinti"
@@ -659,35 +612,6 @@ msgstr "Rodyti galimus atnaujimus ir pasirinkti įdiegtinus"
msgid "Update Manager"
msgstr "Atnaujinimų tvarkyklė"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -797,16 +721,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr "Ubuntu archyvo automatinio pasirašymo raktas <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr ""
-#~ "Ubuntu CD atvaizdžių automatinio pasirašymo raktas <cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "Pasirinkite rakto bylą"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "Šalinant raktą įvyko klaida"
@@ -832,6 +746,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Distribucija:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Saugykla</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Skyriai:</b>"
@@ -1024,6 +941,16 @@ msgstr ""
#~ msgid "Debian Non-US (Testing)"
#~ msgstr "Debian Non-US (Testing)"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr "Ubuntu archyvo automatinio pasirašymo raktas <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr ""
+#~ "Ubuntu CD atvaizdžių automatinio pasirašymo raktas <cdimage@ubuntu.com>"
+
+#~ msgid "Choose a key-file"
+#~ msgstr "Pasirinkite rakto bylą"
+
#~ msgid "Your system is up-to-date!"
#~ msgstr "Jūsų sistema yra atnaujinta!"
diff --git a/po/mk.po b/po/mk.po
index 46cfb031..a7199983 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mk\n"
"Report-Msgid-Bugs-To: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-07-20 01:21+0200\n"
"Last-Translator: Арангел Ангов <ufo@linux.net.mk>\n"
"Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"
@@ -91,51 +91,40 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Надградба на софтвер"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "Грешка при увоз на избраната датотека"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
"Избраната датотека може да не е GPG датотека или пак може да е расипана."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "Грешка при отстранување на клучот"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова "
"како бубачка."
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -143,46 +132,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Надградба на софтвер"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -467,7 +424,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Складиште</b>"
+msgstr "<b>Копчиња</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -643,15 +600,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "Инсталирам надградби..."
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Освежи"
@@ -664,35 +617,6 @@ msgstr "Покажи достапни надградби и избери кои
msgid "Update Manager"
msgstr "Менаџер за надградба"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -802,15 +726,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "Одберете датотека за клуч"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "Грешка при отстранување на клучот"
@@ -836,6 +751,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Дистрибуција:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Складиште</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Оддели:</b>"
@@ -1013,6 +931,15 @@ msgstr ""
#~ msgid "Debian Non-US (Testing)"
#~ msgstr "Debian Non-US (Testing)"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+
+#~ msgid "Choose a key-file"
+#~ msgstr "Одберете датотека за клуч"
+
#~ msgid "Your system is up-to-date!"
#~ msgstr "Вашиот систем е надграден!"
diff --git a/po/nb.po b/po/nb.po
index 57cb0e2d..cc0c29bd 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: nb\n"
"Report-Msgid-Bugs-To: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\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"
@@ -94,49 +94,38 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Programvareoppdateringer"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "Feil under importering av fil"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "Den valgte filen er ikke en GPG-fil eller så er den skadet."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "Feil under fjerning av nøkkel"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen."
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -144,44 +133,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Programvareoppdateringer"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -462,7 +421,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Arkiv</b>"
+msgstr "<b>Detaljer</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -638,15 +597,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "Installerer oppdateringer..."
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Oppdater"
@@ -659,35 +614,6 @@ msgstr "Vis tilgjengelige oppdateringer og velg hvilke som skal installeres"
msgid "Update Manager"
msgstr "Oppdateringshåndterer"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -797,15 +723,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "Velg en nøkkelfil"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "Feil under fjerning av nøkkel"
@@ -829,6 +746,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Distribusjon:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Arkiv</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Seksjoner:</b>"
@@ -1020,6 +940,15 @@ msgstr ""
#~ msgid "Debian Non-US (Testing)"
#~ msgstr "Debian Non-US (Testing)"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+
+#~ msgid "Choose a key-file"
+#~ msgstr "Velg en nøkkelfil"
+
#~ msgid "Your system is up-to-date!"
#~ msgstr "Systemet er helt oppdatert!"
diff --git a/po/ne.po b/po/ne.po
index afa26ff9..85454f05 100755
--- 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: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-07-03 16:06+0545\n"
"Last-Translator: Jaydeep Bhusal <zaydeep@hotmail.com>\n"
"Language-Team: Nepali <info@mpp.org.np>\n"
@@ -96,48 +96,37 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "सफ्टवेयर अद्यावधिकहरु"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "चयन गरिएको फाइल आयात गर्दा त्रुटि"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "चयन गरिएको फाइल जिपिजि कुञ्जि फइल नहुन सक्छ अथवा यो दुषित हुन सक्दछ"
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "कुञ्जि हटाउँदा त्रुटि"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस"
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -145,44 +134,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "सफ्टवेयर अद्यावधिकहरु"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -459,7 +418,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>कोष</b>"
+msgstr "<b>विवरणहरु</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -635,15 +594,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "स्तरवृद्धिहरु स्थापना गर्दै"
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "फेरि लोड गर्नुहोस"
@@ -656,35 +611,6 @@ msgstr "उपलब्ध अद्यावधिकहरु देखाउ
msgid "Update Manager"
msgstr "अद्यावधिक व्यवस्थापक"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -795,15 +721,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr "युबन्टु संग्रह स्वचालित हस्ताक्षर कुञ्जि <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr "युबन्टु सिडि छवि स्वचालित हस्ताक्षर कुञ्जि <cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "एउटा कुञ्जि-फाइल रोज्नुहोस"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "कुञ्जि हटाउँदा त्रुटि"
@@ -827,6 +744,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>वितरण:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>कोष</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>सेक्सनहरु:</b>"
@@ -995,6 +915,15 @@ msgstr ""
#~ msgid "Debian Unstable \"Sid\""
#~ msgstr "डेबियन अचल सुरक्षा अद्यावधिकहरु"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr "युबन्टु संग्रह स्वचालित हस्ताक्षर कुञ्जि <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr "युबन्टु सिडि छवि स्वचालित हस्ताक्षर कुञ्जि <cdimage@ubuntu.com>"
+
+#~ msgid "Choose a key-file"
+#~ msgstr "एउटा कुञ्जि-फाइल रोज्नुहोस"
+
#~ msgid "Your system is up-to-date!"
#~ msgstr "तपाइं को प्रणालि अप-टु-डेट छ!"
diff --git a/po/nl.po b/po/nl.po
index 743145c4..1d2b5c09 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: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-07-13 06:24+0100\n"
"Last-Translator: Michiel Sikkes <michiels@gnome.org>\n"
"Language-Team: Nederlands <vertaling@vrijschrift.org>\n"
@@ -83,47 +83,37 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-msgid "Software Channel"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -131,43 +121,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-msgid "Add Software Channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -607,14 +568,10 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
msgid "_Install Updates"
msgstr ""
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
msgid "_Reload"
msgstr ""
@@ -626,35 +583,6 @@ msgstr ""
msgid "Update Manager"
msgstr ""
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
diff --git a/po/no.po b/po/no.po
index 57cb0e2d..cc0c29bd 100644
--- a/po/no.po
+++ b/po/no.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: nb\n"
"Report-Msgid-Bugs-To: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\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"
@@ -94,49 +94,38 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Programvareoppdateringer"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "Feil under importering av fil"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "Den valgte filen er ikke en GPG-fil eller så er den skadet."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "Feil under fjerning av nøkkel"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen."
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -144,44 +133,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Programvareoppdateringer"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -462,7 +421,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Arkiv</b>"
+msgstr "<b>Detaljer</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -638,15 +597,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "Installerer oppdateringer..."
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Oppdater"
@@ -659,35 +614,6 @@ msgstr "Vis tilgjengelige oppdateringer og velg hvilke som skal installeres"
msgid "Update Manager"
msgstr "Oppdateringshåndterer"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -797,15 +723,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "Velg en nøkkelfil"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "Feil under fjerning av nøkkel"
@@ -829,6 +746,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Distribusjon:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Arkiv</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Seksjoner:</b>"
@@ -1020,6 +940,15 @@ msgstr ""
#~ msgid "Debian Non-US (Testing)"
#~ msgstr "Debian Non-US (Testing)"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+
+#~ msgid "Choose a key-file"
+#~ msgstr "Velg en nøkkelfil"
+
#~ msgid "Your system is up-to-date!"
#~ msgstr "Systemet er helt oppdatert!"
diff --git a/po/pa.po b/po/pa.po
index 8a7424d0..95e64dab 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pa\n"
"Report-Msgid-Bugs-To: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-10-23 10:48-0200\n"
"Last-Translator: Amanpreet Singh Alam <amanpreetalam@yahoo.com>\n"
"Language-Team: Punjabi <fedora-transa-pa@redhat.com>\n"
@@ -91,48 +91,37 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "<b>ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ</b>"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -140,44 +129,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "<b>ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ</b>"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -624,15 +583,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..."
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
msgid "_Reload"
msgstr ""
@@ -644,36 +599,6 @@ msgstr ""
msgid "Update Manager"
msgstr ""
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-#, fuzzy
-msgid "Show details of an update"
-msgstr "<b>ਵੇਰਵਾ</b>"
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
diff --git a/po/pl.po b/po/pl.po
index 317c7e10..791037ce 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: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-03-25 17:23+0100\n"
"Last-Translator: Zygmunt Krynicki <zyga@www.suxx.pl>\n"
"Language-Team: Polish <translators@gnomepl.org>\n"
@@ -91,48 +91,37 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Aktualizacje oprogramowania"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "Błąd podczas importu wybranego pliku"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "Wybrany plik może nie być kluczem GPG lub może być uszkodzony."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "Błąd podczas usuwania klucza"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
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:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -140,44 +129,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Aktualizacje oprogramowania"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -454,7 +413,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Repozytorium</b>"
+msgstr "<b>Szczegóły</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -632,15 +591,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "_Instaluj"
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Wczytaj ponownie"
@@ -655,35 +610,6 @@ msgstr ""
msgid "Update Manager"
msgstr "Menadżer aktualizacji"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -793,15 +719,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr "Klucz automatycznego podpisu archiwum Ubuntu <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr "Klucz automatycznego podpisu płyty CD Ubuntu <cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "Wybierz plik z kluczem"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "Błąd podczas usuwania klucza"
@@ -818,6 +735,9 @@ msgstr ""
#~ msgid "Cancel downloading of the changelog"
#~ msgstr "Anuluj pobieranie pliku zmian (Changelog)"
+#~ msgid "Choose a key-file"
+#~ msgstr "Wybierz plik z kluczem"
+
#~ msgid "<b>Packages to install:</b>"
#~ msgstr "<b>Pakiety do zainstalowania:</b>"
@@ -841,6 +761,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Dystrybucja:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Repozytorium</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Sekcje:</b>"
@@ -1083,6 +1006,12 @@ msgstr ""
#~ msgid "US export restricted software"
#~ msgstr "Oprogramowanie objęte restrykcjami eksportowymi USA"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr "Klucz automatycznego podpisu archiwum Ubuntu <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr "Klucz automatycznego podpisu płyty CD Ubuntu <cdimage@ubuntu.com>"
+
#~ msgid "Repositories changed"
#~ msgstr "Repozytoria zmienione"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 7f07a8ba..4113629c 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: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2006-02-19 17:39-0300\n"
"Last-Translator: Carlos Eduardo Pedroza Santiviago <segfault@ubuntu.com>\n"
"Language-Team: Ubuntu-BR <tradutores@listas.ubuntubrasil.org>\n"
@@ -83,52 +83,41 @@ msgstr "_Obter atualizações em segundo plano, mas não instalá-las"
msgid "_Install security updates without confirmation"
msgstr "_Instalar novas atualizações sem confirmação"
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr "A cada %s dias"
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr "Após %s dias"
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Atualizações de Programas"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr "Importar Chave"
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "Erro importando o arquivo selecionado"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
"O arquivo selecionado pode não ser um arquivo de chave GPG ou pode estar "
"corrompido."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "Erro removendo a chave"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"A chave que você selecionou não pôde se removida. Por favor reporte isto "
"como um erro."
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -139,46 +128,14 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr "Por favor digite um nome para o disco"
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr "Por favor insira um disco no drive:"
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Atualizações de Programas"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-#, fuzzy
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] "Modificando os canais de programas"
-msgstr[1] "Modificando os canais de programas"
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-#, fuzzy
-msgid "Could not add any software channels"
-msgstr "Modificando os canais de programas"
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr "Pacotes quebrados"
@@ -678,14 +635,10 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr "Atualizar para a última versão do Ubuntu"
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
msgid "_Install Updates"
msgstr "_Instalar Atualizações"
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
msgid "_Reload"
msgstr "_Recarregar"
@@ -697,36 +650,6 @@ msgstr "Exibir atualizações disponíveis e escolher quais instalar"
msgid "Update Manager"
msgstr "Gerenciador de Atualizações"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-#, fuzzy
-msgid "Show details of an update"
-msgstr "Exibir Detalhes"
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -829,15 +752,6 @@ msgstr "Programa compatível com a DFSG mas com dependências não-livres"
msgid "Non-DFSG-compatible Software"
msgstr "Programas não compatíveis com a DFSG"
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "Choose a key-file"
-
#~ 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-"
@@ -899,6 +813,9 @@ msgstr "Programas não compatíveis com a DFSG"
#~ msgid "Cancel downloading of the changelog"
#~ msgstr "Cancel downloading the ChangeLog"
+#~ msgid "Choose a key-file"
+#~ msgstr "Choose a key-file"
+
#~ msgid "<b>Packages to install:</b>"
#~ msgstr "<b>Packages to install:</b>"
@@ -1166,6 +1083,12 @@ msgstr "Programas não compatíveis com a DFSG"
#~ msgid "US export restricted software"
#~ msgstr "US export restricted software"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+
#~ msgid "Repositories changed"
#~ msgstr "Repositories changed"
diff --git a/po/ro.po b/po/ro.po
index 18f8e254..be0406f4 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-03-03 19:28+0200\n"
"Last-Translator: Dan Damian <dand@gnome.ro>\n"
"Language-Team: Romanian <gnomero-list@lists.sourceforge.net>\n"
@@ -90,48 +90,37 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Actualizări software"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -139,44 +128,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Actualizări software"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -448,7 +407,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Locaţie</b>"
+msgstr "<b>Detalii</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -626,15 +585,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "_Instalează"
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
msgid "_Reload"
msgstr ""
@@ -647,35 +602,6 @@ msgstr ""
msgid "Update Manager"
msgstr "Actualizări Ubuntu 4.10"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -821,6 +747,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Distribuţie:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Locaţie</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Secţiuni:</b>"
diff --git a/po/rw.po b/po/rw.po
index 68b82d0e..7f1b0297 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: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-03-31 20:55-0700\n"
"Last-Translator: Steve Murphy <murf@e-tools.com>\n"
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
@@ -97,52 +97,41 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Ibihuzagihe bya porogaramumudasobwa "
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
#, fuzzy
msgid "Error importing selected file"
msgstr "Kuzaza Byahiswemo IDOSIYE"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
#, fuzzy
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "Byahiswemo IDOSIYE Gicurasi OYA a Urufunguzo IDOSIYE Cyangwa"
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
#, fuzzy
msgid "Error removing the key"
msgstr "i Urufunguzo"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
#, fuzzy
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:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -150,44 +139,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Ibihuzagihe bya porogaramumudasobwa "
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -649,21 +608,17 @@ msgstr "Byarangiye"
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
# #-#-#-#-# setup2.pot (PACKAGE VERSION) #-#-#-#-#
# setup2/source\ui\pages\plang.src:RESID_PAGE_PAGELANGUAGE.STR_PROG.text
# #-#-#-#-# setup2.pot (PACKAGE VERSION) #-#-#-#-#
# setup2/source\uibase\agentdlg.src:RC_AGENTDLG.RESID_DLG_AGENT_STR_INSTALL.text
-#: ../data/UpdateManager.glade.h:23
+#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
msgstr "Kwinjiza porogaramu"
# sfx2/sdi\sfxslots.src:SID_RELOAD.text
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Kongera Gutangiza"
@@ -677,35 +632,6 @@ msgstr "Bihari Na Guhitamo Kuri Kwinjiza porogaramu"
msgid "Update Manager"
msgstr ""
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -818,18 +744,6 @@ msgid "Non-DFSG-compatible Software"
msgstr ""
#, fuzzy
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr "com"
-
-#, fuzzy
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr "com"
-
-#, fuzzy
-#~ msgid "Choose a key-file"
-#~ msgstr "a Urufunguzo IDOSIYE"
-
-#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "i Urufunguzo"
@@ -846,6 +760,10 @@ msgstr ""
#~ msgstr "Iyimura... i"
#, fuzzy
+#~ msgid "Choose a key-file"
+#~ msgstr "a Urufunguzo IDOSIYE"
+
+#, fuzzy
#~ msgid "<b>Packages to install:</b>"
#~ msgstr "<B Kuri Kwinjiza porogaramu B"
@@ -870,6 +788,10 @@ msgstr ""
#~ msgstr "<B B"
#, fuzzy
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<B B"
+
+#, fuzzy
#~ msgid "<b>Sections:</b>"
#~ msgstr "<B B"
@@ -1106,6 +1028,14 @@ msgstr ""
#~ msgstr "Kohereza Nta gukoresha bisesuye"
#, fuzzy
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr "com"
+
+#, fuzzy
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr "com"
+
+#, fuzzy
#~ msgid "Repositories changed"
#~ msgstr "Byahinduwe"
diff --git a/po/sv.po b/po/sv.po
index f9a14316..42619f23 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-03-26 15:14+0100\n"
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
"Language-Team: Swedish <sv@li.org>\n"
@@ -89,50 +89,38 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Ingen kanal"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-#, fuzzy
-msgid "Active"
-msgstr "Aktivera"
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
#, fuzzy
msgid "Import key"
msgstr "Viktighet"
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -140,46 +128,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Ingen kanal"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-#, fuzzy
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] "Alla kanaler"
-msgstr[1] "Alla kanaler"
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-#, fuzzy
-msgid "Could not add any software channels"
-msgstr "inte installerad"
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
#, fuzzy
msgid "Broken packages"
@@ -426,11 +382,11 @@ msgstr[0] ""
msgstr[1] ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:314
-#, fuzzy, python-format
+#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
-msgstr[0] "Paket att installera:"
-msgstr[1] "Paket att installera:"
+msgstr[0] ""
+msgstr[1] ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:320
#, python-format
@@ -458,7 +414,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Säkerhet</b>"
+msgstr "<b>Detaljer</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -641,15 +597,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "Letar efter uppdateringar..."
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Läs om"
@@ -662,36 +614,6 @@ msgstr "Visa tillgängliga uppdateringar och välj vilka som ska installeras"
msgid "Update Manager"
msgstr "Uppdateringshanterare"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-#, fuzzy
-msgid "Show details of an update"
-msgstr "Detaljer"
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -801,10 +723,6 @@ msgid "Non-DFSG-compatible Software"
msgstr "Tillgängliga program"
#, fuzzy
-#~ msgid "Choose a key-file"
-#~ msgstr "Välj en spegel"
-
-#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "Inga matchande paket hittades"
@@ -827,6 +745,10 @@ msgstr "Tillgängliga program"
#~ msgid "_Install"
#~ msgstr "_Installera"
+#, fuzzy
+#~ msgid "Choose a key-file"
+#~ msgstr "Välj en spegel"
+
#~ msgid "<b>Details</b>"
#~ msgstr "<b>Detaljer</b>"
@@ -843,6 +765,10 @@ msgstr "Tillgängliga program"
#~ msgstr "<b>Distribution:</b>"
#, fuzzy
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Säkerhet</b>"
+
+#, fuzzy
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Val</b>"
@@ -1018,6 +944,9 @@ msgstr "Tillgängliga program"
#~ msgid "Temporary files"
#~ msgstr "Temporära filer"
+#~ msgid "Packages to install:"
+#~ msgstr "Paket att installera:"
+
#~ msgid ""
#~ "Failed to download changes. Please check if there is an active Internet "
#~ "connection."
@@ -1121,6 +1050,9 @@ msgstr "Tillgängliga program"
#~ msgid "Activation Code:"
#~ msgstr "Aktiveringskod:"
+#~ msgid "Activate"
+#~ msgstr "Aktivera"
+
#~ msgid "Please fill in both email and activation code."
#~ msgstr "Fyll i både e-postadress och aktiveringskod."
@@ -1338,6 +1270,9 @@ msgstr "Tillgängliga program"
#~ msgid "Go to the '%s' page"
#~ msgstr "Gå till sidan \"%s\""
+#~ msgid "All Channels"
+#~ msgstr "Alla kanaler"
+
#~ msgid "All Subscribed Channels"
#~ msgstr "Alla prenumererade kanaler"
@@ -2113,6 +2048,9 @@ msgstr "Tillgängliga program"
#~ msgid "Package Information..."
#~ msgstr "Paketinformation..."
+#~ msgid "No Channel"
+#~ msgstr "Ingen kanal"
+
#~ msgid "Unknown Channel"
#~ msgstr "Okänd kanal"
diff --git a/po/uk.po b/po/uk.po
index 0bcd10e4..1d9aec6e 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-08-08 11:46+0300\n"
"Last-Translator: Maxim Dziumanenko <mvd@mylinux.ua>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
@@ -89,48 +89,37 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Оновлення програм"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "Помилка імпорту вибраного файлу"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "Вибраний файл, можливо, не є файлом GPG ключа або він пошкоджений."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "Помилка видалення ключа"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку."
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -138,46 +127,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Оновлення програм"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -456,7 +413,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Репозиторій</b>"
+msgstr "<b>Клавіші</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -632,15 +589,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "Встановлення оновлень..."
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Перезавантажити"
@@ -653,35 +606,6 @@ msgstr "Показати доступні оновлення та зміни д
msgid "Update Manager"
msgstr "Менеджер оновлення"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -791,15 +715,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr "Автоматичний ключ підпису архіву Ubuntu <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr "Автоматичний ключ підпису компакт-диску Ubuntu <cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "Виберіть ключовий файл"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "Помилка видалення ключа"
@@ -825,6 +740,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Дистрибутив:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Репозиторій</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Розділи:</b>"
@@ -1016,6 +934,15 @@ msgstr ""
#~ msgid "Debian Non-US (Testing)"
#~ msgstr "Debian поза США (Тестовий)"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr "Автоматичний ключ підпису архіву Ubuntu <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr "Автоматичний ключ підпису компакт-диску Ubuntu <cdimage@ubuntu.com>"
+
+#~ msgid "Choose a key-file"
+#~ msgstr "Виберіть ключовий файл"
+
#~ msgid "Your system is up-to-date!"
#~ msgstr "Ваша система оновлена!"
diff --git a/po/vi.po b/po/vi.po
index d0c1c37e..603930e2 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: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-08-26 18:15+0930\n"
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"
@@ -90,48 +90,37 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Bản cập nhật phần mềm"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "Gặp lỗi khi nhập tâp tin đã chọn"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
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."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "Gặp lỗi khi gỡ bỏ khóa"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
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:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -139,42 +128,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Bản cập nhật phần mềm"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -447,7 +408,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>Kho</b>"
+msgstr "<b>Khóa</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -623,15 +584,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "Đang cài đặt bản cập nhật..."
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "Tải lại"
@@ -644,35 +601,6 @@ msgstr "Hiện các bản cập nhật công bố và chọn bản nào cần c
msgid "Update Manager"
msgstr "Bộ Quản lý Cập nhật"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -782,15 +710,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr "Khóa ký tự động kho Ubuntu <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr "Khóa ký tự động ảnh đĩa CD Ubuntu <cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "Chọn tập tin khóa"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "Gặp lỗi khi gỡ bỏ khóa"
@@ -816,6 +735,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>Bản phát hành:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>Kho</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>Phần:</b>"
@@ -994,6 +916,15 @@ msgstr ""
#~ msgid "Debian Non-US (Testing)"
#~ msgstr "Không Mỹ Debian (Thử ra)"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr "Khóa ký tự động kho Ubuntu <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr "Khóa ký tự động ảnh đĩa CD Ubuntu <cdimage@ubuntu.com>"
+
+#~ msgid "Choose a key-file"
+#~ msgstr "Chọn tập tin khóa"
+
#~ msgid "Your system is up-to-date!"
#~ msgstr "Hệ thống bạn toàn mới nhất."
diff --git a/po/xh.po b/po/xh.po
index 7ce93311..0254c104 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: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-03-30 13:25+0200\n"
"Last-Translator: Canonical Ltd <translations@canonical.com>\n"
"Language-Team: Xhosa <xh-translate@ubuntu.com>\n"
@@ -88,48 +88,37 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "Bonisa izihlaziyo"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -137,44 +126,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "Bonisa izihlaziyo"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -616,15 +575,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "Bonisa izihlaziyo"
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
msgid "_Reload"
msgstr ""
@@ -637,35 +592,6 @@ msgstr ""
msgid "Update Manager"
msgstr "UMlawuli woMqulu weNkqubo"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
diff --git a/po/zh_CN.po b/po/zh_CN.po
index a1671da6..93662349 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: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-03-21 22:00+0800\n"
"Last-Translator: Funda Wang <fundawang@linux.net.cn>\n"
"Language-Team: zh_CN <i18n-translation@lists.linux.net.cn>\n"
@@ -90,48 +90,37 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "软件更新"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -139,44 +128,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "软件更新"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -448,7 +407,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>仓库</b>"
+msgstr "<b>细节</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -623,15 +582,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "安装(_I)"
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "重新装入"
@@ -644,35 +599,6 @@ msgstr "显示可用的更新并选择要安装的更新"
msgid "Update Manager"
msgstr "更新管理器"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -807,6 +733,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>发行版:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>仓库</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>节:</b>"
diff --git a/po/zh_HK.po b/po/zh_HK.po
index 1017fd4d..16e971bb 100644
--- a/po/zh_HK.po
+++ b/po/zh_HK.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager 0.41.1\n"
"Report-Msgid-Bugs-To: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-12-14 01:58+0800\n"
"Last-Translator: Abel Cheung <abel@oaka.org>\n"
"Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
@@ -89,48 +89,37 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "軟件更新"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "匯入指定檔案時發生錯誤"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "選定的檔案可能不是 GPG 密碼匙,或者內容已損壞。"
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "移除密碼匙時發生錯誤"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr "你選定的密碼匙無法移除,請匯報問題。"
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -138,44 +127,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "軟件更新"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -451,7 +410,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>軟件庫</b>"
+msgstr "<b>密碼匙</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -627,15 +586,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "正在安裝軟件更新..."
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "重新載入"
@@ -648,35 +603,6 @@ msgstr "顯示所有可更新的套件,並選擇要安裝的套件"
msgid "Update Manager"
msgstr "更新管理員"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -786,15 +712,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr "Ubuntu 套件自動簽署用密碼匙 <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr "Ubuntu 光碟自動簽署用密碼匙 <cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "選擇密碼匙檔"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "移除密碼匙時發生錯誤"
@@ -820,6 +737,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>發行版本:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>軟件庫</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>分類:</b>"
@@ -992,6 +912,15 @@ msgstr ""
#~ msgid "Debian Non-US (Testing)"
#~ msgstr "Debian Non-US (測試版)"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr "Ubuntu 套件自動簽署用密碼匙 <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr "Ubuntu 光碟自動簽署用密碼匙 <cdimage@ubuntu.com>"
+
+#~ msgid "Choose a key-file"
+#~ msgstr "選擇密碼匙檔"
+
#~ msgid "Your system is up-to-date!"
#~ msgstr "系統已經在最新狀態!"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index f0941856..f3c467c6 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager 0.41.1\n"
"Report-Msgid-Bugs-To: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-02-23 12:55+0100\n"
+"POT-Creation-Date: 2006-02-22 16:57+0100\n"
"PO-Revision-Date: 2005-12-14 01:58+0800\n"
"Last-Translator: Abel Cheung <abel@oaka.org>\n"
"Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
@@ -89,48 +89,37 @@ msgstr ""
msgid "_Install security updates without confirmation"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:115
+#: ../SoftwareProperties/SoftwareProperties.py:101
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:145
+#: ../SoftwareProperties/SoftwareProperties.py:131
#, python-format
msgid "After %s days"
msgstr ""
-#. cell_desc.set_property("xpad", 10)
-#. cell_desc.set_property("ypad", 10)
-#: ../SoftwareProperties/SoftwareProperties.py:230
-#, fuzzy
-msgid "Software Channel"
-msgstr "軟體更新"
-
-#: ../SoftwareProperties/SoftwareProperties.py:236
-msgid "Active"
-msgstr ""
-
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:354
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:364
msgid "Error importing selected file"
msgstr "匯入指定檔案時發生錯誤"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:365
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "選定的檔案可能不是 GPG 金鑰,或者內容已損壞。"
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:377
msgid "Error removing the key"
msgstr "移除金鑰時發生錯誤"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:378
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr "您選定的金鑰無法移除,請匯報問題。"
-#: ../SoftwareProperties/SoftwareProperties.py:480
+#: ../SoftwareProperties/SoftwareProperties.py:421
#, python-format
msgid ""
"<big><b>Error scaning the CD</b></big>\n"
@@ -138,44 +127,14 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:530
+#: ../SoftwareProperties/SoftwareProperties.py:471
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:546
+#: ../SoftwareProperties/SoftwareProperties.py:487
msgid "Please insert a disc in the drive:"
msgstr ""
-#: ../SoftwareProperties/dialog_sources_list.py:35
-#, fuzzy
-msgid "Add Software Channels"
-msgstr "軟體更新"
-
-#: ../SoftwareProperties/dialog_sources_list.py:71
-msgid "Add the following software channel?"
-msgid_plural "Add the following software channels?"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:74
-msgid "You can install software from a channel. Use trusted channels, only."
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:78
-msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:91
-msgid "Could not add any software channels"
-msgstr ""
-
-#: ../SoftwareProperties/dialog_sources_list.py:92
-#, python-format
-msgid "The file '%s' does not contain any valid software channels."
-msgstr ""
-
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
msgstr ""
@@ -451,7 +410,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:339
#, fuzzy, python-format
msgid "<b>Remove %s</b>"
-msgstr "<b>軟體庫</b>"
+msgstr "<b>金鑰</b>"
#: ../DistUpgrade/DistUpgradeViewGtk.py:341
#, fuzzy, python-format
@@ -627,15 +586,11 @@ msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
#: ../data/UpdateManager.glade.h:22
-msgid "_Hide this information in the future"
-msgstr ""
-
-#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Install Updates"
msgstr "正在安裝軟體更新..."
-#: ../data/UpdateManager.glade.h:24
+#: ../data/UpdateManager.glade.h:23
#, fuzzy
msgid "_Reload"
msgstr "重新載入"
@@ -648,35 +603,6 @@ msgstr "顯示所有可更新的套件,並選擇要安裝的套件"
msgid "Update Manager"
msgstr "更新管理員"
-#: ../data/update-manager.schemas.in.h:1
-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 ""
-
-#: ../data/update-manager.schemas.in.h:2
-msgid "Remind to reload the channel list"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:3
-msgid "Show details of an update"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:4
-msgid "Stores the size of the update-manager dialog"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:5
-msgid ""
-"Stores the state of the expander that contains the list of changs and the "
-"description"
-msgstr ""
-
-#: ../data/update-manager.schemas.in.h:6
-msgid "The window size"
-msgstr ""
-
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -786,15 +712,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
-#~ msgstr "Ubuntu 套件自動簽署用金鑰 <ftpmaster@ubuntu.com>"
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
-#~ msgstr "Ubuntu 光碟自動簽署用金鑰 <cdimage@ubuntu.com>"
-
-#~ msgid "Choose a key-file"
-#~ msgstr "選擇金鑰檔"
-
#, fuzzy
#~ msgid "Error fetching the packages"
#~ msgstr "移除金鑰時發生錯誤"
@@ -820,6 +737,9 @@ msgstr ""
#~ msgid "<b>Distribution:</b>"
#~ msgstr "<b>發行版本:</b>"
+#~ msgid "<b>Repository</b>"
+#~ msgstr "<b>軟體庫</b>"
+
#~ msgid "<b>Sections:</b>"
#~ msgstr "<b>分類:</b>"
@@ -991,6 +911,15 @@ msgstr ""
#~ msgid "Debian Non-US (Testing)"
#~ msgstr "Debian Non-US (測試版)"
+#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>"
+#~ msgstr "Ubuntu 套件自動簽署用金鑰 <ftpmaster@ubuntu.com>"
+
+#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>"
+#~ msgstr "Ubuntu 光碟自動簽署用金鑰 <cdimage@ubuntu.com>"
+
+#~ msgid "Choose a key-file"
+#~ msgstr "選擇金鑰檔"
+
#~ msgid "Your system is up-to-date!"
#~ msgstr "系統已經在最新狀態!"