From d35c7defd7e19b1f7bcb193c86bd1be5c50dd491 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Mon, 27 Mar 2006 20:18:16 +0200
Subject: * added the patch from chipzz
---
SoftwareProperties/SoftwareProperties.py | 14 +++-
SoftwareProperties/aptsources.py | 135 +++++++++++++++++--------------
SoftwareProperties/dialog_add.py | 91 ++++++++++++++++++---
data/SoftwarePropertiesDialogs.glade | 2 +-
debian/changelog | 2 +-
5 files changed, 167 insertions(+), 77 deletions(-)
diff --git a/SoftwareProperties/SoftwareProperties.py b/SoftwareProperties/SoftwareProperties.py
index 9613b49e..8453cc24 100644
--- a/SoftwareProperties/SoftwareProperties.py
+++ b/SoftwareProperties/SoftwareProperties.py
@@ -363,8 +363,18 @@ class SoftwareProperties(SimpleGladeApp):
if not iter:
return
source_entry = model.get_value(iter, LIST_ENTRY_OBJ)
- dialog = dialog_edit.dialog_edit(self.window_main, self.sourceslist,
- source_entry, self.datadir)
+ # see if we know what this thing should look like
+ found_matcher = False
+ for item in aptsources.SourceEntryTemplates(self.datadir).templates:
+ if item.matches(source_entry):
+ found_matcher = True
+ break
+ if found_matcher:
+ dialog = dialog_add.dialog_add(self.window_main, self.sourceslist,
+ self.datadir, source_entry)
+ else:
+ dialog = dialog_edit.dialog_edit(self.window_main, self.sourceslist,
+ source_entry, self.datadir)
if dialog.run() == gtk.RESPONSE_OK:
self.reload_sourceslist()
self.modified = True
diff --git a/SoftwareProperties/aptsources.py b/SoftwareProperties/aptsources.py
index 77de510b..3e82c74b 100644
--- a/SoftwareProperties/aptsources.py
+++ b/SoftwareProperties/aptsources.py
@@ -32,6 +32,47 @@ import os.path
from UpdateManager.Common.DistInfo import DistInfo
+
+# some global helpers
+def is_mirror(master_uri, compare_uri):
+ """check if the given add_url is idential or a mirror of orig_uri
+ e.g. master_uri = archive.ubuntu.com
+ compare_uri = de.archive.ubuntu.com
+ -> True
+ """
+ # remove traling spaces and "/"
+ compare_uri = compare_uri.rstrip("/ ")
+ master_uri = master_uri.rstrip("/ ")
+ # uri is identical
+ if compare_uri == master_uri:
+ #print "Identical"
+ return True
+ # add uri is a master site and orig_uri has the from "XX.mastersite"
+ # (e.g. de.archive.ubuntu.com)
+ try:
+ compare_srv = compare_uri.split("//")[1]
+ master_srv = master_uri.split("//")[1]
+ #print "%s == %s " % (add_srv, orig_srv)
+ except IndexError: # ok, somethings wrong here
+ #print "IndexError"
+ return False
+ # remove the leading "." (if any) and see if that helps
+ if "." in compare_srv and \
+ compare_srv[compare_srv.index(".")+1:] == master_srv:
+ #print "Mirror"
+ return True
+ return False
+
+def uniq(s):
+ """ simple (and not efficient) way to return uniq list """
+ u = []
+ for x in s:
+ if x not in u:
+ u.append(x)
+ return u
+
+
+
# actual source.list entries
class SourceEntry:
@@ -148,14 +189,23 @@ class SourceEntry:
line += "\n"
return line
-def uniq(s):
- """ simple (and not efficient) way to return uniq list """
- u = []
- for x in s:
- if x not in u:
- u.append(x)
- return u
-
+ def add(self, type, uri, dist, comps, comment="", pos=-1):
+ # if there is a repo with the same (type, uri, dist) just add the
+ # components
+ for i in self.list:
+ if i.type == type and is_mirror(uri,i.uri) and i.dist == dist:
+ comps = uniq(i.comps + comps)
+ # set to the old position and preserve comment
+ comment = i.comment
+ pos = self.list.index(i)
+ self.list.remove(i)
+ line = "%s %s %s" % (type,uri,dist)
+ for c in comps:
+ line = line + " " + c;
+ if comment != "":
+ line = "%s #%s\n" %(line,comment)
+ line = line + "\n"
+ self.list.insert(pos, SourceEntry(line))
# the SourceList file as a class
class SourcesList:
@@ -179,53 +229,6 @@ class SourcesList:
yield entry
raise StopIteration
- def is_mirror(self, master_uri, compare_uri):
- """check if the given add_url is idential or a mirror of orig_uri
- e.g. master_uri = archive.ubuntu.com
- compare_uri = de.archive.ubuntu.com
- -> True
- """
- # remove traling spaces and "/"
- compare_uri = compare_uri.rstrip("/ ")
- master_uri = master_uri.rstrip("/ ")
- # uri is identical
- if compare_uri == master_uri:
- #print "Identical"
- return True
- # add uri is a master site and orig_uri has the from "XX.mastersite"
- # (e.g. de.archive.ubuntu.com)
- try:
- compare_srv = compare_uri.split("//")[1]
- master_srv = master_uri.split("//")[1]
- #print "%s == %s " % (add_srv, orig_srv)
- except IndexError: # ok, somethings wrong here
- #print "IndexError"
- return False
- # remove the leading "." (if any) and see if that helps
- if "." in compare_srv and \
- compare_srv[compare_srv.index(".")+1:] == master_srv:
- #print "Mirror"
- return True
- return False
-
- def add(self, type, uri, dist, comps, comment="", pos=-1):
- # if there is a repo with the same (type, uri, dist) just add the
- # components
- for i in self.list:
- if i.type == type and self.is_mirror(uri,i.uri) and i.dist == dist:
- comps = uniq(i.comps + comps)
- # set to the old position and preserve comment
- comment = i.comment
- pos = self.list.index(i)
- self.list.remove(i)
- line = "%s %s %s" % (type,uri,dist)
- for c in comps:
- line = line + " " + c;
- if comment != "":
- line = "%s #%s\n" %(line,comment)
- line = line + "\n"
- self.list.insert(pos, SourceEntry(line))
-
def remove(self, source_entry):
self.list.remove(source_entry)
@@ -274,7 +277,6 @@ class SourcesList:
# templates for the add dialog
class SourceEntryTemplate(SourceEntry):
def __init__(self,a_type,uri,dist,description,comps):
- self.comps = []
self.comps_descriptions = []
self.type = a_type
self.uri = uri
@@ -282,6 +284,19 @@ class SourceEntryTemplate(SourceEntry):
self.description = description
self.comps = comps
+ def matches(self,source_entry):
+ """ check if a given source_entry matches this one """
+ if (self.type <> source_entry.type): return False
+ if (self.dist <> source_entry.dist): return False
+ if not is_mirror(self.uri,source_entry.uri):
+ return False
+ for e_comp in source_entry.comps:
+ for t_comp in self.comps:
+ if e_comp == t_comp.name: break
+ else:
+ return False
+ return True
+
class SourceCompTemplate:
def __init__(self, name, description, on_by_default):
self.name = name
@@ -538,9 +553,9 @@ if __name__ == "__main__":
print entry.str()
#print entry.uri
- mirror = sources.is_mirror("http://archive.ubuntu.com/ubuntu/",
- "http://de.archive.ubuntu.com/ubuntu/")
+ mirror = is_mirror("http://archive.ubuntu.com/ubuntu/",
+ "http://de.archive.ubuntu.com/ubuntu/")
print "is_mirror(): %s" % mirror
- print sources.is_mirror("http://archive.ubuntu.com/ubuntu",
- "http://de.archive.ubuntu.com/ubuntu/")
+ print is_mirror("http://archive.ubuntu.com/ubuntu",
+ "http://de.archive.ubuntu.com/ubuntu/")
diff --git a/SoftwareProperties/dialog_add.py b/SoftwareProperties/dialog_add.py
index 9b384623..4ee17a87 100644
--- a/SoftwareProperties/dialog_add.py
+++ b/SoftwareProperties/dialog_add.py
@@ -26,13 +26,19 @@ import os
import gobject
import gtk
import gtk.glade
+from gettext import gettext as _
import aptsources
+import dialog_edit
class dialog_add:
- def __init__(self, parent, sourceslist, datadir):
+ def __init__(self, parent, sourceslist, datadir, source_entry = None):
self.sourceslist = sourceslist
self.parent = parent
+ self.datadir = datadir
+ self.custom = False
+ # we have a source_entry that we want to modify
+ self.source_entry = source_entry
# templates
self.templatelist = aptsources.SourceEntryTemplates(datadir)
@@ -52,16 +58,31 @@ class dialog_add:
combo.pack_start(cell, True)
combo.add_attribute(cell, 'text', 0)
self.fill_combo(combo)
+ if source_entry:
+ self.main.set_title(_("Edit Channel"))
+ self.gladexml.get_widget("button_add").set_label("gtk-ok")
self.gladexml.signal_connect("on_button_custom_clicked",
self.on_button_custom_clicked, None)
def fill_combo(self,combo):
liststore = gtk.ListStore(gobject.TYPE_STRING,gobject.TYPE_PYOBJECT)
+ matched_template = None
for item in self.templatelist.templates:
liststore.append((item.description, item))
+ if self.source_entry and item.matches(self.source_entry):
+ matched_template = item
combo.set_model(liststore)
- combo.set_active(0)
+ if matched_template:
+ try:
+ combo.set_active(self.templatelist.templates.index(matched_template))
+ vbox = self.gladexml.get_widget("vbox_comps")
+ for c in vbox.get_children():
+ c.set_active(c.get_data("name") in self.source_entry.comps)
+ except ValueError:
+ pass
+ else:
+ combo.set_active(0)
def on_combobox_what_changed(self, combobox, user):
#print "on_combobox_what_changed"
@@ -83,19 +104,55 @@ class dialog_add:
#print "on_button_custom_clicked()"
# this hide here is ugly :/
self.main.hide()
- dialog = self.gladexml.get_widget("dialog_add_custom")
- dialog.set_transient_for(self.parent)
- res = dialog.run()
- dialog.hide()
- entry = self.gladexml.get_widget("entry_source_line")
- line = entry.get_text() + "\n"
- self.sourceslist.list.append(aptsources.SourceEntry(line))
+ # check if we are in add or edit-matched mode
+ if self.source_entry:
+ # we are in "edit" mode
+ # get the SourceEntry as it is now (with local changes)
+ # and display the "old" edit dialog
+ self.selected_comps = []
+ vbox = self.gladexml.get_widget("vbox_comps")
+ vbox.foreach(self.get_enabled_comps)
+ source_entry = self._make_source_entry()
+ # since we're passing the SourceEntry as it is now,
+ # this SourceEntry needs to be in the sourceslist,
+ # so temporarily swap the original for the current
+ source_entry_index = self.sourcelist.list.index(source_entry)
+ self.sourceslist.list[source_entry_index] = source_entry
+ dialog = dialog_edit.dialog_edit(self.parent, self.sourceslist,
+ source_entry, self.datadir)
+ res = dialog.run()
+ if res == gtk.RESPONSE_CANCEL:
+ # restore original SourceEntry
+ self.sourceslist.list[source_entry_index] = self.source_entry
+ elif res == gtk.RESPONSE_OK:
+ # the sourceslist is allready updated, but we'll overwrite it
+ # in self.run if we're not carefull
+ self.custom = True
+ else:
+ # we are in "add" mode
+ dialog = self.gladexml.get_widget("dialog_add_custom")
+ dialog.set_transient_for(self.parent)
+ res = dialog.run()
+ dialog.hide()
+ entry = self.gladexml.get_widget("entry_source_line")
+ line = entry.get_text() + "\n"
+ self.sourceslist.list.append(aptsources.SourceEntry(line))
self.main.response(res)
def get_enabled_comps(self, checkbutton):
if checkbutton.get_active():
self.selected_comps.append(checkbutton.get_data("name"))
+ def _make_source_entry(self):
+ " helper for the 'edit' mode "
+ line = "%s %s %s" % (self.selected.type, self.source_entry.uri, self.selected.dist)
+ if len(self.selected_comps) > 0:
+ line += " " + " ".join(self.selected_comps)
+ if self.selected.matches(self.source_entry) and self.source_entry.comment != "":
+ line += " #"+self.source_entry.comment
+ line += "\n"
+ return aptsources.SourceEntry(line,self.source_entry.file)
+
def run(self):
res = self.main.run()
if res == gtk.RESPONSE_OK:
@@ -103,9 +160,17 @@ class dialog_add:
self.selected_comps = []
vbox = self.gladexml.get_widget("vbox_comps")
vbox.foreach(self.get_enabled_comps)
- self.sourceslist.add(self.selected.type,
- self.selected.uri,
- self.selected.dist,
- self.selected_comps)
+ # check if we are in 'add' or 'edit' mode
+ if self.source_entry:
+ # 'edit' - ode
+ if not self.custom:
+ source_entry_index = self.sourcelist.list.index(source_entry)
+ self.sourceslist.list[source_entry_index] = self._make_source_entry()
+ else:
+ # 'add' mode
+ self.sourceslist.add(self.selected.type,
+ self.selected.uri,
+ self.selected.dist,
+ self.selected_comps)
self.main.hide()
return res
diff --git a/data/SoftwarePropertiesDialogs.glade b/data/SoftwarePropertiesDialogs.glade
index 7ff8d976..581cc565 100644
--- a/data/SoftwarePropertiesDialogs.glade
+++ b/data/SoftwarePropertiesDialogs.glade
@@ -59,7 +59,7 @@
-
+
True
True
True
diff --git a/debian/changelog b/debian/changelog
index f5132e2e..ac0ac6e5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,7 +6,7 @@ update-manager (0.42.2ubuntu10) dapper; urgency=low
* keybindings fixed (#36116)
* calc the update before downloading the changelog (#36140)
- --
+ -- Michael Vogt Mon, 27 Mar 2006 16:45:56 +0200
update-manager (0.42.2ubuntu9) dapper; urgency=low
--
cgit v1.2.3
From bd4359789d0e72fbbcd49f22b7f535e9238f3f93 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Mon, 27 Mar 2006 20:35:23 +0200
Subject: * more comments added
---
SoftwareProperties/dialog_add.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/SoftwareProperties/dialog_add.py b/SoftwareProperties/dialog_add.py
index 4ee17a87..9a074396 100644
--- a/SoftwareProperties/dialog_add.py
+++ b/SoftwareProperties/dialog_add.py
@@ -145,6 +145,9 @@ class dialog_add:
def _make_source_entry(self):
" helper for the 'edit' mode "
+ # we use "selected" for pretty much everything *but* we use
+ # self.source_entry.uri to make sure that the mirror information is
+ # preserved
line = "%s %s %s" % (self.selected.type, self.source_entry.uri, self.selected.dist)
if len(self.selected_comps) > 0:
line += " " + " ".join(self.selected_comps)
--
cgit v1.2.3
From 01c2875f19b40695b75c1014f4d1adc536c081fe Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Mon, 27 Mar 2006 21:25:05 +0200
Subject: * small fixes
---
SoftwareProperties/aptsources.py | 36 ++++++++++++++++++------------------
SoftwareProperties/dialog_add.py | 12 +++++++-----
2 files changed, 25 insertions(+), 23 deletions(-)
diff --git a/SoftwareProperties/aptsources.py b/SoftwareProperties/aptsources.py
index 3e82c74b..933d9960 100644
--- a/SoftwareProperties/aptsources.py
+++ b/SoftwareProperties/aptsources.py
@@ -189,24 +189,6 @@ class SourceEntry:
line += "\n"
return line
- def add(self, type, uri, dist, comps, comment="", pos=-1):
- # if there is a repo with the same (type, uri, dist) just add the
- # components
- for i in self.list:
- if i.type == type and is_mirror(uri,i.uri) and i.dist == dist:
- comps = uniq(i.comps + comps)
- # set to the old position and preserve comment
- comment = i.comment
- pos = self.list.index(i)
- self.list.remove(i)
- line = "%s %s %s" % (type,uri,dist)
- for c in comps:
- line = line + " " + c;
- if comment != "":
- line = "%s #%s\n" %(line,comment)
- line = line + "\n"
- self.list.insert(pos, SourceEntry(line))
-
# the SourceList file as a class
class SourcesList:
def __init__(self):
@@ -229,6 +211,24 @@ class SourcesList:
yield entry
raise StopIteration
+ def add(self, type, uri, dist, comps, comment="", pos=-1):
+ # if there is a repo with the same (type, uri, dist) just add the
+ # components
+ for i in self.list:
+ if i.type == type and is_mirror(uri,i.uri) and i.dist == dist:
+ comps = uniq(i.comps + comps)
+ # set to the old position and preserve comment
+ comment = i.comment
+ pos = self.list.index(i)
+ self.list.remove(i)
+ line = "%s %s %s" % (type,uri,dist)
+ for c in comps:
+ line = line + " " + c;
+ if comment != "":
+ line = "%s #%s\n" %(line,comment)
+ line = line + "\n"
+ self.list.insert(pos, SourceEntry(line))
+
def remove(self, source_entry):
self.list.remove(source_entry)
diff --git a/SoftwareProperties/dialog_add.py b/SoftwareProperties/dialog_add.py
index 9a074396..cee2f9b8 100644
--- a/SoftwareProperties/dialog_add.py
+++ b/SoftwareProperties/dialog_add.py
@@ -39,6 +39,10 @@ class dialog_add:
self.custom = False
# we have a source_entry that we want to modify
self.source_entry = source_entry
+ if source_entry:
+ self.source_entry_index = sourceslist.list.index(source_entry)
+ else:
+ self.source_entry_index = None
# templates
self.templatelist = aptsources.SourceEntryTemplates(datadir)
@@ -116,14 +120,13 @@ class dialog_add:
# since we're passing the SourceEntry as it is now,
# this SourceEntry needs to be in the sourceslist,
# so temporarily swap the original for the current
- source_entry_index = self.sourcelist.list.index(source_entry)
- self.sourceslist.list[source_entry_index] = source_entry
+ self.sourceslist.list[self.source_entry_index] = source_entry
dialog = dialog_edit.dialog_edit(self.parent, self.sourceslist,
source_entry, self.datadir)
res = dialog.run()
if res == gtk.RESPONSE_CANCEL:
# restore original SourceEntry
- self.sourceslist.list[source_entry_index] = self.source_entry
+ self.sourceslist.list[self.source_entry_index] = self.source_entry
elif res == gtk.RESPONSE_OK:
# the sourceslist is allready updated, but we'll overwrite it
# in self.run if we're not carefull
@@ -167,8 +170,7 @@ class dialog_add:
if self.source_entry:
# 'edit' - ode
if not self.custom:
- source_entry_index = self.sourcelist.list.index(source_entry)
- self.sourceslist.list[source_entry_index] = self._make_source_entry()
+ self.sourceslist.list[self.source_entry_index] = self._make_source_entry()
else:
# 'add' mode
self.sourceslist.add(self.selected.type,
--
cgit v1.2.3
From f6444644dc9601b4cbfdf2b621c77741a367b778 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Thu, 30 Mar 2006 16:11:04 +0200
Subject: * DumbTerminal.run() -> DumbTerminal.call()
---
DistUpgrade/DistUpgradeView.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/DistUpgrade/DistUpgradeView.py b/DistUpgrade/DistUpgradeView.py
index 02894939..14ac5208 100644
--- a/DistUpgrade/DistUpgradeView.py
+++ b/DistUpgrade/DistUpgradeView.py
@@ -20,7 +20,7 @@
# USA
class DumbTerminal(object):
- def run(self, cmd):
+ def call(self, cmd):
" expects a command in the subprocess style (as a list) "
subprocess.call(cmd)
--
cgit v1.2.3
From 61988fdcff46cb139d2258d75fa06d522b2842cc Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Mon, 3 Apr 2006 10:34:46 +0200
Subject: * use the shiped aptsources.py instead of the systems one
---
DistUpgrade/DistUpgradeControler.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py
index 6ee2fb97..0277969d 100644
--- a/DistUpgrade/DistUpgradeControler.py
+++ b/DistUpgrade/DistUpgradeControler.py
@@ -30,7 +30,7 @@ import re
import statvfs
from DistUpgradeConfigParser import DistUpgradeConfig
-from SoftwareProperties.aptsources import SourcesList, SourceEntry
+from aptsources import SourcesList, SourceEntry
from gettext import gettext as _
from DistUpgradeCache import MyCache
--
cgit v1.2.3
From c6c1a17f269ed651e4165cd2277a2947ee6e1883 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Mon, 3 Apr 2006 11:13:17 +0200
Subject: * DistUpgrade/build-tarball.sh: fixed clean target * po/*: latest
rosetta translations merged
---
DistUpgrade/build-tarball.sh | 2 +-
po/da.po | 64 ++--
po/fr.po | 10 +-
po/no.po | 115 +++---
po/update-manager.pot | 858 +++++++++++++++++++++++++++++++++++++++++++
5 files changed, 967 insertions(+), 82 deletions(-)
diff --git a/DistUpgrade/build-tarball.sh b/DistUpgrade/build-tarball.sh
index 9f01b87c..a30e40a0 100755
--- a/DistUpgrade/build-tarball.sh
+++ b/DistUpgrade/build-tarball.sh
@@ -3,7 +3,7 @@
DIST=dapper
# cleanup
-rm -f *~ *.bak *.pyc
+rm -f *~ *.bak *.pyc *.moved '#'*
# update po
(cd ../po; make update-po)
diff --git a/po/da.po b/po/da.po
index 2c06b172..757781ac 100644
--- a/po/da.po
+++ b/po/da.po
@@ -9,8 +9,8 @@ msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
"POT-Creation-Date: 2006-03-22 23:28+0000\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME \n"
+"PO-Revision-Date: 2006-03-31 07:38+0000\n"
+"Last-Translator: Lennart Hansen \n"
"Language-Team: Danish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -18,35 +18,38 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1\n"
#: ../SoftwareProperties/SoftwareProperties.py:104
-#, python-format
+#, fuzzy
msgid "Every %s days"
-msgstr ""
+msgstr "Hver %s. dag"
#: ../SoftwareProperties/SoftwareProperties.py:134
#, python-format
msgid "After %s days"
-msgstr ""
+msgstr "Efter %s dag(e)"
#: ../SoftwareProperties/SoftwareProperties.py:382
msgid "Import key"
-msgstr ""
+msgstr "Importer nøgle"
#: ../SoftwareProperties/SoftwareProperties.py:392
msgid "Error importing selected file"
-msgstr ""
+msgstr "Fejl under importering af den valgte fil"
#: ../SoftwareProperties/SoftwareProperties.py:393
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
+"Den valgte fil lader ikke til at være en GPG nøgle fil eller er korrupt"
#: ../SoftwareProperties/SoftwareProperties.py:405
msgid "Error removing the key"
-msgstr ""
+msgstr "Fejl ved fjernelse af nøgle"
#: ../SoftwareProperties/SoftwareProperties.py:406
msgid ""
"The key you selected could not be removed. Please report this as a bug."
msgstr ""
+"Den valgte nøgle kunne ikke fjernes. Rapporter venligst denne fejl som en "
+"bug."
#: ../SoftwareProperties/SoftwareProperties.py:447
#, python-format
@@ -55,68 +58,86 @@ msgid ""
"\n"
"%s"
msgstr ""
+"Fejl ved scanning af CD\n"
+"\n"
+"%s"
#: ../SoftwareProperties/SoftwareProperties.py:504
msgid "Please enter a name for the disc"
-msgstr ""
+msgstr "Indtast venligst et navn for disken"
#: ../SoftwareProperties/SoftwareProperties.py:520
msgid "Please insert a disc in the drive:"
-msgstr ""
+msgstr "Indtast venligst en disk i drevet:"
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
-msgstr ""
+msgstr "Ødelagt Pakke"
#: ../DistUpgrade/DistUpgradeCache.py:93
msgid ""
"Your system contains broken packages that couldn't be fixed with this "
"software. Please fix them first using synaptic or apt-get before proceeding."
msgstr ""
+"Dit system indeholder ødelagte pakker som ikke kan repareres med dette "
+"program. Reparer dem først med synaptic eller apt-get før du fortsætter."
#: ../DistUpgrade/DistUpgradeCache.py:135
msgid "Can't upgrade required meta-packages"
-msgstr ""
+msgstr "Kan ikke opgradere krævet meta-pakke"
#: ../DistUpgrade/DistUpgradeCache.py:142
msgid "A essential package would have to be removed"
-msgstr ""
+msgstr "En system kritisk pakke ville have blevet fjernet"
#: ../DistUpgrade/DistUpgradeCache.py:145
+#, fuzzy
msgid "Could not calculate the upgrade"
-msgstr ""
+msgstr "Kunne ikke beregne upgraderings tiden"
#: ../DistUpgrade/DistUpgradeCache.py:146
+#, fuzzy
msgid ""
"A unresolvable problem occured while calculating the upgrade. Please report "
"this as a bug. "
msgstr ""
+"Der er forkommet et uløseligt problem imens beregning af upgraderings tid. "
+"Raporter venligst denne fejl. "
#: ../DistUpgrade/DistUpgradeCache.py:168
+#, fuzzy
msgid "Error authenticating some packages"
-msgstr ""
+msgstr "Fejl ved validering af nogle pakker"
#: ../DistUpgrade/DistUpgradeCache.py:169
+#, fuzzy
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
+"Det var ikke muligt at validere nogle af pakkerne. Dette kan være pga. "
+"Netværks problemer. Det anbefales du prøver igen senere. Se længere nede for "
+"en liste over pakker som ikke kunne valideres."
#: ../DistUpgrade/DistUpgradeCache.py:232
#, python-format
msgid "Can't install '%s'"
-msgstr ""
+msgstr "Kan ikke installere '%s'"
#: ../DistUpgrade/DistUpgradeCache.py:233
+#, fuzzy
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr ""
+"Det var umuligt at installere en pakke som var krævet. Venligst raporter "
+"denne hændelse som en fejl. "
#: ../DistUpgrade/DistUpgradeCache.py:240
+#, fuzzy
msgid "Can't guess meta-package"
-msgstr ""
+msgstr "Kan ikke gætte meta-pakke"
#: ../DistUpgrade/DistUpgradeCache.py:241
msgid ""
@@ -163,7 +184,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:191
msgid "Not enough free disk space"
-msgstr ""
+msgstr "Ikke nok frit disk plads"
#: ../DistUpgrade/DistUpgradeControler.py:192
#, python-format
@@ -175,11 +196,12 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:198
msgid "Do you want to start the upgrade?"
-msgstr ""
+msgstr "Vil du starte opgraderingen?"
#: ../DistUpgrade/DistUpgradeControler.py:214
+#, fuzzy
msgid "Could not install the upgrades"
-msgstr ""
+msgstr "Kan ikke installere opgraderingerne"
#: ../DistUpgrade/DistUpgradeControler.py:215
msgid ""
@@ -189,7 +211,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
msgid "Could not download the upgrades"
-msgstr ""
+msgstr "Kan ikke hente opgraderingerne"
#: ../DistUpgrade/DistUpgradeControler.py:231
msgid ""
diff --git a/po/fr.po b/po/fr.po
index fd60edbc..cc73d029 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: update-manager 0.37.2\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
"POT-Creation-Date: 2006-03-22 23:28+0000\n"
-"PO-Revision-Date: 2006-03-29 05:45+0000\n"
+"PO-Revision-Date: 2006-04-02 06:12+0000\n"
"Last-Translator: Alexandre Patenaude \n"
"Language-Team: French \n"
"MIME-Version: 1.0\n"
@@ -115,8 +115,8 @@ msgid ""
"unauthenticated packages."
msgstr ""
"Il a été impossible d'authentifier certains paquets. Cela peut provenir d'un "
-"problème de transmission du réseau. Vous voudrez sans doute réessayer plus "
-"tard. Vous trouverez ci-dessous une liste des paquets non authentifiés."
+"problème temporaire du réseau. Vous voudrez sans doute réessayer plus tard. "
+"Vous trouverez ci-dessous une liste des paquets non authentifiés."
#: ../DistUpgrade/DistUpgradeCache.py:232
#, python-format
@@ -133,7 +133,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeCache.py:240
msgid "Can't guess meta-package"
-msgstr "Impossible de déterminer le meta-paquet"
+msgstr "Impossible de déterminer le méta-paquet"
#: ../DistUpgrade/DistUpgradeCache.py:241
msgid ""
@@ -174,7 +174,7 @@ msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-"La mise à jour des informations de le dépôt a créé un fichier invalide. "
+"La mise à jour des informations du dépôt a créé un fichier invalide. "
"Veuillez rapporter ceci en tant que bogue."
#: ../DistUpgrade/DistUpgradeControler.py:171
diff --git a/po/no.po b/po/no.po
index f866b068..f9028ac3 100644
--- a/po/no.po
+++ b/po/no.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: nb\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-27 16:38+0200\n"
+"POT-Creation-Date: 2006-04-03 11:03+0200\n"
"PO-Revision-Date: 2005-06-08 23:10+0200\n"
"Last-Translator: Terance Edward Sola \n"
"Language-Team: Norwegian Bokmal \n"
@@ -17,38 +17,38 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: KBabel 1.10\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:407
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:417
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Feil under importering av fil"
-#: ../SoftwareProperties/SoftwareProperties.py:418
+#: ../SoftwareProperties/SoftwareProperties.py:424
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:430
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Feil under fjerning av nøkkel"
-#: ../SoftwareProperties/SoftwareProperties.py:431
+#: ../SoftwareProperties/SoftwareProperties.py:437
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:472
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -56,11 +56,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:529
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:545
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -139,42 +139,42 @@ msgid "Reading cache"
msgstr ""
#. FIXME: offer to write a new self.sources.list entry
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
#, fuzzy
msgid "Error during update"
msgstr "Feil under fjerning av nøkkel"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -182,48 +182,48 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
#. installing the packages failed, can't be retried
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
"The upgrade aborts now. Your system can be in an unusable state. A recovery "
"is now run (dpkg --configure -a)."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:231
+#: ../DistUpgrade/DistUpgradeControler.py:230
msgid "Could not download the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:232
+#: ../DistUpgrade/DistUpgradeControler.py:231
msgid ""
"The upgrade aborts now. Please check your internet connection or "
"installation media and try again. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:274
+#: ../DistUpgrade/DistUpgradeControler.py:273
msgid "Remove obsolete packages?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:275
+#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Skip This Step"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:275
+#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Remove"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:285
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:286
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
@@ -231,31 +231,31 @@ msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
#. then open the cache (again)
-#: ../DistUpgrade/DistUpgradeControler.py:300
-#: ../DistUpgrade/DistUpgradeControler.py:324
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
#, fuzzy
msgid "Checking package manager"
msgstr "En annen pakkehåndterer kjører"
-#: ../DistUpgrade/DistUpgradeControler.py:316
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:330
+#: ../DistUpgrade/DistUpgradeControler.py:331
#, fuzzy
msgid "Asking for confirmation"
msgstr "Undersøker systemkonfigurasjon"
-#: ../DistUpgrade/DistUpgradeControler.py:334
+#: ../DistUpgrade/DistUpgradeControler.py:335
#, fuzzy
msgid "Upgrading"
msgstr "Oppgradering fullført"
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:346
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
@@ -275,108 +275,113 @@ msgid "Downloading file %li of %li at %s/s"
msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
#. -> longer term, move this code into python-apt
-#: ../DistUpgrade/DistUpgradeViewGtk.py:136
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
#, fuzzy
msgid "Applying changes"
msgstr "Laster ned endringer..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:150
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
#, fuzzy
msgid "The upgrade aborts now. Please report this bug."
msgstr ""
"Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen."
#. self.expander.set_expanded(True)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:163
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
#, python-format
msgid ""
"Replace configuration file\n"
"'%s'?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:262
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:263
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:352
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:358
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:364
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:371
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:375
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:378
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
#. FIXME: this should go into DistUpgradeController
-#: ../DistUpgrade/DistUpgradeViewGtk.py:384
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:385
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
#, fuzzy
msgid "Your system has already been upgraded."
msgstr "Systemet har ødelagte pakker!"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:400
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, fuzzy, python-format
msgid "Remove %s"
msgstr "Detaljer"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:402
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, fuzzy, python-format
msgid "Install %s"
msgstr "_Installer"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:404
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, fuzzy, python-format
msgid "Upgrade %s"
msgstr "Oppgradering fullført"
@@ -417,7 +422,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" 6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
"span>"
msgstr ""
diff --git a/po/update-manager.pot b/po/update-manager.pot
index e69de29b..838cf650 100644
--- a/po/update-manager.pot
+++ b/po/update-manager.pot
@@ -0,0 +1,858 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-04-03 11:03+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+
+#: ../SoftwareProperties/SoftwareProperties.py:110
+#, python-format
+msgid "Every %s days"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:140
+#, python-format
+msgid "After %s days"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:413
+msgid "Import key"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:423
+msgid "Error importing selected file"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:424
+msgid "The selected file may not be a GPG key file or it might be corrupt."
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:436
+msgid "Error removing the key"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:478
+#, python-format
+msgid ""
+"Error scaning the CD\n"
+"\n"
+"%s"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:535
+msgid "Please enter a name for the disc"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:551
+msgid "Please insert a disc in the drive:"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeCache.py:92
+msgid "Broken packages"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeCache.py:93
+msgid ""
+"Your system contains broken packages that couldn't be fixed with this "
+"software. Please fix them first using synaptic or apt-get before proceeding."
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeCache.py:135
+msgid "Can't upgrade required meta-packages"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeCache.py:142
+msgid "A essential package would have to be removed"
+msgstr ""
+
+#. FIXME: change the text to something more useful
+#: ../DistUpgrade/DistUpgradeCache.py:145
+msgid "Could not calculate the upgrade"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeCache.py:146
+msgid ""
+"A unresolvable problem occured while calculating the upgrade. Please report "
+"this as a bug. "
+msgstr ""
+
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
+msgid "Error authenticating some packages"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeCache.py:170
+msgid ""
+"It was not possible to authenticate some packages. This may be a transient "
+"network problem. You may want to try again later. See below for a list of "
+"unauthenticated packages."
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeCache.py:233
+#, python-format
+msgid "Can't install '%s'"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeCache.py:234
+msgid ""
+"It was impossible to install a required package. Please report this as a "
+"bug. "
+msgstr ""
+
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
+msgid "Can't guess meta-package"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeCache.py:242
+msgid ""
+"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
+"desktop package and it was not possible to detect which version of ubuntu "
+"you are runing.\n"
+" Please install one of the packages above first using synaptic or apt-get "
+"before proceeding."
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:42
+msgid "Reading cache"
+msgstr ""
+
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
+msgid "No valid entry found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:107
+msgid ""
+"While scaning your repository information no valid entry for the upgrade was "
+"found.\n"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:124
+msgid "Repository information invalid"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:125
+msgid ""
+"Upgrading the repository information resulted in a invalid file. Please "
+"report this as a bug."
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:170
+msgid "Error during update"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:171
+msgid ""
+"A problem occured during the update. This is usually some sort of network "
+"problem, please check your network connection and retry."
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:190
+msgid "Not enough free disk space"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:191
+#, python-format
+msgid ""
+"The upgrade aborts now. Please free at least %s of disk space. Empty your "
+"trash and remove temporary packages of former installations using 'sudo apt-"
+"get clean'."
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:197
+msgid "Do you want to start the upgrade?"
+msgstr ""
+
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
+msgid "Could not install the upgrades"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:214
+msgid ""
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:230
+msgid "Could not download the upgrades"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:231
+msgid ""
+"The upgrade aborts now. Please check your internet connection or "
+"installation media and try again. "
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
+msgid "Error during commit"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:285
+msgid ""
+"Some problem occured during the clean-up. Please see the below message for "
+"more information. "
+msgstr ""
+
+#. sanity check (check for ubuntu-desktop, brokenCache etc)
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
+msgid "Checking package manager"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:317
+msgid "Updating repository information"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:331
+msgid "Asking for confirmation"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:335
+msgid "Upgrading"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:342
+msgid "Searching for obsolete software"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:347
+msgid "System upgrade is complete."
+msgstr ""
+
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
+#, python-format
+msgid "Please insert '%s' into the drive '%s'"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
+msgid "Download is complete"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#, python-format
+msgid "Downloading file %li of %li at %s/s"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
+#, python-format
+msgid "%s remaining"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
+#, python-format
+msgid "Downloading file %li of %li"
+msgstr ""
+
+#. FIXME: add support for the timeout
+#. of the terminal (to display something useful then)
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+msgid "Applying changes"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
+#, python-format
+msgid "Could not install '%s'"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
+msgid "The upgrade aborts now. Please report this bug."
+msgstr ""
+
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
+msgid "A fatal error occured"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
+msgid ""
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
+#, python-format
+msgid "%s package is going to be removed."
+msgid_plural "%s packages are going to be removed."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
+#, python-format
+msgid "%s new package is going to be installed."
+msgid_plural "%s new packages are going to be installed."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
+#, python-format
+msgid "%s package is going to be upgraded."
+msgid_plural "%s packages are going to be upgraded."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
+#, python-format
+msgid "You have to download a total of %s."
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
+msgid ""
+"The upgrade can take several hours and cannot be canceled at any time later."
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
+msgid "To prevent data loss close all open applications and documents."
+msgstr ""
+
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
+msgid "Could not find any upgrades"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
+msgid "Your system has already been upgraded."
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
+#, python-format
+msgid "Remove %s"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
+#, python-format
+msgid "Install %s"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
+#, python-format
+msgid "Upgrade %s"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeView.py:75
+msgid "Reboot required"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeView.py:76
+msgid ""
+"The upgrade is finished and a reboot is required. Do you want to do this now?"
+msgstr ""
+
+#. testcode to see if the bullets look nice in the dialog
+#. for i in range(4):
+#. view.setStep(i+1)
+#. app.openCache()
+#: ../DistUpgrade/DistUpgrade.glade.h:1
+#: ../data/SoftwarePropertiesDialogs.glade.h:1
+msgid " "
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:2
+msgid ""
+"Cancel the running upgrade?\n"
+"\n"
+"The system could be in an unusable state if you cancel the upgrade. You are "
+"strongly adviced to resume the upgrade."
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:5
+msgid "Restart the system to complete the upgrade"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:6
+msgid "Start the upgrade?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:7
+msgid ""
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:8
+msgid "Cleaning up"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:9
+msgid "Details"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:10
+msgid "Difference between the files"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:11
+msgid "Downloading and installing the upgrades"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:12
+msgid "Modifying the software channels"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:13
+msgid "Preparing the upgrade"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:14
+msgid "Restarting the system"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:15
+msgid "Terminal"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:16
+msgid "Upgrading Ubuntu"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:17
+msgid "_Keep"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:18
+msgid "_Replace"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
+msgid "_Resume Upgrade"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:1
+msgid ""
+"You must check for updates manually\n"
+"\n"
+"Your system does not check for updates automatically. You can configure this "
+"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"."
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:4
+msgid ""
+"Checking for available updates\n"
+"\n"
+"Software updates can correct errors, eliminate security vulnerabilities, and "
+"provide new features to you."
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:7
+msgid "Keep your system up-to-date"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:8
+msgid "Cancel _Download"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:9
+msgid "Changes"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:10
+msgid "Chec_k"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:11
+msgid "Check for available updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
+msgid "Description"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:13
+msgid "Release Notes"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:15
+msgid "Show progress of single files"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:16
+msgid "Software Updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:17
+msgid ""
+"Software updates can correct errors, eliminate security vulnerabilities, and "
+"provide new features to you."
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:18
+msgid "U_pgrade"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:19
+msgid "Upgrade to the latest version of Ubuntu"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:20
+msgid "_Check"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:21
+msgid "_Hide this information in the future"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:22
+msgid "_Install Updates"
+msgstr ""
+
+#: ../data/SoftwareProperties.glade.h:1
+msgid "Channels"
+msgstr ""
+
+#: ../data/SoftwareProperties.glade.h:2
+msgid "Internet updates"
+msgstr ""
+
+#: ../data/SoftwareProperties.glade.h:3
+msgid "Keys"
+msgstr ""
+
+#: ../data/SoftwareProperties.glade.h:4
+msgid "Add _Cdrom"
+msgstr ""
+
+#: ../data/SoftwareProperties.glade.h:5
+msgid "Authentication"
+msgstr ""
+
+#: ../data/SoftwareProperties.glade.h:6
+msgid "D_elete downloaded software files:"
+msgstr ""
+
+#: ../data/SoftwareProperties.glade.h:7
+msgid "Import the public key from a trusted software provider"
+msgstr ""
+
+#: ../data/SoftwareProperties.glade.h:8
+msgid "Installation Media"
+msgstr ""
+
+#: ../data/SoftwareProperties.glade.h:9
+msgid "Internet Updates"
+msgstr ""
+
+#: ../data/SoftwareProperties.glade.h:10
+msgid ""
+"Only security updates from the official Ubuntu servers will be installed "
+"automatically. The software package \"unattended-upgrades\" needs to be "
+"installed therefor"
+msgstr ""
+
+#: ../data/SoftwareProperties.glade.h:11
+msgid "Restore _Defaults"
+msgstr ""
+
+#: ../data/SoftwareProperties.glade.h:12
+msgid "Restore the default keys of your distribution"
+msgstr ""
+
+#: ../data/SoftwareProperties.glade.h:13
+msgid "Software Preferences"
+msgstr ""
+
+#: ../data/SoftwareProperties.glade.h:14
+msgid "_Check for updates automatically:"
+msgstr ""
+
+#: ../data/SoftwareProperties.glade.h:15
+msgid "_Download updates in the background, but do not install them"
+msgstr ""
+
+#: ../data/SoftwareProperties.glade.h:16
+msgid "_Install security updates without confirmation"
+msgstr ""
+
+#: ../data/SoftwarePropertiesDialogs.glade.h:2
+msgid " "
+msgstr ""
+
+#: ../data/SoftwarePropertiesDialogs.glade.h:3
+msgid ""
+"The channel information is out-of-date\n"
+"\n"
+"You have to reload the channel information to install software and updates "
+"from newly added or changed channels. \n"
+"\n"
+"You need a working internet connection to continue."
+msgstr ""
+
+#: ../data/SoftwarePropertiesDialogs.glade.h:8
+msgid "Channel"
+msgstr ""
+
+#: ../data/SoftwarePropertiesDialogs.glade.h:9
+msgid "Comment:"
+msgstr ""
+
+#: ../data/SoftwarePropertiesDialogs.glade.h:10
+msgid "Components:"
+msgstr ""
+
+#: ../data/SoftwarePropertiesDialogs.glade.h:11
+msgid "Distribution:"
+msgstr ""
+
+#: ../data/SoftwarePropertiesDialogs.glade.h:12
+msgid "Sections"
+msgstr ""
+
+#: ../data/SoftwarePropertiesDialogs.glade.h:13
+msgid "Type:"
+msgstr ""
+
+#: ../data/SoftwarePropertiesDialogs.glade.h:14
+msgid "URI:"
+msgstr ""
+
+#: ../data/SoftwarePropertiesDialogs.glade.h:15
+msgid ""
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
+"\n"
+"The APT line contains the type, location and sections of a channel, for "
+"example \"deb http://ftp.debian.org sarge main\"."
+msgstr ""
+
+#: ../data/SoftwarePropertiesDialogs.glade.h:18
+msgid "APT line:"
+msgstr ""
+
+#: ../data/SoftwarePropertiesDialogs.glade.h:19
+msgid "Add Channel"
+msgstr ""
+
+#: ../data/SoftwarePropertiesDialogs.glade.h:20
+msgid ""
+"Binary\n"
+"Source"
+msgstr ""
+
+#: ../data/SoftwarePropertiesDialogs.glade.h:22
+msgid "Edit Channel"
+msgstr ""
+
+#: ../data/SoftwarePropertiesDialogs.glade.h:23
+msgid "Scanning CD-ROM"
+msgstr ""
+
+#: ../data/SoftwarePropertiesDialogs.glade.h:24
+msgid "_Add Channel"
+msgstr ""
+
+#: ../data/SoftwarePropertiesDialogs.glade.h:25
+msgid "_Custom"
+msgstr ""
+
+#: ../data/SoftwarePropertiesDialogs.glade.h:26
+msgid "_Reload"
+msgstr ""
+
+#: ../data/update-manager.desktop.in.h:1
+msgid "Show and install available updates"
+msgstr ""
+
+#: ../data/update-manager.desktop.in.h:2
+msgid "Update Manager"
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:1
+msgid ""
+"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
+msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+msgstr ""
+
+#. Description
+#: ../channels/Ubuntu.info.in:6
+msgid "Ubuntu 6.06 'Dapper Drake'"
+msgstr ""
+
+#. Description
+#: ../channels/Ubuntu.info.in:23
+msgid "Ubuntu 6.06 Security Updates"
+msgstr ""
+
+#. Description
+#: ../channels/Ubuntu.info.in:40
+msgid "Ubuntu 6.06 Updates"
+msgstr ""
+
+#. Description
+#: ../channels/Ubuntu.info.in:57
+msgid "Ubuntu 6.06 Backports"
+msgstr ""
+
+#. Description
+#: ../channels/Ubuntu.info.in:74
+msgid "Ubuntu 5.10 'Breezy Badger'"
+msgstr ""
+
+#. Description
+#: ../channels/Ubuntu.info.in:91
+msgid "Ubuntu 5.10 Security Updates"
+msgstr ""
+
+#. Description
+#: ../channels/Ubuntu.info.in:108
+msgid "Ubuntu 5.10 Updates"
+msgstr ""
+
+#. Description
+#: ../channels/Ubuntu.info.in:125
+msgid "Ubuntu 5.10 Backports"
+msgstr ""
+
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128
+msgid "Officially supported"
+msgstr ""
+
+#. CompDescription
+#: ../channels/Ubuntu.info.in:131
+msgid "Restricted copyright"
+msgstr ""
+
+#. CompDescription
+#: ../channels/Ubuntu.info.in:134
+msgid "Community maintained (Universe)"
+msgstr ""
+
+#. CompDescription
+#: ../channels/Ubuntu.info.in:137
+msgid "Non-free (Multiverse)"
+msgstr ""
+
+#. ChangelogURI
+#: ../channels/Debian.info.in.h:4
+#, no-c-format
+msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+msgstr ""
+
+#. Description
+#: ../channels/Debian.info.in:6
+msgid "Debian 3.1 \"Sarge\""
+msgstr ""
+
+#. BaseURI
+#: ../channels/Debian.info.in:19
+msgid "http://security.debian.org/"
+msgstr ""
+
+#. Description
+#: ../channels/Debian.info.in:20
+msgid "Debian 3.1 \"Sarge\" Security Updates"
+msgstr ""
+
+#. Description
+#: ../channels/Debian.info.in:34
+msgid "Debian \"Etch\" (testing)"
+msgstr ""
+
+#. BaseURI
+#: ../channels/Debian.info.in:47
+msgid "http://http.us.debian.org/debian/"
+msgstr ""
+
+#. Description
+#: ../channels/Debian.info.in:48
+msgid "Debian \"Sid\" (unstable)"
+msgstr ""
+
+#. CompDescription
+#: ../channels/Debian.info.in:51
+msgid "Oficially supported"
+msgstr ""
+
+#. CompDescription
+#: ../channels/Debian.info.in:54
+msgid "DFSG-compatible Software with Non-Free Dependencies"
+msgstr ""
+
+#. CompDescription
+#: ../channels/Debian.info.in:57
+msgid "Non-DFSG-compatible Software"
+msgstr ""
--
cgit v1.2.3
From f6ebff3d202238ae73942212b97096535c63b5e1 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Mon, 3 Apr 2006 16:27:28 +0200
Subject: * DistUpgrade/DistUpgradeViewNonInteractive.py: - fix the
non-interactive confirmChanges() view method
---
DistUpgrade/DistUpgradeView.py | 2 +-
DistUpgrade/DistUpgradeViewNonInteractive.py | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/DistUpgrade/DistUpgradeView.py b/DistUpgrade/DistUpgradeView.py
index 14ac5208..57b94636 100644
--- a/DistUpgrade/DistUpgradeView.py
+++ b/DistUpgrade/DistUpgradeView.py
@@ -54,7 +54,7 @@ class DistUpgradeView(object):
5. Complete
"""
pass
- def confirmChanges(self, summary, changes, downloadSize):
+ def confirmChanges(self, summary, changes, downloadSize, actions=None):
""" display the list of changed packages (apt.Package) and
return if the user confirms them
"""
diff --git a/DistUpgrade/DistUpgradeViewNonInteractive.py b/DistUpgrade/DistUpgradeViewNonInteractive.py
index 7a8fa7eb..dbf38387 100644
--- a/DistUpgrade/DistUpgradeViewNonInteractive.py
+++ b/DistUpgrade/DistUpgradeViewNonInteractive.py
@@ -60,8 +60,8 @@ class DistUpgradeViewNonInteractive(DistUpgradeView):
5. Complete
"""
pass
- def confirmChanges(self, summary, changes, downloadSize):
- DistUpgradeView.confirmChanges(self, summary, changes, downloadSize)
+ def confirmChanges(self, summary, changes, downloadSize, actions=None):
+ DistUpgradeView.confirmChanges(self, summary, changes, downloadSize, actions)
logging.debug("toinstall: '%s'" % self.toInstall)
logging.debug("toupgrade: '%s'" % self.toUpgrade)
logging.debug("toremove: '%s'" % self.toRemove)
--
cgit v1.2.3
From 672afa8a5ebd29d89492cdb36a34cd791a3f4ada Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Mon, 3 Apr 2006 17:49:38 +0200
Subject: * when runing gpg, protect it with try: except:
---
UpdateManager/DistUpgradeFetcher.py | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/UpdateManager/DistUpgradeFetcher.py b/UpdateManager/DistUpgradeFetcher.py
index c6b83994..794566c2 100644
--- a/UpdateManager/DistUpgradeFetcher.py
+++ b/UpdateManager/DistUpgradeFetcher.py
@@ -114,7 +114,11 @@ class DistUpgradeFetcher(object):
proc = gpg.run(['--verify', signature, file],
create_fhs=['status','logger','stderr'])
gpgres = proc.handles['status'].read()
- proc.wait()
+ try:
+ proc.wait()
+ except IOError:
+ # gnupg returned a problem (non-zero exit)
+ return False
if "VALIDSIG" in gpgres:
return True
return False
--
cgit v1.2.3
From de12422fe0c52d11a9bec73aea2f92621302c6ae Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Tue, 4 Apr 2006 14:39:09 +0200
Subject: * added better error reporting for the DistUpgradeFetcher
---
UpdateManager/Common/utils.py | 12 ++++++++++++
UpdateManager/DistUpgradeFetcher.py | 23 +++++++++++++++++------
2 files changed, 29 insertions(+), 6 deletions(-)
diff --git a/UpdateManager/Common/utils.py b/UpdateManager/Common/utils.py
index ffafadfb..17c62212 100644
--- a/UpdateManager/Common/utils.py
+++ b/UpdateManager/Common/utils.py
@@ -1,3 +1,4 @@
+import gtk
def str_to_bool(str):
if str == "0" or str.upper() == "FALSE":
@@ -7,3 +8,14 @@ def str_to_bool(str):
def utf8(str):
return unicode(str, 'latin1').encode('utf-8')
+
+def error(parent, summary, message):
+ d = gtk.MessageDialog(parent=parent,
+ flags=gtk.DIALOG_MODAL,
+ type=gtk.MESSAGE_ERROR,
+ buttons=gtk.BUTTONS_CLOSE)
+ d.set_markup("%s\n\n%s" % (summary, message))
+ d.set_title("")
+ res = d.run()
+ d.destroy()
+ return
diff --git a/UpdateManager/DistUpgradeFetcher.py b/UpdateManager/DistUpgradeFetcher.py
index 794566c2..bfc51f44 100644
--- a/UpdateManager/DistUpgradeFetcher.py
+++ b/UpdateManager/DistUpgradeFetcher.py
@@ -33,7 +33,7 @@ from gettext import gettext as _
import GtkProgress
from ReleaseNotesViewer import ReleaseNotesViewer
-
+from Common.utils import *
class DistUpgradeFetcher(object):
@@ -196,22 +196,33 @@ class DistUpgradeFetcher(object):
if not self.showReleaseNotes():
return
if not self.fetchDistUpgrader():
- print "Fetch failed"
+ error("Failed to fetch",
+ "Fetching the upgrade failed. There may be a network "
+ "problem. ")
return
if not self.extractDistUpgrader():
- print "extract failed"
+ error("Failed to extract",
+ "Extracting the upgrade failed. There may be a problem "
+ "with the network or with the server. ")
+
return
if not self.verifyDistUprader():
- print "verify failed"
+ error("Verfication failed",
+ "Verfing the upgrade failed. There may be a problem "
+ "with the network or with the server. ")
self.cleanup()
return
if not self.authenticate():
- print "authenticate failed"
+ error("Authentication failed",
+ "Authenticating the upgrade failed. There may be a problem "
+ "with the network or with the server. ")
self.cleanup()
return
self.runDistUpgrader()
if __name__ == "__main__":
- d = DistUpgradeFetcher(None)
+ error(None, "summary","message")
+ d = DistUpgradeFetcher(None,None)
print d.authenticate('/tmp/Release','/tmp/Release.gpg')
+
--
cgit v1.2.3
From 4b46ffefe03f0ca2964767bfc02a59288eb56ffa Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Tue, 4 Apr 2006 14:46:14 +0200
Subject: * marked some missing strings with _()
---
UpdateManager/DistUpgradeFetcher.py | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/UpdateManager/DistUpgradeFetcher.py b/UpdateManager/DistUpgradeFetcher.py
index bfc51f44..d81bab11 100644
--- a/UpdateManager/DistUpgradeFetcher.py
+++ b/UpdateManager/DistUpgradeFetcher.py
@@ -196,26 +196,26 @@ class DistUpgradeFetcher(object):
if not self.showReleaseNotes():
return
if not self.fetchDistUpgrader():
- error("Failed to fetch",
- "Fetching the upgrade failed. There may be a network "
- "problem. ")
+ error(_("Failed to fetch"),
+ _("Fetching the upgrade failed. There may be a network "
+ "problem. "))
return
if not self.extractDistUpgrader():
- error("Failed to extract",
- "Extracting the upgrade failed. There may be a problem "
- "with the network or with the server. ")
+ error(_("Failed to extract"),
+ _("Extracting the upgrade failed. There may be a problem "
+ "with the network or with the server. "))
return
if not self.verifyDistUprader():
- error("Verfication failed",
+ error(_("Verfication failed"),
"Verfing the upgrade failed. There may be a problem "
- "with the network or with the server. ")
+ "with the network or with the server. "))
self.cleanup()
return
if not self.authenticate():
- error("Authentication failed",
+ error(_("Authentication failed"),
"Authenticating the upgrade failed. There may be a problem "
- "with the network or with the server. ")
+ "with the network or with the server. "))
self.cleanup()
return
self.runDistUpgrader()
--
cgit v1.2.3
From cfdf56d0896513feaf59e91146feb875f852b4e5 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Tue, 4 Apr 2006 14:57:48 +0200
Subject: * syntax error fix
---
UpdateManager/DistUpgradeFetcher.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/UpdateManager/DistUpgradeFetcher.py b/UpdateManager/DistUpgradeFetcher.py
index d81bab11..e9347f7c 100644
--- a/UpdateManager/DistUpgradeFetcher.py
+++ b/UpdateManager/DistUpgradeFetcher.py
@@ -208,14 +208,14 @@ class DistUpgradeFetcher(object):
return
if not self.verifyDistUprader():
error(_("Verfication failed"),
- "Verfing the upgrade failed. There may be a problem "
- "with the network or with the server. "))
+ _("Verfing the upgrade failed. There may be a problem "
+ "with the network or with the server. "))
self.cleanup()
return
if not self.authenticate():
error(_("Authentication failed"),
- "Authenticating the upgrade failed. There may be a problem "
- "with the network or with the server. "))
+ _("Authenticating the upgrade failed. There may be a problem "
+ "with the network or with the server. "))
self.cleanup()
return
self.runDistUpgrader()
--
cgit v1.2.3
From 07a81be80123030941e9eacc7f3b78f73e9571f2 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Tue, 4 Apr 2006 15:01:00 +0200
Subject: * if we have no release notes, return true from showRelease notes
---
UpdateManager/DistUpgradeFetcher.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/UpdateManager/DistUpgradeFetcher.py b/UpdateManager/DistUpgradeFetcher.py
index e9347f7c..131fd28e 100644
--- a/UpdateManager/DistUpgradeFetcher.py
+++ b/UpdateManager/DistUpgradeFetcher.py
@@ -90,7 +90,7 @@ class DistUpgradeFetcher(object):
# user clicked cancel
if res == gtk.RESPONSE_CANCEL:
return False
- return True
+ return True
def authenticate(self):
if self.new_dist.upgradeToolSig:
--
cgit v1.2.3
From eb706ccd2c2b6458777d26025ac7db1efd1c294c Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Tue, 4 Apr 2006 15:03:23 +0200
Subject: * give a proper parent for the dist-ugprade-fetcher error window
---
UpdateManager/DistUpgradeFetcher.py | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/UpdateManager/DistUpgradeFetcher.py b/UpdateManager/DistUpgradeFetcher.py
index 131fd28e..c4c42e8e 100644
--- a/UpdateManager/DistUpgradeFetcher.py
+++ b/UpdateManager/DistUpgradeFetcher.py
@@ -196,24 +196,28 @@ class DistUpgradeFetcher(object):
if not self.showReleaseNotes():
return
if not self.fetchDistUpgrader():
- error(_("Failed to fetch"),
+ error(self.parent,
+ _("Failed to fetch"),
_("Fetching the upgrade failed. There may be a network "
"problem. "))
return
if not self.extractDistUpgrader():
- error(_("Failed to extract"),
+ error(self.parent,
+ _("Failed to extract"),
_("Extracting the upgrade failed. There may be a problem "
"with the network or with the server. "))
return
if not self.verifyDistUprader():
- error(_("Verfication failed"),
+ error(self.parent,
+ _("Verfication failed"),
_("Verfing the upgrade failed. There may be a problem "
"with the network or with the server. "))
self.cleanup()
return
if not self.authenticate():
- error(_("Authentication failed"),
+ error(self.parent,
+ _("Authentication failed"),
_("Authenticating the upgrade failed. There may be a problem "
"with the network or with the server. "))
self.cleanup()
--
cgit v1.2.3
From 3fa5e46cb1975e47065a584eb1d2e00bf03af651 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Tue, 4 Apr 2006 15:11:01 +0200
Subject: * indent fix
---
UpdateManager/DistUpgradeFetcher.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/UpdateManager/DistUpgradeFetcher.py b/UpdateManager/DistUpgradeFetcher.py
index c4c42e8e..1ddc7bca 100644
--- a/UpdateManager/DistUpgradeFetcher.py
+++ b/UpdateManager/DistUpgradeFetcher.py
@@ -90,7 +90,7 @@ class DistUpgradeFetcher(object):
# user clicked cancel
if res == gtk.RESPONSE_CANCEL:
return False
- return True
+ return True
def authenticate(self):
if self.new_dist.upgradeToolSig:
--
cgit v1.2.3
From 0813eea814baa4f041d3cac07a4a7070cd61cd7c Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Tue, 4 Apr 2006 15:17:22 +0200
Subject: * improved the error reporting (again)
---
UpdateManager/DistUpgradeFetcher.py | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/UpdateManager/DistUpgradeFetcher.py b/UpdateManager/DistUpgradeFetcher.py
index 1ddc7bca..54823795 100644
--- a/UpdateManager/DistUpgradeFetcher.py
+++ b/UpdateManager/DistUpgradeFetcher.py
@@ -116,11 +116,14 @@ class DistUpgradeFetcher(object):
gpgres = proc.handles['status'].read()
try:
proc.wait()
- except IOError:
+ except IOError,e:
# gnupg returned a problem (non-zero exit)
+ print "exception from gpg: %s", e
return False
if "VALIDSIG" in gpgres:
return True
+ print "invalid result from gpg:"
+ print gpgres
return False
def extractDistUpgrader(self):
@@ -196,27 +199,27 @@ class DistUpgradeFetcher(object):
if not self.showReleaseNotes():
return
if not self.fetchDistUpgrader():
- error(self.parent,
+ error(self.window_main,
_("Failed to fetch"),
_("Fetching the upgrade failed. There may be a network "
"problem. "))
return
if not self.extractDistUpgrader():
- error(self.parent,
+ error(self.window_main,
_("Failed to extract"),
_("Extracting the upgrade failed. There may be a problem "
"with the network or with the server. "))
return
if not self.verifyDistUprader():
- error(self.parent,
+ error(self.window_main,
_("Verfication failed"),
_("Verfing the upgrade failed. There may be a problem "
"with the network or with the server. "))
self.cleanup()
return
if not self.authenticate():
- error(self.parent,
+ error(self.window_main,
_("Authentication failed"),
_("Authenticating the upgrade failed. There may be a problem "
"with the network or with the server. "))
--
cgit v1.2.3
From 5f87a4cb3ff6f83519dd2680879e921a58a4b16c Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Tue, 4 Apr 2006 15:31:55 +0200
Subject: * fix the authentication
---
UpdateManager/DistUpgradeFetcher.py | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/UpdateManager/DistUpgradeFetcher.py b/UpdateManager/DistUpgradeFetcher.py
index 54823795..aa51066a 100644
--- a/UpdateManager/DistUpgradeFetcher.py
+++ b/UpdateManager/DistUpgradeFetcher.py
@@ -104,12 +104,16 @@ class DistUpgradeFetcher(object):
# mandatory
return True
- def gpgauthenticate(self, file, signature, keyring='/etc/apt/trusted.gpg'):
+ def gpgauthenticate(self, file, signature,
+ keyring='/etc/apt/trusted.gpg',
+ trustdb='/etc/apt/trustdb.gpg'):
""" authenticated a file against a given signature, if no keyring
is given use the apt default keyring
"""
gpg = GnuPGInterface.GnuPG()
- gpg.options.extra_args = ['--no-default-keyring',
+ gpg.options.extra_args = ['--no-options',
+ '--no-default-keyring',
+ '--trustdb-name',trustdb,
'--keyring', keyring]
proc = gpg.run(['--verify', signature, file],
create_fhs=['status','logger','stderr'])
@@ -118,7 +122,7 @@ class DistUpgradeFetcher(object):
proc.wait()
except IOError,e:
# gnupg returned a problem (non-zero exit)
- print "exception from gpg: %s", e
+ print "exception from gpg: %s" % e
return False
if "VALIDSIG" in gpgres:
return True
--
cgit v1.2.3
From 681625e65d2f2b543da92a42a52f90f2ab3b1ef2 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Tue, 4 Apr 2006 17:02:45 +0200
Subject: * janis fake gconf patch added
---
UpdateManager/UpdateManager.py | 5 ++++-
UpdateManager/fakegconf.py | 24 ++++++++++++++++++++++++
debian/changelog | 2 ++
3 files changed, 30 insertions(+), 1 deletion(-)
create mode 100644 UpdateManager/fakegconf.py
diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py
index bdbfc20f..bad5af88 100644
--- a/UpdateManager/UpdateManager.py
+++ b/UpdateManager/UpdateManager.py
@@ -28,7 +28,10 @@ pygtk.require('2.0')
import gtk
import gtk.gdk
import gtk.glade
-import gconf
+try:
+ import gconf
+except:
+ import fakegconf as gconf
import gobject
import apt
import apt_pkg
diff --git a/UpdateManager/fakegconf.py b/UpdateManager/fakegconf.py
new file mode 100644
index 00000000..fd465fa3
--- /dev/null
+++ b/UpdateManager/fakegconf.py
@@ -0,0 +1,24 @@
+# This is a class which contains stubs for the gconf methods
+# used in Update Manager. When gconf is unavailable it will
+# still work but not retain the user settings.
+
+class FakeGconf:
+
+ def get_bool(self, key):
+ return False
+
+ def set_bool(self, key,value):
+ pass
+
+ def get_pair(self, key, ta = None, tb = None):
+ return [300,300]
+
+ def set_pair(self, key, ta, tb, a, b):
+ pass
+
+VALUE_INT = ""
+
+def client_get_default():
+ return FakeGconf()
+
+
diff --git a/debian/changelog b/debian/changelog
index f5132e2e..6a05035c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,8 @@ update-manager (0.42.2ubuntu10) dapper; urgency=low
* correct dapper version number (#36136)
* keybindings fixed (#36116)
* calc the update before downloading the changelog (#36140)
+ * add a fake gconf interface for xubuntu (nop for normal ubuntu)
+ (Thanks to Jani Monoses for the patch)
--
--
cgit v1.2.3
From da4bb6a0edae19c0dc7b92fb6f5153bbb058d168 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Tue, 4 Apr 2006 21:48:25 +0200
Subject: * added dependency on unattended-upgrades
---
debian/changelog | 8 +++++++-
debian/control | 2 +-
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index 6a05035c..f9b39c53 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+update-manager (0.42.2ubuntu11) dapper; urgency=low
+
+ * debian/control: depend on unattended-upgrades
+
+ -- Michael Vogt Tue, 4 Apr 2006 21:47:05 +0200
+
update-manager (0.42.2ubuntu10) dapper; urgency=low
* update-manger: fix a missing import (#36138)
@@ -8,7 +14,7 @@ update-manager (0.42.2ubuntu10) dapper; urgency=low
* add a fake gconf interface for xubuntu (nop for normal ubuntu)
(Thanks to Jani Monoses for the patch)
- --
+ -- Michael Vogt Tue, 4 Apr 2006 18:17:16 +0200
update-manager (0.42.2ubuntu9) dapper; urgency=low
diff --git a/debian/control b/debian/control
index 8870a031..97f0d3dc 100644
--- a/debian/control
+++ b/debian/control
@@ -7,7 +7,7 @@ Standards-Version: 3.6.1.1
Package: update-manager
Architecture: all
-Depends: ${python:Depends}, ${misc:Depends}, python, python-gnome2, python-glade2, python-apt (>= 0.6.15), synaptic (>= 0.57.8), lsb-release, python-gnupginterface
+Depends: ${python:Depends}, ${misc:Depends}, python, python-gnome2, python-glade2, python-apt (>= 0.6.15), synaptic (>= 0.57.8), lsb-release, python-gnupginterface, unattended-upgrades
Description: GNOME application that manages apt updates
This is the GNOME apt update manager. It checks for updates and lets the user
choose which to install.
--
cgit v1.2.3
From 99e04876f2b3eb1c6d9150ad0ac17ad8fc1f7e97 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Wed, 5 Apr 2006 14:48:32 +0200
Subject: * merged the patch from Jani for fakegconf
---
UpdateManager/fakegconf.py | 61 ++++++++++++++++++++++++++++++++++++++++------
debian/changelog | 7 ++++--
debian/control | 3 ++-
3 files changed, 60 insertions(+), 11 deletions(-)
diff --git a/UpdateManager/fakegconf.py b/UpdateManager/fakegconf.py
index fd465fa3..7e387b56 100644
--- a/UpdateManager/fakegconf.py
+++ b/UpdateManager/fakegconf.py
@@ -1,24 +1,69 @@
-# This is a class which contains stubs for the gconf methods
-# used in Update Manager. When gconf is unavailable it will
-# still work but not retain the user settings.
+# Copyright (c) 2006 Jani Monoses
+
+# This is a class which handles settings when the gconf library
+# is unavailable such as in a non-Gnome environment
+# The configuration is stored in python hash format which is sourced
+# at program start and dumped at exit
+
+import string
+import atexit
+
+CONFIG_FILE="/root/.update-manager-conf"
class FakeGconf:
+
+ def __init__(self):
+ self.config = {}
+ try:
+ #execute python file which contains the dictionary called config
+ exec open (CONFIG_FILE)
+ self.config = config
+ except:
+ pass
+ #only get the 'basename' from the gconf key
+ def keyname(self, key):
+ return string.rsplit(key, '/', 1)[-1]
+
def get_bool(self, key):
- return False
+ key = self.keyname(key)
+ return self.config.setdefault(self.keyname(key), True)
def set_bool(self, key,value):
- pass
+ key = self.keyname(key)
+ self.config[key] = value
+ # FIXME assume type is int for now
def get_pair(self, key, ta = None, tb = None):
- return [300,300]
+ key = self.keyname(key)
+ return self.config.setdefault(self.keyname(key), [400, 500])
+ # FIXME assume type is int for now
def set_pair(self, key, ta, tb, a, b):
- pass
+ key = self.keyname(key)
+ self.config[key] = [a, b]
+
+ #Save current dictionary to config file
+ def save(self):
+ file = open(CONFIG_FILE, "w")
+ data = "config = {"
+ for i in self.config:
+ data += "'"+i+"'" + ":" + str(self.config[i])+",\n"
+ data += "}"
+ file.write(data)
+ file.close()
+
VALUE_INT = ""
+fakegconf = FakeGconf()
+
def client_get_default():
- return FakeGconf()
+ return fakegconf
+
+def fakegconf_atexit():
+ fakegconf.save()
+
+atexit.register(fakegconf_atexit)
diff --git a/debian/changelog b/debian/changelog
index f9b39c53..236841b7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,11 @@
update-manager (0.42.2ubuntu11) dapper; urgency=low
- * debian/control: depend on unattended-upgrades
+ * debian/control:
+ - depend on unattended-upgrades
+ - move python-gnome2 to recommends (we only use gconf from it)
+ * UpdateManager/fakegconf.py: update for xubuntu (thanks to Jani Monoses)
- -- Michael Vogt Tue, 4 Apr 2006 21:47:05 +0200
+ -- Michael Vogt Wed, 5 Apr 2006 14:46:10 +0200
update-manager (0.42.2ubuntu10) dapper; urgency=low
diff --git a/debian/control b/debian/control
index 97f0d3dc..691eba0c 100644
--- a/debian/control
+++ b/debian/control
@@ -7,7 +7,8 @@ Standards-Version: 3.6.1.1
Package: update-manager
Architecture: all
-Depends: ${python:Depends}, ${misc:Depends}, python, python-gnome2, python-glade2, python-apt (>= 0.6.15), synaptic (>= 0.57.8), lsb-release, python-gnupginterface, unattended-upgrades
+Depends: ${python:Depends}, ${misc:Depends}, python, python-glade2, python-apt (>= 0.6.15), synaptic (>= 0.57.8), lsb-release, python-gnupginterface, unattended-upgrades
+Recommends: python-gnome2
Description: GNOME application that manages apt updates
This is the GNOME apt update manager. It checks for updates and lets the user
choose which to install.
--
cgit v1.2.3
From b407ce2b2312e82f98d54657b0ca978b9cad4964 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Wed, 5 Apr 2006 17:44:50 +0200
Subject: * add "--devel-release" as option
---
UpdateManager/MetaRelease.py | 2 +-
UpdateManager/UpdateManager.py | 5 ++++-
update-manager | 14 +++++++++++++-
3 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/UpdateManager/MetaRelease.py b/UpdateManager/MetaRelease.py
index fde705bb..0cfb9f36 100644
--- a/UpdateManager/MetaRelease.py
+++ b/UpdateManager/MetaRelease.py
@@ -44,7 +44,7 @@ class MetaRelease(gobject.GObject):
# some constants
METARELEASE_URI = "http://changelogs.ubuntu.com/meta-release"
- #METARELEASE_URI = "http://people.ubuntu.com/~mvo/dist-upgrader/meta-release-test2"
+ METARELEASE_URI_UNSTABLE = "http://changelogs.ubuntu.com/meta-release-development"
METARELEASE_FILE = "/var/lib/update-manager/meta-release"
__gsignals__ = {
diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py
index bad5af88..93f17a3d 100644
--- a/UpdateManager/UpdateManager.py
+++ b/UpdateManager/UpdateManager.py
@@ -738,8 +738,11 @@ class UpdateManager(SimpleGladeApp):
self.on_button_reload_clicked(None)
- def main(self):
+ def main(self, options):
self.meta = MetaRelease()
+ # the user wants to see the development release
+ if options.devel_release:
+ self.meta.METARELEASE_URI = self.meta.METARELEASE_URI_UNSTABLE
self.meta.connect("new_dist_available",self.new_dist_available)
self.meta.connect("dist_no_longer_supported",self.dist_no_longer_supported)
diff --git a/update-manager b/update-manager
index 04005c74..6c1f3fd0 100644
--- a/update-manager
+++ b/update-manager
@@ -33,7 +33,10 @@ from UpdateManager.UpdateManager import UpdateManager
import gettext
from gettext import gettext as _
+from optparse import OptionParser
+
if __name__ == "__main__":
+ _ = gettext.gettext
APP="update-manager"
DIR="/usr/share/locale"
@@ -43,6 +46,15 @@ if __name__ == "__main__":
gtk.glade.bindtextdomain(APP, DIR)
gtk.glade.textdomain(APP)
+ # Begin parsing of options
+ parser = OptionParser()
+ parser.add_option ("-d", "--devel-release", action="store_true",
+ dest="devel_release", default=False,
+ help="Check if upgrading to the latest devel release "
+ "is possible")
+
+ (options, args) = parser.parse_args()
+
if os.geteuid() != 0:
dialog = gtk.MessageDialog(None, 0, gtk.MESSAGE_ERROR, gtk.BUTTONS_OK,
_("You need to be root to run this program"))
@@ -53,4 +65,4 @@ if __name__ == "__main__":
data_dir="/usr/share/update-manager/"
#data_dir="/tmp/xxx/share/update-manager/"
app = UpdateManager(data_dir)
- app.main()
+ app.main(options)
--
cgit v1.2.3
From ee4064d963324eb16fb4b139737cb919cdb7bda4 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Fri, 7 Apr 2006 21:25:59 +0200
Subject: * typo fix * make update-po
---
channels/Debian.info.in | 8 +-
debian/changelog | 6 +
po/bg.po | 376 +++++++++++++++++++--------------
po/br.po | 282 +++++++++++++++----------
po/cs.po | 336 ++++++++++++++++++-----------
po/da.po | 284 +++++++++++++++----------
po/de.po | 422 ++++++++++++++++++++++---------------
po/el.po | 354 +++++++++++++++++++------------
po/en_CA.po | 392 ++++++++++++++++++++--------------
po/en_GB.po | 381 +++++++++++++++++++--------------
po/es.po | 439 ++++++++++++++++++++++----------------
po/fi.po | 470 ++++++++++++++++++++++++-----------------
po/fr.po | 429 ++++++++++++++++++++++---------------
po/gl.po | 384 ++++++++++++++++++++--------------
po/he.po | 358 ++++++++++++++++++-------------
po/hu.po | 414 +++++++++++++++++++++---------------
po/it.po | 404 +++++++++++++++++++++--------------
po/ja.po | 423 ++++++++++++++++++++++---------------
po/lt.po | 345 ++++++++++++++++++------------
po/mk.po | 371 +++++++++++++++++++-------------
po/nb.po | 385 +++++++++++++++++++++-------------
po/ne.po | 421 +++++++++++++++++++++----------------
po/nl.po | 280 +++++++++++++++----------
po/no.po | 18 +-
po/pa.po | 303 ++++++++++++++++-----------
po/pl.po | 437 ++++++++++++++++++++++----------------
po/pt.po | 349 +++++++++++++++++++------------
po/pt_BR.po | 435 ++++++++++++++++++++++----------------
po/ro.po | 357 ++++++++++++++++++-------------
po/rw.po | 346 +++++++++++++++++-------------
po/sk.po | 287 +++++++++++++++----------
po/sv.po | 545 ++++++++++++++++++++++++++++--------------------
po/uk.po | 382 +++++++++++++++++++--------------
po/update-manager.pot | 13 +-
po/vi.po | 374 +++++++++++++++++++--------------
po/xh.po | 296 ++++++++++++++++----------
po/zh_CN.po | 368 ++++++++++++++++++++------------
po/zh_HK.po | 368 +++++++++++++++++++-------------
po/zh_TW.po | 365 +++++++++++++++++++-------------
39 files changed, 7951 insertions(+), 5256 deletions(-)
diff --git a/channels/Debian.info.in b/channels/Debian.info.in
index 7b19c7d4..ea2d1e53 100644
--- a/channels/Debian.info.in
+++ b/channels/Debian.info.in
@@ -6,7 +6,7 @@ _BaseURI: http://http.us.debian.org/debian/
_Description: Debian 3.1 "Sarge"
Component: main
Enabled: 1
-_CompDescription: Oficially supported
+_CompDescription: Officially supported
Component: contrib
Enabled: 0
_CompDescription: DFSG-compatible Software with Non-Free Dependencies
@@ -20,7 +20,7 @@ _BaseURI: http://security.debian.org/
_Description: Debian 3.1 "Sarge" Security Updates
Component: main
Enabled: 1
-_CompDescription: Oficially supported
+_CompDescription: Officially supported
Component: contrib
Enabled: 0
_CompDescription: DFSG-compatible Software with Non-Free Dependencies
@@ -34,7 +34,7 @@ _BaseURI: http://http.us.debian.org/debian/
_Description: Debian "Etch" (testing)
Component: main
Enabled: 1
-_CompDescription: Oficially supported
+_CompDescription: Officially supported
Component: contrib
Enabled: 0
_CompDescription: DFSG-compatible Software with Non-Free Dependencies
@@ -48,7 +48,7 @@ _BaseURI: http://http.us.debian.org/debian/
_Description: Debian "Sid" (unstable)
Component: main
Enabled: 1
-_CompDescription: Oficially supported
+_CompDescription: Officially supported
Component: contrib
Enabled: 0
_CompDescription: DFSG-compatible Software with Non-Free Dependencies
diff --git a/debian/changelog b/debian/changelog
index 236841b7..ea48e906 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+update-manager (0.42.2ubuntu12) dapper; urgency=low
+
+ * channels/*.in: typo fix
+
+ --
+
update-manager (0.42.2ubuntu11) dapper; urgency=low
* debian/control:
diff --git a/po/bg.po b/po/bg.po
index c75f220f..873e8737 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-23 00:18+0000\n"
"Last-Translator: Rostislav Raykov \n"
"Language-Team: Bulgarian \n"
@@ -17,40 +17,39 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Грешка при внасяне на избрания файл"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "Избраният файл или не е GPG файл или е повреден."
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Грешка при премахване на ключа"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"Ключа, който сте избрали, не може да бъде премахнат. Докладвайте това като "
"грешка."
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -58,11 +57,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -84,6 +83,7 @@ msgstr ""
msgid "A essential package would have to be removed"
msgstr ""
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr ""
@@ -97,23 +97,24 @@ msgstr ""
"Ключа, който сте избрали, не може да бъде премахнат. Докладвайте това като "
"грешка. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
#, fuzzy
msgid ""
"It was impossible to install a required package. Please report this as a "
@@ -122,11 +123,12 @@ msgstr ""
"Ключа, който сте избрали, не може да бъде премахнат. Докладвайте това като "
"грешка. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -139,42 +141,43 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
#, fuzzy
msgid "Error during update"
msgstr "Грешка при премахване на ключа"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -182,18 +185,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -206,164 +210,189 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Remove"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
#, fuzzy
msgid "Checking package manager"
msgstr "Друга програма за управление на пакетите е стартирана."
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
#, fuzzy
msgid "Upgrading"
msgstr "Обновлението е завършено"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
#, fuzzy
-msgid "Installing updates"
-msgstr "Инсталиране на обновленията..."
+msgid "Applying changes"
+msgstr "Сваляне на промените..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
#, fuzzy
msgid "The upgrade aborts now. Please report this bug."
msgstr ""
"Ключа, който сте избрали, не може да бъде премахнат. Докладвайте това като "
"грешка."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
+#, python-format
msgid "Remove %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
+#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
+#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -371,6 +400,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -394,8 +424,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -408,38 +438,51 @@ msgid "Details"
msgstr "Допълнителна информация"
#: ../DistUpgrade/DistUpgrade.glade.h:10
-msgid "Downloading and installing the upgrades"
+msgid "Difference between the files"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:11
-msgid "Modifying the software channels"
+msgid "Downloading and installing the upgrades"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:12
-msgid "Preparing the upgrade"
+msgid "Modifying the software channels"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:13
-msgid "Restarting the system"
+msgid "Preparing the upgrade"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:14
-msgid "Terminal"
+msgid "Restarting the system"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:15
-msgid "Upgrading Ubuntu"
+msgid "Terminal"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:16
-msgid "_Report Bug"
+msgid "Upgrading Ubuntu"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:17
-msgid "_Restart Now"
+msgid "_Keep"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "Презареждане"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr ""
@@ -453,7 +496,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -472,53 +515,56 @@ msgid "Changes"
msgstr "Промени"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
-msgid "Check for available updates"
-msgstr "Проверка за обновления..."
+msgid "Chec_k"
+msgstr ""
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Описание"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Обновления на софтуера"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr ""
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
msgstr "Инсталиране на обновленията..."
@@ -590,7 +636,7 @@ msgid "_Check for updates automatically:"
msgstr "Проверка за обновления на всеки"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -621,12 +667,13 @@ msgid "Comment:"
msgstr "Коментар:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Дистрибуция:"
+#, fuzzy
+msgid "Components:"
+msgstr "Компоненти"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Раздели:"
+msgid "Distribution:"
+msgstr "Дистрибуция:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
#, fuzzy
@@ -644,14 +691,14 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
#, fuzzy
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
-"Добавете пълния ред на хранилището за APT, което искате да "
-"добавите\n"
+"Добавете пълния ред на хранилището за APT, което искате да добавите"
+"b>\n"
"\n"
"APT редът съдържа вида, местонахождението и съдържанието на хранилището. "
"Например „deb http://ftp.debian.org sarge main“. Може да откриете "
@@ -683,9 +730,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -733,111 +778,143 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
#, fuzzy
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 5.04 обновления"
+#. Description
#: ../channels/Ubuntu.info.in:23
#, fuzzy
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Ubuntu 5.04 обновления по сигурността"
+#. Description
#: ../channels/Ubuntu.info.in:40
#, fuzzy
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr "Ubuntu 5.10 обновления"
+#. Description
#: ../channels/Ubuntu.info.in:57
#, fuzzy
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr "Ubuntu 5.10 обновления"
+#. Description
#: ../channels/Ubuntu.info.in:74
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "CD с Ubuntu 5.10 „Breezy Badger“"
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 обновления по сигурността"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 обновления"
+#. Description
#: ../channels/Ubuntu.info.in:125
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 обновления"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
#, fuzzy
msgid "Officially supported"
msgstr "Официално поддържан"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Ограничен от правата"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Поддържан от обществото (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Несвободен (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 „Sarge“"
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
#, fuzzy
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Debian Stable обновления по сигурността"
+#. Description
#: ../channels/Debian.info.in:34
#, fuzzy
msgid "Debian \"Etch\" (testing)"
msgstr "Debian Testing"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
#, fuzzy
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian Non-US (Unstable)"
-#: ../channels/Debian.info.in:51
-#, fuzzy
-msgid "Oficially supported"
-msgstr "Официално поддържан"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr ""
+#, fuzzy
+#~ msgid "Installing updates"
+#~ msgstr "Инсталиране на обновленията..."
+
+#, fuzzy
+#~ msgid "Check for available updates"
+#~ msgstr "Проверка за обновления..."
+
+#~ msgid "Sections:"
+#~ msgstr "Раздели:"
+
+#, fuzzy
+#~ msgid "Oficially supported"
+#~ msgstr "Официално поддържан"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Презареждане от сървъра на информацията за пакетите."
@@ -878,9 +955,6 @@ msgstr ""
#~ msgid "day(s)"
#~ msgstr "ден/дни"
-#~ msgid "Components"
-#~ msgstr "Компоненти"
-
#~ msgid "Repository"
#~ msgstr "Хранилище"
@@ -898,16 +972,16 @@ msgstr ""
#~ msgstr ""
#~ "Ключове за идентификация\n"
#~ "\n"
-#~ "Може да добавяте и премахвате ключове за идентификация през този прозорец. "
-#~ "Ключът прави възможна проверката на цялостта на софтуера, който сваляте от "
-#~ "интернет."
+#~ "Може да добавяте и премахвате ключове за идентификация през този "
+#~ "прозорец. Ключът прави възможна проверката на цялостта на софтуера, който "
+#~ "сваляте от интернет."
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
-#~ "Добавяне на нов ключов файл за доверените вериги от ключове. Уверете се, че "
-#~ "сте получили ключа по сигурен канал и че можете да се доверите на "
+#~ "Добавяне на нов ключов файл за доверените вериги от ключове. Уверете се, "
+#~ "че сте получили ключа по сигурен канал и че можете да се доверите на "
#~ "собственика. "
#~ msgid "Add repository..."
@@ -935,8 +1009,8 @@ msgstr ""
#~ msgstr "Максимален размер в Мб:"
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
#~ "Възвръщане на стандартните ключове идващи с дистрибуцията. Това няма да "
#~ "промени потребителските инсталирани ключове."
@@ -968,13 +1042,13 @@ msgstr ""
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Налични обновления\n"
#~ "\n"
-#~ "Следните пакети могат да бъдат обновени. Може да ги обновите като натиснете "
-#~ "бутона „Инсталиране“."
+#~ "Следните пакети могат да бъдат обновени. Може да ги обновите като "
+#~ "натиснете бутона „Инсталиране“."
#~ msgid "Cancel downloading the changelog"
#~ msgstr "Отказ на свалянето на дневника на промените"
@@ -1063,9 +1137,6 @@ msgstr ""
#~ msgid "Version %s: \n"
#~ msgstr "Версия %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "Сваляне на промените..."
-
#~ msgid "There are no updated packages"
#~ msgstr "Няма пакети за обновяване"
@@ -1080,7 +1151,8 @@ msgstr ""
#~ msgstr[1] "Избрахте всички %s пакета за обновяване, с общ размер %s"
#~ msgid "You have selected %s out of %s updated package, size %s"
-#~ msgid_plural "You have selected %s out of %s updated packages, total size %s"
+#~ msgid_plural ""
+#~ "You have selected %s out of %s updated packages, total size %s"
#~ msgstr[0] "Избрахте %s от %s пакет за обновяване, с размер %s"
#~ msgstr[1] "Избрахте %s от %s пакета за обновяване, с общ размер %s"
@@ -1088,11 +1160,11 @@ msgstr ""
#~ msgstr "Обновленията се прилагат."
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
-#~ "Може да стартирате само една програма за управление на пакетите. Затворете "
-#~ "другата програма първо."
+#~ "Може да стартирате само една програма за управление на пакетите. "
+#~ "Затворете другата програма първо."
#~ msgid "Updating package list..."
#~ msgstr "Обновяване на списъка с пакетите..."
@@ -1108,22 +1180,22 @@ msgstr ""
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
-#~ "Обновете до новата версия на Ubuntu Linux. За версията, която имате ще бъдат "
-#~ "спрени поправките по сигурността и други критични обновления. Вижте "
+#~ "Обновете до новата версия на Ubuntu Linux. За версията, която имате ще "
+#~ "бъдат спрени поправките по сигурността и други критични обновления. Вижте "
#~ "http://www.ubuntulinux.org за повече информация."
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "Има нова версия на Ubuntu!"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
-#~ "Излезнала е нова версия с кодовото име „%s“. Вижте "
-#~ "http://www.ubuntulinux.org за информация по обновяването."
+#~ "Излезнала е нова версия с кодовото име „%s“. Вижте http://www.ubuntulinux."
+#~ "org за информация по обновяването."
#~ msgid "Never show this message again"
#~ msgstr "Без да се показва това съобщение отново"
@@ -1136,4 +1208,4 @@ msgstr ""
#~ "connection."
#~ msgstr ""
#~ "Неуспех при сваляне на промените. Проверете дали има активна връзка към "
-#~ "интернет."
\ No newline at end of file
+#~ "интернет."
diff --git a/po/br.po b/po/br.po
index 2d2def2c..8b561b8c 100644
--- a/po/br.po
+++ b/po/br.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
-"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Breton
\n"
@@ -17,38 +17,37 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -56,11 +55,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -82,6 +81,7 @@ msgstr ""
msgid "A essential package would have to be removed"
msgstr ""
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr ""
@@ -92,33 +92,35 @@ msgid ""
"this as a bug. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -131,41 +133,42 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -173,18 +176,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -197,158 +201,183 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Remove"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+msgid "Applying changes"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -356,6 +385,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -379,8 +409,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -392,38 +422,50 @@ msgid "Details"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:10
-msgid "Downloading and installing the upgrades"
+msgid "Difference between the files"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:11
-msgid "Modifying the software channels"
+msgid "Downloading and installing the upgrades"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:12
-msgid "Preparing the upgrade"
+msgid "Modifying the software channels"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:13
-msgid "Restarting the system"
+msgid "Preparing the upgrade"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:14
-msgid "Terminal"
+msgid "Restarting the system"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:15
-msgid "Upgrading Ubuntu"
+msgid "Terminal"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:16
-msgid "_Report Bug"
+msgid "Upgrading Ubuntu"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:17
-msgid "_Restart Now"
+msgid "_Keep"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:18
+msgid "_Replace"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr ""
@@ -437,7 +479,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -456,52 +498,56 @@ msgid "Changes"
msgstr ""
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
+msgid "Chec_k"
msgstr ""
#: ../data/UpdateManager.glade.h:11
-msgid "Description"
+msgid "Check the software channels for new updates"
msgstr ""
#: ../data/UpdateManager.glade.h:12
-msgid "Release Notes"
+msgid "Description"
msgstr ""
#: ../data/UpdateManager.glade.h:13
-msgid "Show details"
+msgid "Release Notes"
msgstr ""
#: ../data/UpdateManager.glade.h:14
-msgid "Show progress of single files"
+msgid "Show details"
msgstr ""
#: ../data/UpdateManager.glade.h:15
-msgid "Software Updates"
+msgid "Show progress of single files"
msgstr ""
#: ../data/UpdateManager.glade.h:16
+msgid "Software Updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr ""
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
msgstr ""
@@ -565,7 +611,7 @@ msgid "_Check for updates automatically:"
msgstr ""
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -595,11 +641,11 @@ msgid "Comment:"
msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
+msgid "Components:"
msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
+msgid "Distribution:"
msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:12
@@ -616,8 +662,8 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
@@ -647,9 +693,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -696,96 +740,114 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr ""
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr ""
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr ""
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr ""
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
-msgstr ""
\ No newline at end of file
+msgstr ""
diff --git a/po/cs.po b/po/cs.po
index 6008dd87..ecfe543d 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,50 +7,49 @@
msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
-"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-26 19:43+0000\n"
"Last-Translator: Texis \n"
"Language-Team: Czech \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
-"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr "Každých %s dní"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "Po %s dnech"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr "Importovat klíč"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Chyba při importování vybraného souboru"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "Vybraný soubor nemusí obsahovat GPG klíč nebo může být porušen."
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Chyba při odstraňování klíče"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"Vybraný klíč nemohl být odstraněn. Prosim nahlašte tento problém jako chybu"
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -61,11 +60,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "Prosím zadejte jméno disku"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr "Prosím vložte disk do mechaniky:"
@@ -89,6 +88,7 @@ msgstr "Nemohu upgradovat požadované meta-balíky"
msgid "A essential package would have to be removed"
msgstr "Základní balík by musel být odstraněn"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr "Nemohu vypočítat upgrade"
@@ -101,11 +101,12 @@ msgstr ""
"Při výpočtu upgradu nastal neřešitelný problém. Prosím oznamte to jako "
"chybu. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr "Chyba při ověření některých balíků"
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
@@ -115,23 +116,24 @@ msgstr ""
"problémem v síti. Možná to budete chtít zkusit později. Níže je uveden "
"seznam neověřených balíků."
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "Nemohu nainstalovat '%s'"
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr ""
"Nebylo možné nainstalovat požadovaný balík. Prosím oznamte to jako chybu. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr "Nemohu odhadnout meta-balík"
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -148,11 +150,12 @@ msgstr ""
msgid "Reading cache"
msgstr "Probíhá čtení cache"
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr "Nenalezena žádná platná položka"
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
@@ -160,11 +163,11 @@ msgstr ""
"Během prozkoumávání vašich zdrojů nebyla nalezený žádná platná položka pro "
"upgrade.\n"
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr "Neplatná informace zdroje"
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
@@ -172,11 +175,11 @@ msgstr ""
"Upgrade informací o úložišti vrátil neplatný soubor. Prosím oznamte to jako "
"chybu."
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr "Chyba během aktualizace"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
@@ -184,11 +187,11 @@ msgstr ""
"Nastala chyba během aktualizace. Toto je obvykle způsobeno chybou síťového "
"připojení. Prosím zkontrolujte své připojení a zkuste to znovu."
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr "Nedostatek volného místa na disku"
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -198,18 +201,20 @@ msgstr ""
"Upgrade byl předčasně ukončen. Prosím uvolněte alespoň %s místa na disku. "
"Vyprázdněte koš a odstraňte"
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr "Chcete spustit upgrade?"
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr "Nelze nainstalovat upgrady"
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
+#, fuzzy
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
"Upgrade byl předčasně ukončen. Váš systém může být v nepoužitelném stavu. "
"Zkuste ho prosím opravit pomocí 'sudo apt-get install -f' nebo Synaptic."
@@ -226,15 +231,24 @@ msgstr ""
"Upgrade byl předčasně ukončen. Prosím zkontrolujte si připojení k internetu "
"nebo instalační médium a zkuste to znovu. "
-#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+#: ../DistUpgrade/DistUpgradeControler.py:273
+#, fuzzy
+msgid "Remove obsolete packages?"
msgstr "Odstranit zastaralé balíky?"
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr "Chyba při zaznamenávání"
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
@@ -243,83 +257,99 @@ msgstr ""
"prohléhněte níže uvedenou zprávu. "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr "Kontroluje se manažer balíků"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr "Aktualizují se informace o úložišti"
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr "Požaduje se potvrzení"
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr "Probíhá upgrade"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr "Vyhledáván zastaralý software"
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr "Upgrade systému je dokončen."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr "Prosím vložte '%s' do mechaniky '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr "Stahování bylo dokončeno"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr "Stahuji soubor %li z %li rychlostí %s/s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr "%s zbývá"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
-#, python-format
-msgid "Downloading file %li of %li at unknown speed"
-msgstr "Stahuji soubor %li z %li neznámou rychlostí"
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
+#, fuzzy, python-format
+msgid "Downloading file %li of %li"
+msgstr "Stahuji soubor %li z %li rychlostí %s/s"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
-msgstr "Instaluji aktualizace"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+msgid "Applying changes"
+msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr "Nelze nainstalovat '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr "Upgrade byl předčasně ukončen. Prosím oznamte to jako chybu"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr "Nastala fatální chyba"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
"Prosím oznamte to jako chybu a do zprávy připojte soubory ~/dist-upgrade.log "
"a ~/dist-upgrade-apt.log. Upgrade byl předčasně ukončen. "
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
@@ -327,7 +357,7 @@ msgstr[0] "%s balík bude odstraněn."
msgstr[1] "%s balíky budou odstraněny."
msgstr[2] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
@@ -335,7 +365,7 @@ msgstr[0] "%s nový balík bude nainstalován."
msgstr[1] "%s nové balíky budou nainstalovány."
msgstr[2] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
@@ -343,48 +373,49 @@ msgstr[0] "%s balík bude upgradován."
msgstr[1] "%s balíky budou upgradovány."
msgstr[2] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr "Bude staženo celkem %s."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr "Upgrade může trvat několik hodin a nesmí být později přerušen."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr "Pro zamezení ztráty dat, uzavřete všechny aplikace a dokumenty."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr "Žádné upgrady nebyly nalezeny."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr "Váš systém byl již upgradován."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr "Odstranit %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr "Nainstalovat %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr "Upgradovat %s"
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr "Je třeba restartovat"
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -393,6 +424,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -419,9 +451,10 @@ msgid "Start the upgrade?"
msgstr "Spustit upgrade?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
+#, fuzzy
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
"Upgraduje se na Ubuntu \"Dapper\" "
"6.04"
@@ -435,38 +468,51 @@ msgid "Details"
msgstr "Detaily"
#: ../DistUpgrade/DistUpgrade.glade.h:10
+msgid "Difference between the files"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
msgstr "Stahují a instalují se upgrady"
-#: ../DistUpgrade/DistUpgrade.glade.h:11
+#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
msgstr "Modifikují se programové kanály."
-#: ../DistUpgrade/DistUpgrade.glade.h:12
+#: ../DistUpgrade/DistUpgrade.glade.h:13
msgid "Preparing the upgrade"
msgstr "Připravuje se upgrade"
-#: ../DistUpgrade/DistUpgrade.glade.h:13
+#: ../DistUpgrade/DistUpgrade.glade.h:14
msgid "Restarting the system"
msgstr "Systém se restartuje"
-#: ../DistUpgrade/DistUpgrade.glade.h:14
+#: ../DistUpgrade/DistUpgrade.glade.h:15
msgid "Terminal"
msgstr "Terminál"
-#: ../DistUpgrade/DistUpgrade.glade.h:15
+#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
msgstr "Upgraduje se Ubuntu"
-#: ../DistUpgrade/DistUpgrade.glade.h:16
+#: ../DistUpgrade/DistUpgrade.glade.h:17
+msgid "_Keep"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "_Obnovit"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
msgstr "_Oznámit chybu"
-#: ../DistUpgrade/DistUpgrade.glade.h:17
+#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
msgstr "_Restartovat nyní"
-#: ../DistUpgrade/DistUpgrade.glade.h:18
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr "_Pokračovat v upgradu"
@@ -483,8 +529,9 @@ msgstr ""
"v \"Systém\" -> \"Správa\" -> \"Vlastnosti Software\""
#: ../data/UpdateManager.glade.h:4
+#, fuzzy
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -507,30 +554,35 @@ msgid "Changes"
msgstr "Změny"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
-msgstr "Zkontrolovat dostupné aktualizace"
+#, fuzzy
+msgid "Chec_k"
+msgstr "_Zkontrolovat"
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Popis"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr "Poznámky k vydáni"
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr "Zobrazit detaily"
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Zobrazit průběh stahování jednotlivých souborů"
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Aktualizace softwaru"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -538,23 +590,23 @@ msgstr ""
"Aktualizace softwaru může opravit chyby, eliminovat bezpečnostní rizika a "
"poskytnout Vám nové možnosti."
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr "U_pgrade"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr "Upgradovat na poslední verzi Ubuntu"
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr "_Zkontrolovat"
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr "_Nezobrazovat příště tyto informace"
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
msgstr "Na_instalovat Aktualizace"
@@ -620,7 +672,8 @@ msgid "_Check for updates automatically:"
msgstr "_Zkontrolovat aktualizace automaticky"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+#, fuzzy
+msgid "_Download updates in the background, but do not install them"
msgstr "_Stáhnout aktualizace na pozadí, ale neinstalovat je."
#: ../data/SoftwareProperties.glade.h:16
@@ -656,12 +709,13 @@ msgid "Comment:"
msgstr "Komentář:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Distribuce:"
+#, fuzzy
+msgid "Components:"
+msgstr "Komentář:"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Sekce:"
+msgid "Distribution:"
+msgstr "Distribuce:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
msgid "Sections"
@@ -677,16 +731,16 @@ msgstr "Adresa:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
"Zadejt kompletní APT cestu ke zdroji, který chcete přidat\n"
"\n"
-"APT cesta obsahuje typ, umístění a sekci zdroje, např. \"deb "
-"http://ftp.debian.org sarge main\"."
+"APT cesta obsahuje typ, umístění a sekci zdroje, např. \"deb http://ftp."
+"debian.org sarge main\"."
#: ../data/SoftwarePropertiesDialogs.glade.h:18
msgid "APT line:"
@@ -713,11 +767,9 @@ msgid "Scanning CD-ROM"
msgstr "Prohledávám CD-ROM"
#: ../data/SoftwarePropertiesDialogs.glade.h:24
+#, fuzzy
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] "Přidat _Zdroj"
-msgstr[1] "Přidat _Zdroje"
-msgstr[2] ""
+msgstr "Přidat _Zdroj"
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -767,97 +819,133 @@ msgstr ""
msgid "The window size"
msgstr "Velikost okna"
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
-msgstr ""
-"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+#, fuzzy
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 6.04 'Dapper Drake'"
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Ubuntu 6.04 Bezpečnostní Aktualizace"
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Updates"
msgstr "Ubuntu 6.04 Aktualizace"
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+#, fuzzy
+msgid "Ubuntu 6.06 Backports"
msgstr "Ubuntu 6.04 Backports"
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 Bezpečnostní Aktualizace"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 Aktualizace"
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Backports"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr "Oficiálně podporováno"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Omezeno copyrightem"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Udržováno komunitou (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr ""
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 \"Sarge\""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr "http://security.debian.org/"
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Debian 3.1 \"Sarge\" Bezpoečnostní Aktualizace"
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr "Debian \"Etch\" (testing)"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr "http://http.us.debian.org/debian/"
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian \"Sid\" (unstable)"
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr "Oficiálně podporované"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
-msgstr "Žádný DFSG kompatibilní Software"
\ No newline at end of file
+msgstr "Žádný DFSG kompatibilní Software"
+
+#~ msgid "Downloading file %li of %li at unknown speed"
+#~ msgstr "Stahuji soubor %li z %li neznámou rychlostí"
+
+#~ msgid "Installing updates"
+#~ msgstr "Instaluji aktualizace"
+
+#~ msgid "Check for available updates"
+#~ msgstr "Zkontrolovat dostupné aktualizace"
+
+#~ msgid "Sections:"
+#~ msgstr "Sekce:"
+
+#~ msgid "Oficially supported"
+#~ msgstr "Oficiálně podporované"
diff --git a/po/da.po b/po/da.po
index 757781ac..522cb919 100644
--- a/po/da.po
+++ b/po/da.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
-"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-31 07:38+0000\n"
"Last-Translator: Lennart Hansen \n"
"Language-Team: Danish \n"
@@ -17,41 +17,40 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
-#, fuzzy
+#: ../SoftwareProperties/SoftwareProperties.py:110
+#, fuzzy, python-format
msgid "Every %s days"
msgstr "Hver %s. dag"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "Efter %s dag(e)"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr "Importer nøgle"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Fejl under importering af den valgte fil"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
"Den valgte fil lader ikke til at være en GPG nøgle fil eller er korrupt"
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Fejl ved fjernelse af nøgle"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"Den valgte nøgle kunne ikke fjernes. Rapporter venligst denne fejl som en "
"bug."
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -62,11 +61,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "Indtast venligst et navn for disken"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr "Indtast venligst en disk i drevet:"
@@ -90,6 +89,7 @@ msgstr "Kan ikke opgradere krævet meta-pakke"
msgid "A essential package would have to be removed"
msgstr "En system kritisk pakke ville have blevet fjernet"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
#, fuzzy
msgid "Could not calculate the upgrade"
@@ -104,12 +104,13 @@ msgstr ""
"Der er forkommet et uløseligt problem imens beregning af upgraderings tid. "
"Raporter venligst denne fejl. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
#, fuzzy
msgid "Error authenticating some packages"
msgstr "Fejl ved validering af nogle pakker"
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
#, fuzzy
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
@@ -120,12 +121,12 @@ msgstr ""
"Netværks problemer. Det anbefales du prøver igen senere. Se længere nede for "
"en liste over pakker som ikke kunne valideres."
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "Kan ikke installere '%s'"
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
#, fuzzy
msgid ""
"It was impossible to install a required package. Please report this as a "
@@ -134,12 +135,13 @@ msgstr ""
"Det var umuligt at installere en pakke som var krævet. Venligst raporter "
"denne hændelse som en fejl. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
#, fuzzy
msgid "Can't guess meta-package"
msgstr "Kan ikke gætte meta-pakke"
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -152,41 +154,42 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr "Ikke nok frit disk plads"
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -194,19 +197,20 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr "Vil du starte opgraderingen?"
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
#, fuzzy
msgid "Could not install the upgrades"
msgstr "Kan ikke installere opgraderingerne"
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -219,158 +223,183 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Skip This Step"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+msgid "Applying changes"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -378,6 +407,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -401,8 +431,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -414,38 +444,50 @@ msgid "Details"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:10
-msgid "Downloading and installing the upgrades"
+msgid "Difference between the files"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:11
-msgid "Modifying the software channels"
+msgid "Downloading and installing the upgrades"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:12
-msgid "Preparing the upgrade"
+msgid "Modifying the software channels"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:13
-msgid "Restarting the system"
+msgid "Preparing the upgrade"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:14
-msgid "Terminal"
+msgid "Restarting the system"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:15
-msgid "Upgrading Ubuntu"
+msgid "Terminal"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:16
-msgid "_Report Bug"
+msgid "Upgrading Ubuntu"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:17
-msgid "_Restart Now"
+msgid "_Keep"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:18
+msgid "_Replace"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr ""
@@ -459,7 +501,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -478,52 +520,56 @@ msgid "Changes"
msgstr ""
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
+msgid "Chec_k"
msgstr ""
#: ../data/UpdateManager.glade.h:11
-msgid "Description"
+msgid "Check the software channels for new updates"
msgstr ""
#: ../data/UpdateManager.glade.h:12
-msgid "Release Notes"
+msgid "Description"
msgstr ""
#: ../data/UpdateManager.glade.h:13
-msgid "Show details"
+msgid "Release Notes"
msgstr ""
#: ../data/UpdateManager.glade.h:14
-msgid "Show progress of single files"
+msgid "Show details"
msgstr ""
#: ../data/UpdateManager.glade.h:15
-msgid "Software Updates"
+msgid "Show progress of single files"
msgstr ""
#: ../data/UpdateManager.glade.h:16
+msgid "Software Updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr ""
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
msgstr ""
@@ -587,7 +633,7 @@ msgid "_Check for updates automatically:"
msgstr ""
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -617,11 +663,11 @@ msgid "Comment:"
msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
+msgid "Components:"
msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
+msgid "Distribution:"
msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:12
@@ -638,8 +684,8 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
@@ -669,9 +715,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -718,96 +762,114 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr ""
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr ""
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr ""
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr ""
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
-msgstr ""
\ No newline at end of file
+msgstr ""
diff --git a/po/de.po b/po/de.po
index 90733031..86ae3958 100644
--- a/po/de.po
+++ b/po/de.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-23 11:00+0000\n"
"Last-Translator: Julian Turner \n"
"Language-Team: German GNOME Translations \n"
@@ -18,42 +18,41 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr "Alle %s Tage"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "Nach %s Tagen"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr "Schlüssel importieren"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Fehler beim Importieren der gewählten Datei"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
"Die ausgewählte Datei ist möglicherweise keine GPG-Schlüsseldatei oder "
"beschädigt."
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Fehler beim Entfernen des Schlüssels"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"Der ausgewählte Schlüssel konnte nicht entfernt werden. Bitte erstellen Sie "
"hierfür einen Fehlerbericht."
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -64,11 +63,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "Geben Sie einen Namen für das Medium ein"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr "Bitte legen Sie ein Medium in das Laufwerk"
@@ -93,6 +92,7 @@ msgstr "Kann die benötigten Metapakete nicht aktualisieren"
msgid "A essential package would have to be removed"
msgstr "Ein wichtiges Paket müsste entfernt werden"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr "Konnte die Aktualisierung nicht ausrechnen"
@@ -105,11 +105,12 @@ msgstr ""
"Ein unlösbares Problem trat beim Ausrechnen der Aktualisierung auf. Bitte "
"erstellen Sie hierfür einen Fehlerbericht. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr "Fehler beim Authentifizieren einiger Pakete"
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
@@ -119,12 +120,12 @@ msgstr ""
"vorübergehenden Netzwerkproblemen liegen. Bitte probieren Sie es später noch "
"einmal. Die unten stehenden Pakete konnten nicht authentifiziert werden:"
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "Kann ›%s‹ nicht installieren"
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
@@ -132,11 +133,12 @@ msgstr ""
"Ein notwendiges Paket konnte nicht installiert werden. Bitte erstellen Sie "
"hierfür einen Fehlerbericht. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr "Kann kein Meta-Paket erraten"
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -153,11 +155,12 @@ msgstr ""
msgid "Reading cache"
msgstr "Lese Speicher"
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr "Kein gültiger Eintrag gefunden"
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
@@ -165,11 +168,11 @@ msgstr ""
"Beim Lesen ihrer Kanalliste konnte kein gültiger Eintrag für die "
"Aktualisierung gefunden werden.\n"
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr "Ungültige Kanallisteninformationen"
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
@@ -177,11 +180,11 @@ msgstr ""
"Das Aktualisieren der Quelliste ergab eine ungültige Datei. Bitte erstellen "
"Sie hierfür einen Fehlerbericht."
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr "Fehler beim Aktualisieren"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
@@ -190,33 +193,36 @@ msgstr ""
"Netzwerkprobleme zurückzuführen. Bitte überprüfen Sie Ihre "
"Netzwerkverbindung und versuchen Sie es noch einmal."
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr "Nicht genug Platz auf der Festplatte verfügbar"
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
"trash and remove temporary packages of former installations using 'sudo apt-"
"get clean'."
msgstr ""
-"Die Aktualisierung wird jetzt abgebrochen. Bitte leeren Sie mindestens %s
\n"
+"Die Aktualisierung wird jetzt abgebrochen. Bitte leeren Sie mindestens %s "
+"\r\n"
"Festplattenplatz. Leeren Sie ihren Mülleimer und entfernen Sie temporäre "
"Pakete von vorherigen Installationen mit ›sudo apt-get clean‹."
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr "Möchten Sie die Aktualisierung starten?"
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr "Konnte die Aktualisierungen nicht installieren"
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
+#, fuzzy
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
"Die Aktualisierung wird jetzt abgebrochen. Bitte versuchen Sie, Ihr System "
"mit ›sudo apt-get install -f‹ oder Synaptic zu reparieren."
@@ -234,15 +240,24 @@ msgstr ""
"Verbindung zum Internet oder Ihr Installationsmedium und versuchen Sie es "
"noch einmal. "
-#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+#: ../DistUpgrade/DistUpgradeControler.py:273
+#, fuzzy
+msgid "Remove obsolete packages?"
msgstr "Veraltete Pakete entfernen?"
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr "Fehler beim Anwenden"
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
@@ -251,152 +266,170 @@ msgstr ""
"Nachricht für mehr Informationen. "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr "Paketmanager wird überprüft"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr "Aktualisiere Paketquellen"
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr "Frage nach Bestätigung"
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr "Aktualisiere"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr "Suche nach veralteter Software"
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr "Aktualisierung abgeschlossen."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr "Bitte legen Sie das Medium ›%s‹ in das Laufwerk ›%s‹"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr "Herunterladen abgeschlossen"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr "Lade Datei %li von %li mit %s/s herunter"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr "%s verbleiben"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
-#, python-format
-msgid "Downloading file %li of %li at unknown speed"
-msgstr "Lade Datei %li von %li mit unbekannter Geschwindigkeit herunter"
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
+#, fuzzy, python-format
+msgid "Downloading file %li of %li"
+msgstr "Lade Datei %li von %li mit %s/s herunter"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
-msgstr "Aktualisierungen werden installiert"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+#, fuzzy
+msgid "Applying changes"
+msgstr "Änderungen werden heruntergeladen..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr "Konnte ›%s‹ nicht installieren"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr ""
"Die Aktualisierung wird jetzt abgebrochen. Bitte erstellen Sie hierfür einen "
"Fehlerbericht."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr "Ein fataler Fehler ist aufgetreten"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
"Bitte erstellen Sie einen Fehlerbericht und schließen Sie die Dateien ~/dist-"
"upgrade.log und ~/dist-upgrade-apt.log in Ihren Bericht ein. Die "
"Aktualisierung wird jetzt abgebrochen. "
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] "%s Paket wird entfernt."
msgstr[1] "%s Pakete werden entfernt."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] "%s neues Paket wird installiert."
msgstr[1] "%s neue Pakete werden installiert."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] "%s Paket wird aktualisiert."
msgstr[1] "%s Pakete werden aktualisiert."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr "Insgesamt müssen %s heruntergeladen werden."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
"Die Aktualisierung kann mehrere Stunden dauern und kann später nicht mehr "
"abgebrochen werden."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
"Schließen Sie alle offenen Anwendungen und Dokumente, um Datenverlust zu "
"vermeiden."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr "Konnte keine Aktualisierungen finden"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr "Ihr System wurde schon aktualisiert."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr "Entferne %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr "Installiere %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr "Aktualisiere %s"
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr "Neustart erforderlich"
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -406,6 +439,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -433,9 +467,10 @@ msgid "Start the upgrade?"
msgstr "Aktualisierung starten?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
+#, fuzzy
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
"Aktualisiere auf Ubuntu ›Dapper‹ "
"6.06"
@@ -449,38 +484,51 @@ msgid "Details"
msgstr "Details"
#: ../DistUpgrade/DistUpgrade.glade.h:10
+msgid "Difference between the files"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
msgstr "Lade Aktualisierungen herunter und installiere"
-#: ../DistUpgrade/DistUpgrade.glade.h:11
+#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
msgstr "Verändere Software-Kanäle"
-#: ../DistUpgrade/DistUpgrade.glade.h:12
+#: ../DistUpgrade/DistUpgrade.glade.h:13
msgid "Preparing the upgrade"
msgstr "Bereite die Aktualisierung vor"
-#: ../DistUpgrade/DistUpgrade.glade.h:13
+#: ../DistUpgrade/DistUpgrade.glade.h:14
msgid "Restarting the system"
msgstr "Starte das System neu"
-#: ../DistUpgrade/DistUpgrade.glade.h:14
+#: ../DistUpgrade/DistUpgrade.glade.h:15
msgid "Terminal"
msgstr "Terminal"
-#: ../DistUpgrade/DistUpgrade.glade.h:15
+#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
msgstr "Aktualisiere Ubuntu"
-#: ../DistUpgrade/DistUpgrade.glade.h:16
+#: ../DistUpgrade/DistUpgrade.glade.h:17
+msgid "_Keep"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "_Neu laden"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
msgstr "_Fehlerbericht erstellen"
-#: ../DistUpgrade/DistUpgrade.glade.h:17
+#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
msgstr "_Neu starten"
-#: ../DistUpgrade/DistUpgrade.glade.h:18
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr "_Aktualisierung fortsetzen"
@@ -493,8 +541,9 @@ msgid ""
msgstr ""
#: ../data/UpdateManager.glade.h:4
+#, fuzzy
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -517,30 +566,35 @@ msgid "Changes"
msgstr "Änderungen"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
-msgstr "Nach verfügbaren Aktualisierungen suchen"
+#, fuzzy
+msgid "Chec_k"
+msgstr "_Prüfen"
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Beschreibung"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr "Notizen zur Veröffentlichung"
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr "Details zeigen"
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Fortschritt der einzelnen Dateien anzeigen"
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Software-Aktualisierungen"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -548,23 +602,23 @@ msgstr ""
"Software-Aktualisierungen können Fehler korrigieren, Sicherheitslücken "
"stopfen und Ihnen neue Funktionen anbieten."
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr "_Aktualisieren"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr "Aus die neueste Version von Ubuntu aktualisieren"
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr "_Prüfen"
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr "Diese Information in Zukunft _verstecken"
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
msgstr "_Installieren"
@@ -636,7 +690,8 @@ msgid "_Check for updates automatically:"
msgstr "_Automatisch auf Aktualisierungen überprüfen:"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+#, fuzzy
+msgid "_Download updates in the background, but do not install them"
msgstr ""
"Aktualisierungen _nur im Hintergrund herunterladen, aber nicht installieren"
@@ -673,12 +728,13 @@ msgid "Comment:"
msgstr "Kommentar:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Distribution:"
+#, fuzzy
+msgid "Components:"
+msgstr "Komponenten"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Sparten:"
+msgid "Distribution:"
+msgstr "Distribution:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
msgid "Sections"
@@ -694,8 +750,8 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
@@ -732,10 +788,9 @@ msgid "Scanning CD-ROM"
msgstr "CD wird eingelesen"
#: ../data/SoftwarePropertiesDialogs.glade.h:24
+#, fuzzy
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] "Kanal _hinzufügen"
-msgstr[1] "Kanäle _hinzufügen"
+msgstr "Kanal _hinzufügen"
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -787,101 +842,137 @@ msgstr ""
msgid "The window size"
msgstr "Die Fenstergröße"
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
-msgstr ""
-"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+#, fuzzy
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 6.06 ›Dapper Drake‹"
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Ubuntu 6.06 Sicherheitsaktualisierungen"
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Updates"
msgstr "Ubuntu 6.06 Aktualisierungen"
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+#, fuzzy
+msgid "Ubuntu 6.06 Backports"
msgstr "Ubuntu 6.06 Backports"
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 ›Breezy Badger‹"
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 Sicherheitsaktualisierungen"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 Aktualisierungen"
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Backports"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr "Offiziell unterstützt"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Urheberrechtlich eingeschränkt"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Von der Gemeinschaft betreut (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Unfrei (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 ›Sarge‹"
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr "http://security.debian.org/"
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Debian 3.1 ›Sarge‹ Sicherheitsaktualisierungen"
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr "Debian ›Etch‹ (testing)"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr "http://http.us.debian.org/debian/"
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian ›Sid‹ (unstable)"
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr "Offiziell unterstützt"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr "DFSG-kompatible Software mit unfreien Abhängigkeiten"
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr "Nicht DFSG-kompatible Software"
+#~ msgid "Downloading file %li of %li at unknown speed"
+#~ msgstr "Lade Datei %li von %li mit unbekannter Geschwindigkeit herunter"
+
+#~ msgid "Installing updates"
+#~ msgstr "Aktualisierungen werden installiert"
+
+#~ msgid "Check for available updates"
+#~ msgstr "Nach verfügbaren Aktualisierungen suchen"
+
+#~ msgid "Sections:"
+#~ msgstr "Sparten:"
+
+#~ msgid "Oficially supported"
+#~ msgstr "Offiziell unterstützt"
+
#~ msgid "Reload the latest information about updates"
#~ msgstr "Aktuelle Paketinformationen vom Server beziehen"
@@ -899,13 +990,14 @@ msgstr "Nicht DFSG-kompatible Software"
#~ "\n"
#~ "Need to get the changes from the central server"
#~ msgstr ""
-#~ "Änderungen werden "
-#~ "heruntergeladen\n"
+#~ "Änderungen werden heruntergeladen"
+#~ "span>\n"
#~ "\n"
#~ "Die Änderungen müssen vom zentralen Server abgerufen werden"
#~ msgid "Show available updates and choose which to install"
-#~ msgstr "Verfügbare Aktualisierungen anzeigen und zu installierende auswählen"
+#~ msgstr ""
+#~ "Verfügbare Aktualisierungen anzeigen und zu installierende auswählen"
#, fuzzy
#~ msgid "Ubuntu 5.04 \"Hoary Hedgehog\""
@@ -936,16 +1028,14 @@ msgstr "Nicht DFSG-kompatible Software"
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Verfügbare Aktualisierungen\n"
#~ "\n"
-#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung kann "
-#~ "durch einen Klick auf die Schaltfläche »Installieren« vorgenommen werden."
-
-#~ msgid "Components"
-#~ msgstr "Komponenten"
+#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung "
+#~ "kann durch einen Klick auf die Schaltfläche »Installieren« vorgenommen "
+#~ "werden."
#~ msgid "Repository"
#~ msgstr "Repository"
@@ -974,12 +1064,12 @@ msgstr "Nicht DFSG-kompatible Software"
#, fuzzy
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
-#~ "Hinzufügen einer neuen Schlüsseldatei zum vertrauenswürdigen Schlüsselbund. "
-#~ "Stellen Sie sicher, dass der Schlüssel über eine sichere Verbindung bezogen "
-#~ "wurde und dass der Besitzer vertrauenswürdig ist. "
+#~ "Hinzufügen einer neuen Schlüsseldatei zum vertrauenswürdigen "
+#~ "Schlüsselbund. Stellen Sie sicher, dass der Schlüssel über eine sichere "
+#~ "Verbindung bezogen wurde und dass der Besitzer vertrauenswürdig ist. "
#~ msgid "Automatically clean _temporary packages files"
#~ msgstr "_Temporäre Paketdateien automatisch löschen"
@@ -1001,11 +1091,12 @@ msgstr "Nicht DFSG-kompatible Software"
#, fuzzy
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
-#~ "Zurücksetzen der Vorgabeschlüssel, welche mit der Distribution ausgeliefert "
-#~ "wurden. Vom Benutzer installierte Schlüssel werden dadurch nicht geändert."
+#~ "Zurücksetzen der Vorgabeschlüssel, welche mit der Distribution "
+#~ "ausgeliefert wurden. Vom Benutzer installierte Schlüssel werden dadurch "
+#~ "nicht geändert."
#~ msgid "Set _maximum size for the package cache"
#~ msgstr "_Begrenzen der Größe des Paketzwischenspeichers"
@@ -1030,8 +1121,8 @@ msgstr "Nicht DFSG-kompatible Software"
#~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation."
#~ msgstr ""
#~ "Dies bedeutet, dass einige Abhängigkeiten der installierten Pakete nicht "
-#~ "aufgelöst sind. Verwenden Sie bitte »Synaptic« oder »apt-get« zur Behebung "
-#~ "des Problems."
+#~ "aufgelöst sind. Verwenden Sie bitte »Synaptic« oder »apt-get« zur "
+#~ "Behebung des Problems."
#~ msgid "It is not possible to upgrade all packages."
#~ msgstr "Es ist nicht möglich, alle Pakete zu aktualisieren."
@@ -1039,12 +1130,13 @@ msgstr "Nicht DFSG-kompatible Software"
#~ msgid ""
#~ "This means that besides the actual upgrade of the packages some further "
#~ "action (such as installing or removing packages) is required. Please use "
-#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation."
+#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
+#~ "situation."
#~ msgstr ""
-#~ "Dies bedeutet, dass neben der momentanen Aktualisierung der Pakete weitere "
-#~ "Aktionen, wie das Installieren oder Entfernen von Paketen, notwendig sind. "
-#~ "Verwenden Sie bitte die »Intelligente Aktualisierung« von Synaptic oder »apt-"
-#~ "get dist-upgrade« zur Behebung des Problems."
+#~ "Dies bedeutet, dass neben der momentanen Aktualisierung der Pakete "
+#~ "weitere Aktionen, wie das Installieren oder Entfernen von Paketen, "
+#~ "notwendig sind. Verwenden Sie bitte die »Intelligente Aktualisierung« von "
+#~ "Synaptic oder »apt-get dist-upgrade« zur Behebung des Problems."
#~ msgid "The following packages are not upgraded: "
#~ msgstr "Die folgenden Pakete wurden nicht aktualisiert: "
@@ -1064,15 +1156,12 @@ msgstr "Nicht DFSG-kompatible Software"
#~ msgid "Version %s: \n"
#~ msgstr "Version %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "Änderungen werden heruntergeladen..."
-
#~ msgid "The updates are being applied."
#~ msgstr "Die Aktualisierungen werden ausgeführt."
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
#~ "Es kann immer nur eine Anwendung zur Paketverwaltung zur gleichen Zeit "
#~ "ausgeführt werden. Bitte beenden Sie zuerst die andere Anwendung."
@@ -1094,20 +1183,20 @@ msgstr "Nicht DFSG-kompatible Software"
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
#~ "Verwenden Sie bitte eine aktuellere Version von Ubuntu-Linux. Für die "
#~ "momentan laufende Version werden keine Sicherheits- und andere kritische "
-#~ "Aktualisierungen mehr bereitgestellt. Informationen zur Systemaktualisierung "
-#~ "finden Sie unter http://www.ubuntulinux.org."
+#~ "Aktualisierungen mehr bereitgestellt. Informationen zur "
+#~ "Systemaktualisierung finden Sie unter http://www.ubuntulinux.org."
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "Eine neue Version von Ubuntu ist verfügbar!"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
#~ "Eine neue Version mit dem Codenamen »%s« ist verfügbar. Informationen zur "
#~ "Aktualisierung des Systems erhalten Sie unter http://www.ubuntulinux.org."
@@ -1117,8 +1206,8 @@ msgstr "Nicht DFSG-kompatible Software"
#, fuzzy
#~ msgid ""
-#~ "This usually means that another package management application (like apt-get "
-#~ "or aptitude) already running. Please close that application first"
+#~ "This usually means that another package management application (like apt-"
+#~ "get or aptitude) already running. Please close that application first"
#~ msgstr ""
#~ "Es kann immer nur eine Anwendung zur Paketverwaltung zur gleichen Zeit "
#~ "ausgeführt werden. Bitte beenden Sie zuerst die andere Anwendung."
@@ -1127,7 +1216,8 @@ msgstr "Nicht DFSG-kompatible Software"
#~ msgstr "Initialisierung und Abrufen der Aktualisierungsliste..."
#~ msgid "You need to be root to run this program"
-#~ msgstr "Sie benötigen Administrationsrechte, um diese Anwendung auszuführen."
+#~ msgstr ""
+#~ "Sie benötigen Administrationsrechte, um diese Anwendung auszuführen."
#~ msgid "Edit software sources and settings"
#~ msgstr "Bearbeiten der Software-Quellen und Einstellungen"
@@ -1165,14 +1255,15 @@ msgstr "Nicht DFSG-kompatible Software"
#~ msgid "Ubuntu CD Image Automatic Signing Key "
#~ msgstr ""
-#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image "
+#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image "
#~ msgid "Repositories changed"
#~ msgstr "Geänderte Repositories"
#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources.list "
-#~ "is stored in %s.save. \n"
+#~ "The repository information has changes. A backup copy of your sources."
+#~ "list is stored in %s.save. \n"
#~ "\n"
#~ "You need to reload the package list from the servers for your changes to "
#~ "take effect. Do you want to do this now?"
@@ -1186,10 +1277,11 @@ msgstr "Nicht DFSG-kompatible Software"
#, fuzzy
#~ msgid ""
#~ "Available Updates\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Verfügbare Aktualisierungen\n"
#~ "\n"
-#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung kann "
-#~ "durch einen Klick auf die Schaltfläche »Installieren« vorgenommen werden."
\ No newline at end of file
+#~ "Für folgende Pakete sind neue Versionen verfügbar. Die Aktualisierung "
+#~ "kann durch einen Klick auf die Schaltfläche »Installieren« vorgenommen "
+#~ "werden."
diff --git a/po/el.po b/po/el.po
index e4dc7fde..ad7dbfac 100644
--- a/po/el.po
+++ b/po/el.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: el\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-23 07:09+0000\n"
"Last-Translator: Kostas Papadimas \n"
"Language-Team: Greek \n"
@@ -16,42 +16,41 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr "Κάθε %s ημέρες"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "Μετά από %s ημέρες"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr "Εισαγωγή κλειδιού"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Σφάλμα εισαγωγής επιλεγμένου αρχείου"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
"Το επιλεγμένο αρχείο μπορεί να μην είναι ένα αρχείο κλειδιού GPG ή μπορεί να "
"είναι κατεστραμμένο."
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Αφάλμα απομάκρυνσης του κλειδιού"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"Το επιλεγμένο κλειδί δεν μπορεί να απομακρυνθεί. Παρακαλώ αναφέρετε το ως "
"σφάλμα."
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -62,11 +61,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "Παρακαλώ εισάγετε ένα όνομα για το δίσκο"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr "Παρακαλώ εισάγετε ένα δίσκο στον οδηγό:"
@@ -91,6 +90,7 @@ msgstr "Αδυναμία αναβάθμισης απαιτούμενων μετ
msgid "A essential package would have to be removed"
msgstr "Ένα απαραίτητο πακέτα θα πρέπει να απομακρυνθεί"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr "Αδυναμία υπολογισμού της αναβάθμισης"
@@ -103,11 +103,12 @@ msgstr ""
"Συνέβηκε ένα ανεπίλυτο πρόβλημα κατά τον υπολογισμό της αναβάθμισης. "
"Παρακαλώ αναφέρετε το ως σφάλμα. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr "Σφάλμα πιστοποίησης κάποιων πακέτων"
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
@@ -117,12 +118,12 @@ msgstr ""
"σε ένα πρόβλημα δικτύου. Προσπαθήστε αργότερα. Δείτε παρακάτω τη λίστα των "
"μη πιστοποιημένων πακέτων."
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "Αδυναμία εγκατάστασης '%s'"
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
@@ -130,11 +131,12 @@ msgstr ""
"Δεν ήταν δυνατή η αναβάθμιση του απαιτούμενου πακέτου. Παρακαλώ αναφέρετε το "
"ως σφάλμα. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr "Αδυναμία εύρεσης μετα-πακέτου"
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -152,11 +154,12 @@ msgstr ""
msgid "Reading cache"
msgstr "Ανάγνωση λανθάνουσας μνήμης"
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr "Δεν βρέθηκε έγκυρη καταχώριση"
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
@@ -164,11 +167,11 @@ msgstr ""
"Κατά τον έλεγχο των πληροφοριών του repository δεν βρέθηκαν έγκυρες "
"καταχωρίσεις αναβάθμισης.\n"
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr "Μη έγκυρες πληροφορίες repository"
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
@@ -176,11 +179,11 @@ msgstr ""
"Η αναβάθμιση των πληροφοριών repository είχε σαν αποτέλεσμα ένα άκυρο "
"αρχείο. Παρακαλώ αναφέρετε το ως σφάλμα."
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr "Σφάλμα κατά την ενημέρωση"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
@@ -188,11 +191,11 @@ msgstr ""
"Δημιουργήθηκε ένα πρόβλημα κατά την αναβάθμιση. Αυτό συνήθως σημαίνει "
"πρόβλημα δικτύου. Ελέγξτε τη σύνδεση δικτύου σας και προσπαθήστε ξανά."
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr "Δεν υπάρχει αρκετός χώρος στο δίσκο"
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -203,18 +206,20 @@ msgstr ""
"στο δίσκο. Αδειάστε τα απορρίμματα σας και αφαιρέστε διάφορα προσωρινά "
"πακέτα από προηγούμενες εγκαταστάσεις με την εντολή 'sudo apt-get clean'."
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr "Θέλετε να ξεκινήσετε την αναβάθμιση;"
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr "Αδυναμία εγκατάστασης των αναβαθμίσεων"
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
+#, fuzzy
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
"Η αναβάθμιση τώρα θα τερματιστεί. Το σύστημα σας μπορεί να γίνει ασταθές. "
"Παρακαλώ χρησιμοποιήστε την εντολή 'sudo apt-get install -f' ή το Synaptic "
@@ -232,15 +237,24 @@ msgstr ""
"Η αναβάθμιση τώρα θα τερματιστεί. Παρακαλώ ελέγξτε τη σύνδεση σας στο "
"διαδίκτυο ή το μέσο εγκατάστασης και προσπαθήστε ξανά. "
-#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+#: ../DistUpgrade/DistUpgradeControler.py:273
+#, fuzzy
+msgid "Remove obsolete packages?"
msgstr "Αφαίρεση παρωχημένων πακέτων;"
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr "Σφάλμα κατά την υποβολή"
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
@@ -249,150 +263,167 @@ msgstr ""
"παρακάτω μήνυμα για περισσότερες πληροφορίες. "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr "Έλεγχος διαχειριστή πακέτων"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr "Ενημέρωση πληροφοριών repository"
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr "Ερώτηση για επιβεβαίωση"
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr "Γίνεται αναβάθμιση"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr "Γίνεται αναζήτηση για παρωχημένο λογισμικό"
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr "Η αναβάθμιση συστήματος ολοκληρώθηκε."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr "Παρακαλώ εισάγετε τον δίσκο '%s' στον οδηγό '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr "Η λήψη ολοκληρώθηκε"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr "Λήψη αρχείου %li από %li με %s/s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr "%s απομένουν"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
-#, python-format
-msgid "Downloading file %li of %li at unknown speed"
-msgstr "Λήψη αρχείου %li από %li με άγνωστη ταχύτητα"
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
+#, fuzzy, python-format
+msgid "Downloading file %li of %li"
+msgstr "Λήψη αρχείου %li από %li με %s/s"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
-msgstr "Εγκατάσταση ενημερώσεων"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+msgid "Applying changes"
+msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr "Αδυναμία εγκατάστασης '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr "Η αναβάθμιση θα τερματιστεί τώρα. Παρακαλώ αναφέρετε το ως σφάλμα."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr "Προέκυψε μοιραίο σφάλμα"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
"Παρακαλώ αναφέρετε το ως σφάλμα και επισυνάψτε τα αρχεία ~/dist-upgrade.log "
"και ~/dist-upgrade-apt.log στην αναφορά σας. Η αναβάθμιση τώρα θα "
"τερματιστεί. "
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] "%s πακέτο πρόκειται να απομακρυνθεί."
msgstr[1] "%s πακέτα πρόκειται να απομακρυνθούν."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] "%s νέο πακέτο πρόκειται να εγκατασταθεί."
msgstr[1] "%s νέο πακέτα πρόκειται να εγκατασταθούν."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] "%s πακέτο πρόκειται να αναβαθμιστεί."
msgstr[1] "%s πακέτα πρόκειται να αναβαθμιστούν."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr "Θα πρέπει να μεταφορτώσετε συνολικά %s."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
"Η αναβάθμιση μπορεί να διαρκέσει αρκετέςς ώρες και δεν είναι δυνατή η "
"ακύρωση της αργότερα."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
"Για να αποφύγετε απώλεια δεδομένων, κλείστε όλες τις ανοικτές εφαρμογές και "
"έγγραφα."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr "Δεν βρέθηκαν αναβαθμίσεις"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr "Το σύστημα σας έχει ήδη αναβαθμιστεί."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr "Απομάκρυνση %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr "Εγκατάσταση %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr "Αναβάθμιση %s"
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr "Απαιτείται επανεκκίνηση"
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -402,6 +433,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -429,12 +461,13 @@ msgid "Start the upgrade?"
msgstr "Έναρξη της αναβάθμισης;"
#: ../DistUpgrade/DistUpgrade.glade.h:7
+#, fuzzy
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
-"Αναβάθμιση σε Ubuntu \"Dapper\" "
-"6.04"
+"Αναβάθμιση σε Ubuntu \"Dapper\" 6.04"
+"span>"
#: ../DistUpgrade/DistUpgrade.glade.h:8
msgid "Cleaning up"
@@ -445,38 +478,51 @@ msgid "Details"
msgstr "Λεπτομέρειες"
#: ../DistUpgrade/DistUpgrade.glade.h:10
+msgid "Difference between the files"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
msgstr "Λήψη και εγκατάσταση των αναβαθμίσεων"
-#: ../DistUpgrade/DistUpgrade.glade.h:11
+#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
msgstr "Τροποποίηση των καναλιών λογισμικού"
-#: ../DistUpgrade/DistUpgrade.glade.h:12
+#: ../DistUpgrade/DistUpgrade.glade.h:13
msgid "Preparing the upgrade"
msgstr "Προετοιμασία της αναβάθμισης"
-#: ../DistUpgrade/DistUpgrade.glade.h:13
+#: ../DistUpgrade/DistUpgrade.glade.h:14
msgid "Restarting the system"
msgstr "Γίνεται επανεκκίνηση του συστήματος"
-#: ../DistUpgrade/DistUpgrade.glade.h:14
+#: ../DistUpgrade/DistUpgrade.glade.h:15
msgid "Terminal"
msgstr "Τερματικό"
-#: ../DistUpgrade/DistUpgrade.glade.h:15
+#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
msgstr "Αναβάθμιση Ubuntu"
-#: ../DistUpgrade/DistUpgrade.glade.h:16
+#: ../DistUpgrade/DistUpgrade.glade.h:17
+msgid "_Keep"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "Ανα_νέωση"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
msgstr "Ανα_φορά σφάλματος"
-#: ../DistUpgrade/DistUpgrade.glade.h:17
+#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
msgstr "Επανε_κκίνηση τώρα"
-#: ../DistUpgrade/DistUpgrade.glade.h:18
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr "_Συνέχεια αναβάθμισης"
@@ -494,8 +540,9 @@ msgstr ""
"συστήματος\" -> \"Ιδιότητες λογισμικού\"."
#: ../data/UpdateManager.glade.h:4
+#, fuzzy
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -518,30 +565,35 @@ msgid "Changes"
msgstr "Αλλαγές"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
-msgstr "Έλεγχος για διαθέσιμες ενημερώσεις"
+#, fuzzy
+msgid "Chec_k"
+msgstr "Ελε_γχος"
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Περιγραφή"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr "Σημειώσεις έκδοσης"
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr "Εμφάνιση λεπτομερειών"
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Εμφάνιση προόδου μοναδικών αρχείων"
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Αναβαθμίσεις λογισμικού"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -549,23 +601,23 @@ msgstr ""
"Οι ενημερώσεις λογισμικού μπορούν να διορθώνουν σφάλματα, κενά ασφαλείας και "
"να παρέχουν νέες λειτουργίες."
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr "Ανα_βάθμιση"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr "Αναβάθμιση στη τελευταία έκδοση του Ubuntu"
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr "Ελε_γχος"
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr "Απόκρυ_ψη αυτής της πληροφορίας στο μέλλον"
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
msgstr "Ε_γκατάσταση ενημερώσεων"
@@ -632,7 +684,8 @@ msgid "_Check for updates automatically:"
msgstr "Αυτόματος έλεγ_χος για ενημερώσεις κάθε:"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+#, fuzzy
+msgid "_Download updates in the background, but do not install them"
msgstr "Λή_ψη ενημερώσεων στο παρασκήνιο χωρίς να εγκατασταθούν"
#: ../data/SoftwareProperties.glade.h:16
@@ -669,12 +722,13 @@ msgid "Comment:"
msgstr "Σχόλιο:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Διανομή:"
+#, fuzzy
+msgid "Components:"
+msgstr "Σχόλιο:"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Ενότητες:"
+msgid "Distribution:"
+msgstr "Διανομή:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
msgid "Sections"
@@ -690,8 +744,8 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
@@ -727,10 +781,9 @@ msgid "Scanning CD-ROM"
msgstr "Σάρωση CD-ROM"
#: ../data/SoftwarePropertiesDialogs.glade.h:24
+#, fuzzy
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] "Προσ_θήκη καναλιού"
-msgstr[1] "Προσ_θήκη καναλιών"
+msgstr "Προσ_θήκη καναλιού"
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -781,101 +834,137 @@ msgstr ""
msgid "The window size"
msgstr "Το μέγεθος του παραθύρου"
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
-msgstr ""
-"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+#, fuzzy
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 6.04 'Dapper Drake'"
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Ενημερώσεις ασφαλείας Ubuntu 6.04"
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Updates"
msgstr "Ενημερώσεις Ubuntu 6.04"
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+#, fuzzy
+msgid "Ubuntu 6.06 Backports"
msgstr "Ubuntu 6.04 Backports"
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Αναβαθμίσεις Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Backports"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr "Με επίσημη υποστήριξη"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Περιορισμένα πνευματικά δικαιώματα"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Community maintained (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Όχι-ελεύθερα (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 \"Sarge\""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr "http://security.debian.org/"
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Αναβαθμίσεις ασφαλείας Debian 3.1 \"Sarge\""
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr "Debian \"Etch\" (testing)"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr "http://http.us.debian.org/debian/"
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian \"Sid\" (unstable)"
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr "Oficially supported"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr "Λογισμικό συμβατό με DFSG με μη Ελεύθερες Εξαρτήσεις"
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr "Λογισμικό μη συμβατό με DFSG"
+#~ msgid "Downloading file %li of %li at unknown speed"
+#~ msgstr "Λήψη αρχείου %li από %li με άγνωστη ταχύτητα"
+
+#~ msgid "Installing updates"
+#~ msgstr "Εγκατάσταση ενημερώσεων"
+
+#~ msgid "Check for available updates"
+#~ msgstr "Έλεγχος για διαθέσιμες ενημερώσεις"
+
+#~ msgid "Sections:"
+#~ msgstr "Ενότητες:"
+
+#~ msgid "Oficially supported"
+#~ msgstr "Oficially supported"
+
#~ msgid "Software Channel"
#~ msgstr "Κανάλι λογισμικού"
@@ -902,24 +991,25 @@ msgstr "Λογισμικό μη συμβατό με DFSG"
#~ msgstr "Το αρχείο '%s' δεν περιέχει έγκυρα κανάλια λογισμικού."
#~ msgid ""
-#~ "The upgrade is finished now. A reboot is required to now, do you want to do "
-#~ "this now?"
+#~ "The upgrade is finished now. A reboot is required to now, do you want to "
+#~ "do this now?"
#~ msgstr ""
#~ "Η αναβάθμιση ολοκληρώθηκε. Απαιτείται επανεκκίνηση, θέλετε να γίνει τώρα;"
#~ msgid ""
-#~ "You need to manually reload the latest information about "
-#~ "updates\n"
+#~ "You need to manually reload the latest information about updates"
+#~ "big>\n"
#~ "\n"
-#~ "Your system does not check for updates automatically. You can configure this "
-#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"."
+#~ "Your system does not check for updates automatically. You can configure "
+#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties"
+#~ "\"."
#~ msgstr ""
-#~ "Πρέπει να ανανεώσετε χειροκίνητα τις τελευταίες πληροφορίες για τις "
-#~ "ενημερώσεις\n"
+#~ "Πρέπει να ανανεώσετε χειροκίνητα τις τελευταίες πληροφορίες για "
+#~ "τις ενημερώσεις\n"
#~ "\n"
-#~ "Το σύστημα σας δεν έχει ρυθμιστεί να κάνει αυτόματο έλεγχο για ενημερώσεις. "
-#~ "Μπορείτε να ρυθμίσετε αυτή τη συμπεριφορά μέσω του μενού \"Σύστημα\" -> "
-#~ "\"Διαχείριση συστήματος\" -> \"Ιδιότητες λογισμικού\"."
+#~ "Το σύστημα σας δεν έχει ρυθμιστεί να κάνει αυτόματο έλεγχο για "
+#~ "ενημερώσεις. Μπορείτε να ρυθμίσετε αυτή τη συμπεριφορά μέσω του μενού "
+#~ "\"Σύστημα\" -> \"Διαχείριση συστήματος\" -> \"Ιδιότητες λογισμικού\"."
#~ msgid ""
#~ "Downloading changes\n"
@@ -947,4 +1037,4 @@ msgstr "Λογισμικό μη συμβατό με DFSG"
#~ msgstr "Ubuntu 5.04 \"Hoary Hedgehog\""
#~ msgid "Ubuntu 5.04 Security Updates"
-#~ msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.04"
\ No newline at end of file
+#~ msgstr "Αναβαθμίσεις ασφαλείας Ubuntu 5.04"
diff --git a/po/en_CA.po b/po/en_CA.po
index fbb28363..040b0940 100644
--- a/po/en_CA.po
+++ b/po/en_CA.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-23 00:18+0000\n"
"Last-Translator: Adam Weinberger \n"
"Language-Team: Canadian English \n"
@@ -17,39 +17,38 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Error importing selected file"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
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:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Error removing the key"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+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:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -57,11 +56,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -83,6 +82,7 @@ msgstr ""
msgid "A essential package would have to be removed"
msgstr ""
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr ""
@@ -95,23 +95,24 @@ msgid ""
msgstr ""
"The key you selected could not be removed. Please report this as a bug. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
#, fuzzy
msgid ""
"It was impossible to install a required package. Please report this as a "
@@ -119,11 +120,12 @@ msgid ""
msgstr ""
"The key you selected could not be removed. Please report this as a bug. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -136,42 +138,43 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
#, fuzzy
msgid "Error during update"
msgstr "Error removing the key"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -179,18 +182,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -203,164 +207,189 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Skip This Step"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
#, fuzzy
msgid "Checking package manager"
msgstr "Another package manager is running"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
#, fuzzy
msgid "Upgrading"
msgstr "Upgrade finished"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
#, fuzzy
-msgid "Installing updates"
-msgstr "Installing updates..."
+msgid "Applying changes"
+msgstr "Downloading changes..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
#, fuzzy
msgid "The upgrade aborts now. Please report this bug."
msgstr ""
"The key you selected could not be removed. Please report this as a bug."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
#, fuzzy
msgid "Your system has already been upgraded."
msgstr "Your system has broken packages!"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
+#, python-format
msgid "Remove %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
+#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
+#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -368,6 +397,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -391,8 +421,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -405,39 +435,52 @@ msgid "Details"
msgstr "Details"
#: ../DistUpgrade/DistUpgrade.glade.h:10
-msgid "Downloading and installing the upgrades"
+msgid "Difference between the files"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:11
-msgid "Modifying the software channels"
+msgid "Downloading and installing the upgrades"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:12
-msgid "Preparing the upgrade"
+msgid "Modifying the software channels"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:13
-msgid "Restarting the system"
+msgid "Preparing the upgrade"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:14
-msgid "Terminal"
+msgid "Restarting the system"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:15
-msgid "Upgrading Ubuntu"
+msgid "Terminal"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:16
-msgid "_Report Bug"
+msgid "Upgrading Ubuntu"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:17
-msgid "_Restart Now"
+msgid "_Keep"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:18
#, fuzzy
+msgid "_Replace"
+msgstr "Reload"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
+#, fuzzy
msgid "_Resume Upgrade"
msgstr "Upgrade finished"
@@ -451,7 +494,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -470,53 +513,57 @@ msgid "Changes"
msgstr "Changes"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
+msgid "Chec_k"
msgstr ""
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Description"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Software Updates"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
#, fuzzy
msgid "U_pgrade"
msgstr "Upgrade finished"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
msgstr "_Install"
@@ -590,7 +637,7 @@ msgid "_Check for updates automatically:"
msgstr ""
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -621,12 +668,13 @@ msgid "Comment:"
msgstr "Comment:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Distribution:"
+#, fuzzy
+msgid "Components:"
+msgstr "Components"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Sections:"
+msgid "Distribution:"
+msgstr "Distribution:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
#, fuzzy
@@ -644,14 +692,14 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
#, fuzzy
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
-"Enter the complete APT line of the repository that you want to "
-"add\n"
+"Enter the complete APT line of the repository that you want to add"
+"b>\n"
"\n"
"The APT line contains the type, location and content of a repository, for "
"example \"deb http://ftp.debian.org sarge main\". You can find a "
@@ -683,9 +731,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -733,111 +779,139 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
#, fuzzy
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 5.04 Security Updates"
+#. Description
#: ../channels/Ubuntu.info.in:23
#, fuzzy
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Ubuntu 5.04 Security Updates"
+#. Description
#: ../channels/Ubuntu.info.in:40
#, fuzzy
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr "Ubuntu 5.04 Updates"
+#. Description
#: ../channels/Ubuntu.info.in:57
#, fuzzy
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr "Ubuntu 5.04 Updates"
+#. Description
#: ../channels/Ubuntu.info.in:74
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.04 Security Updates"
+#. Description
#: ../channels/Ubuntu.info.in:91
#, fuzzy
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.04 Security Updates"
+#. Description
#: ../channels/Ubuntu.info.in:108
#, fuzzy
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.04 Updates"
+#. Description
#: ../channels/Ubuntu.info.in:125
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.04 Updates"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
#, fuzzy
msgid "Officially supported"
msgstr "Officially supported"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Restricted copyright"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Community maintained (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Non-free (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
#, fuzzy
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Debian Stable Security Updates"
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr ""
-#: ../channels/Debian.info.in:51
-#, fuzzy
-msgid "Oficially supported"
-msgstr "Officially supported"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr ""
+#, fuzzy
+#~ msgid "Installing updates"
+#~ msgstr "Installing updates..."
+
+#~ msgid "Sections:"
+#~ msgstr "Sections:"
+
+#, fuzzy
+#~ msgid "Oficially supported"
+#~ msgstr "Officially supported"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Reload the package information from the server."
@@ -887,16 +961,13 @@ msgstr ""
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
-
-#~ msgid "Components"
-#~ msgstr "Components"
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgid "Repository"
#~ msgstr "Repository"
@@ -916,16 +987,16 @@ msgstr ""
#~ msgstr ""
#~ "Authentication keys\n"
#~ "\n"
-#~ "You can add and remove authentication keys in this dialogue. A key makes it "
-#~ "possible to check verify the integrity of the software you download."
+#~ "You can add and remove authentication keys in this dialogue. A key makes "
+#~ "it possible to check verify the integrity of the software you download."
#~ msgid "A_uthentication"
#~ msgstr "A_uthentication"
#, fuzzy
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
#~ "Add a new key file to the trusted keyring. Make sure that you got the key "
#~ "over a secure channel and that you trust the owner. "
@@ -950,11 +1021,11 @@ msgstr ""
#, fuzzy
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
-#~ "Restore the default keys shiped with the distribution. This will not change "
-#~ "user-installed keys."
+#~ "Restore the default keys shiped with the distribution. This will not "
+#~ "change user-installed keys."
#~ msgid "Set _maximum size for the package cache"
#~ msgstr "Set _maximum size for the package cache"
@@ -987,11 +1058,13 @@ msgstr ""
#~ msgid ""
#~ "This means that besides the actual upgrade of the packages some further "
#~ "action (such as installing or removing packages) is required. Please use "
-#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation."
+#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
+#~ "situation."
#~ msgstr ""
#~ "This means that besides the actual upgrade of the packages some further "
#~ "action (such as installing or removing packages) is required. Please use "
-#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation."
+#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
+#~ "situation."
#~ msgid "The following packages are not upgraded: "
#~ msgstr "The following packages are not upgraded: "
@@ -1009,18 +1082,15 @@ msgstr ""
#~ msgid "Version %s: \n"
#~ msgstr "Version %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "Downloading changes..."
-
#~ msgid "The updates are being applied."
#~ msgstr "The updates are being applied."
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgid "Updating package list..."
#~ msgstr "Updating package list..."
@@ -1039,33 +1109,33 @@ msgstr ""
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "There is a new release of Ubuntu available!"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgid "Never show this message again"
#~ msgstr "Never show this message again"
#, fuzzy
#~ msgid ""
-#~ "This usually means that another package management application (like apt-get "
-#~ "or aptitude) already running. Please close that application first"
+#~ "This usually means that another package management application (like apt-"
+#~ "get or aptitude) already running. Please close that application first"
#~ msgstr ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgid "Initializing and getting list of updates..."
#~ msgstr "Initializing and getting list of updates..."
@@ -1113,14 +1183,14 @@ msgstr ""
#~ msgstr "Repositories changed"
#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources.list "
-#~ "is stored in %s.save. \n"
+#~ "The repository information has changes. A backup copy of your sources."
+#~ "list is stored in %s.save. \n"
#~ "\n"
#~ "You need to reload the package list from the servers for your changes to "
#~ "take effect. Do you want to do this now?"
#~ msgstr ""
-#~ "The repository information has changes. A backup copy of your sources.list "
-#~ "is stored in %s.save. \n"
+#~ "The repository information has changes. A backup copy of your sources."
+#~ "list is stored in %s.save. \n"
#~ "\n"
#~ "You need to reload the package list from the servers for your changes to "
#~ "take effect. Do you want to do this now?"
@@ -1128,10 +1198,10 @@ msgstr ""
#, fuzzy
#~ msgid ""
#~ "Available Updates\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
\ No newline at end of file
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
diff --git a/po/en_GB.po b/po/en_GB.po
index 0d4de9e7..2e1e9c89 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-23 00:18+0000\n"
"Last-Translator: Abigail Brady \n"
"Language-Team: \n"
@@ -16,39 +16,38 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Error importing selected file"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
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:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Error removing the key"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+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:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -56,11 +55,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -82,6 +81,7 @@ msgstr ""
msgid "A essential package would have to be removed"
msgstr ""
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr ""
@@ -94,23 +94,24 @@ msgid ""
msgstr ""
"The key you selected could not be removed. Please report this as a bug. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
#, fuzzy
msgid ""
"It was impossible to install a required package. Please report this as a "
@@ -118,11 +119,12 @@ msgid ""
msgstr ""
"The key you selected could not be removed. Please report this as a bug. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -135,42 +137,43 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
#, fuzzy
msgid "Error during update"
msgstr "Error removing the key"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -178,18 +181,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -202,165 +206,190 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Skip This Step"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
#, fuzzy
msgid "Checking package manager"
msgstr "Another package manager is running"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
#, fuzzy
msgid "Asking for confirmation"
msgstr "Checking system configuration"
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
#, fuzzy
msgid "Upgrading"
msgstr "Upgrade finished"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
#, fuzzy
-msgid "Installing updates"
-msgstr "Installing updates..."
+msgid "Applying changes"
+msgstr "Downloading changes..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
#, fuzzy
msgid "The upgrade aborts now. Please report this bug."
msgstr ""
"The key you selected could not be removed. Please report this as a bug."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
#, fuzzy
msgid "Your system has already been upgraded."
msgstr "Your system has broken packages!"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
+#, python-format
msgid "Remove %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
+#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
+#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -368,6 +397,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -391,8 +421,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -405,38 +435,51 @@ msgid "Details"
msgstr "Details"
#: ../DistUpgrade/DistUpgrade.glade.h:10
-msgid "Downloading and installing the upgrades"
+msgid "Difference between the files"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:11
-msgid "Modifying the software channels"
+msgid "Downloading and installing the upgrades"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:12
-msgid "Preparing the upgrade"
+msgid "Modifying the software channels"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:13
-msgid "Restarting the system"
+msgid "Preparing the upgrade"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:14
-msgid "Terminal"
+msgid "Restarting the system"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:15
-msgid "Upgrading Ubuntu"
+msgid "Terminal"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:16
-msgid "_Report Bug"
+msgid "Upgrading Ubuntu"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:17
-msgid "_Restart Now"
+msgid "_Keep"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "Reload"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr ""
@@ -450,7 +493,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -469,52 +512,56 @@ msgid "Changes"
msgstr "Changes"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
+msgid "Chec_k"
msgstr ""
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Description"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Software Updates"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr ""
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
msgstr "Installing updates..."
@@ -590,7 +637,7 @@ msgid "_Check for updates automatically:"
msgstr "Installing updates..."
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -621,12 +668,13 @@ msgid "Comment:"
msgstr "Comment:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Distribution:"
+#, fuzzy
+msgid "Components:"
+msgstr "Components"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Sections:"
+msgid "Distribution:"
+msgstr "Distribution:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
#, fuzzy
@@ -644,14 +692,14 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
#, fuzzy
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
-"Enter the complete APT line of the repository that you want to "
-"add\n"
+"Enter the complete APT line of the repository that you want to add"
+"b>\n"
"\n"
"The APT line contains the type, location and content of a repository, for "
"example \"deb http://ftp.debian.org sarge main\". You can find a "
@@ -683,9 +731,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -733,111 +779,139 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
#, fuzzy
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 5.04 Updates"
+#. Description
#: ../channels/Ubuntu.info.in:23
#, fuzzy
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Ubuntu 5.04 Security Updates"
+#. Description
#: ../channels/Ubuntu.info.in:40
#, fuzzy
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr "Ubuntu 5.10 Updates"
+#. Description
#: ../channels/Ubuntu.info.in:57
#, fuzzy
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr "Ubuntu 5.10 Updates"
+#. Description
#: ../channels/Ubuntu.info.in:74
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "CD disk with Ubuntu 5.10 \"Breezy Badger\""
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 Security Updates"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 Updates"
+#. Description
#: ../channels/Ubuntu.info.in:125
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Updates"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
#, fuzzy
msgid "Officially supported"
msgstr "Officially supported"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Restricted copyright"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Community maintained (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Non-free (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 \"Sarge\""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
#, fuzzy
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Debian Stable Security Updates"
+#. Description
#: ../channels/Debian.info.in:34
#, fuzzy
msgid "Debian \"Etch\" (testing)"
msgstr "Debian Testing"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
#, fuzzy
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian Non-US (Unstable)"
-#: ../channels/Debian.info.in:51
-#, fuzzy
-msgid "Oficially supported"
-msgstr "Officially supported"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr ""
+#, fuzzy
+#~ msgid "Installing updates"
+#~ msgstr "Installing updates..."
+
+#~ msgid "Sections:"
+#~ msgstr "Sections:"
+
+#, fuzzy
+#~ msgid "Oficially supported"
+#~ msgstr "Officially supported"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Reload the package information from the server."
@@ -876,9 +950,6 @@ msgstr ""
#~ msgid "Sources"
#~ msgstr "Software Sources"
-#~ msgid "Components"
-#~ msgstr "Components"
-
#~ msgid "Repository"
#~ msgstr "Repository"
@@ -897,13 +968,13 @@ msgstr ""
#~ msgstr ""
#~ "Authentication keys\n"
#~ "\n"
-#~ "You can add and remove authentication keys in this dialogue. A key makes it "
-#~ "possible to check verify the integrity of the software you download."
+#~ "You can add and remove authentication keys in this dialogue. A key makes "
+#~ "it possible to check verify the integrity of the software you download."
#, fuzzy
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
#~ "Add a new key file to the trusted keyring. Make sure that you got the key "
#~ "over a secure channel and that you trust the owner. "
@@ -935,11 +1006,11 @@ msgstr ""
#, fuzzy
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
-#~ "Restore the default keys shiped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shiped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgid "Set _maximum size for the package cache"
#~ msgstr "Set _maximum size for the package cache"
@@ -969,13 +1040,13 @@ msgstr ""
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgid "Cancel downloading the changelog"
#~ msgstr "Cancel downloading the changelog"
@@ -1064,9 +1135,6 @@ msgstr ""
#~ msgid "Version %s: \n"
#~ msgstr "Version %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "Downloading changes..."
-
#~ msgid "There are no updated packages"
#~ msgstr "There are no updated packages"
@@ -1081,7 +1149,8 @@ msgstr ""
#~ msgstr[1] "You have selected all %s updated packages, total size %s"
#~ msgid "You have selected %s out of %s updated package, size %s"
-#~ msgid_plural "You have selected %s out of %s updated packages, total size %s"
+#~ msgid_plural ""
+#~ "You have selected %s out of %s updated packages, total size %s"
#~ msgstr[0] "You have selected %s out of %s updated package, size %s"
#~ msgstr[1] "You have selected %s out of %s updated packages, total size %s"
@@ -1089,11 +1158,11 @@ msgstr ""
#~ msgstr "The updates are being applied."
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgid "Updating package list..."
#~ msgstr "Updating package list..."
@@ -1109,22 +1178,22 @@ msgstr ""
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "There is a new release of Ubuntu available!"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgid "Never show this message again"
#~ msgstr "Never show this message again"
@@ -1152,14 +1221,14 @@ msgstr ""
#~ msgstr "Repositories changed"
#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources.list "
-#~ "is stored in %s.save. \n"
+#~ "The repository information has changes. A backup copy of your sources."
+#~ "list is stored in %s.save. \n"
#~ "\n"
#~ "You need to reload the package list from the servers for your changes to "
#~ "take effect. Do you want to do this now?"
#~ msgstr ""
-#~ "The repository information has changes. A backup copy of your sources.list "
-#~ "is stored in %s.save. \n"
+#~ "The repository information has changes. A backup copy of your sources."
+#~ "list is stored in %s.save. \n"
#~ "\n"
#~ "You need to reload the package list from the servers for your changes to "
#~ "take effect. Do you want to do this now?"
@@ -1177,11 +1246,13 @@ msgstr ""
#~ msgid ""
#~ "This means that besides the actual upgrade of the packages some further "
#~ "action (such as installing or removing packages) is required. Please use "
-#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation."
+#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
+#~ "situation."
#~ msgstr ""
#~ "This means that besides the actual upgrade of the packages some further "
#~ "action (such as installing or removing packages) is required. Please use "
-#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation."
+#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
+#~ "situation."
#~ msgid "The following packages are not upgraded: "
-#~ msgstr "The following packages are not upgraded: "
\ No newline at end of file
+#~ msgstr "The following packages are not upgraded: "
diff --git a/po/es.po b/po/es.po
index 90c99c7f..7ba2d0f6 100644
--- a/po/es.po
+++ b/po/es.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: es\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-23 11:17+0000\n"
"Last-Translator: Ricardo Pérez López \n"
"Language-Team: Spanish \n"
@@ -19,42 +19,41 @@ msgstr ""
"X-Generator: KBabel 1.10\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr "Cada %s días"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "Después de %s días"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr "Importar clave"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Hubo un error al importar el fichero seleccionado"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
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:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Hubo un error al quitar la clave"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+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:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -65,11 +64,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "Por favor, introduzca un nombre para el disco"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr "Por favor, inserte un disco en la unidad:"
@@ -94,6 +93,7 @@ msgstr "No se han podido actualizar los meta-paquetes requeridos"
msgid "A essential package would have to be removed"
msgstr "Se ha tenido que desinstalar un paquete esencial"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr "No se ha podido calcular la actualización"
@@ -106,11 +106,12 @@ msgstr ""
"Ha ocurrido un problema imposible de resolver cuando se calculaba la "
"actualización. Por favor, informe de ésto como un error: "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr "Error autenticando algunos paquetes"
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
@@ -120,12 +121,12 @@ msgstr ""
"problema transitorio en la red. Pruebe de nuevo más tarde. Vea abajo una "
"lista de los paquetes no autenticados."
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "No se ha podido instalar «%s»"
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
@@ -133,11 +134,12 @@ msgstr ""
"No ha sido posible instalar un paquete requerido. Por favor, informe de ésto "
"como un fallo. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr "No se ha podido suponer el meta-paquete"
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -155,11 +157,12 @@ msgstr ""
msgid "Reading cache"
msgstr "Leyendo caché"
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr "No se ha encontrado una entrada válida"
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
@@ -167,11 +170,11 @@ msgstr ""
"Cuando se exploraba la información de su repositorio, se encontró una "
"entrada no válida para la actualización.\n"
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr "Información de repositorio no válida"
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
@@ -179,11 +182,11 @@ msgstr ""
"La actualización de la información del repositorio generó un archivo "
"incorrecto. Por favor, informe de ésto como un error."
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr "Error durante la actualización"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
@@ -192,11 +195,11 @@ msgstr ""
"tipo de problema en la red, por lo que le recomendamos que compruebe su "
"conexión de red y vuelva a intentarlo."
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr "No hay espacio suficiente en el disco"
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -207,18 +210,20 @@ msgstr ""
"espacio en disco. Vacíe su papelera y elimine los paquetes temporales de "
"instalaciones anteriores usando «sudo apt-get clean» en una terminal."
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr "¿Desea comenzar la actualización?"
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr "No se han podido instalar las actualizaciones"
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
+#, fuzzy
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
"La actualización se cancelará ahora. Su sistema puede haber quedado en un "
"estado no usable. Por favor, intente con «sudo apt-get install -f» en una "
@@ -236,15 +241,24 @@ msgstr ""
"La actualización se cancelará ahora. Por favor, compruebe su conexión a "
"internet (o su soporte de instalación) y vuelva a intentarlo. "
-#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+#: ../DistUpgrade/DistUpgradeControler.py:273
+#, fuzzy
+msgid "Remove obsolete packages?"
msgstr "¿Desinstalar los paquetes obsoletos?"
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr "Error durante la confirmación"
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
@@ -253,151 +267,169 @@ msgstr ""
"inferior para más información. "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr "Comprobando gestor de paquetes"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr "Actualizando la información del repositorio"
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr "Solicitando confirmación"
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr "Actualizando"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr "Buscando paquetes obsoletos"
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr "La actualización del sistema se ha completado."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr "Por favor, inserte «%s» en la unidad «%s»"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr "La descarga se ha completado"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr "Descargando archivo %li de %li a %s/s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr "%s restantes"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
-#, python-format
-msgid "Downloading file %li of %li at unknown speed"
-msgstr "Descargando archivo %li de %li a velocidad desconocida"
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
+#, fuzzy, python-format
+msgid "Downloading file %li of %li"
+msgstr "Descargando archivo %li de %li a %s/s"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
-msgstr "Instalando actualizaciones"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+#, fuzzy
+msgid "Applying changes"
+msgstr "Descargando informe de cambios..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr "No se ha podido instalar «%s»"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr ""
"La actualización se cancelará ahora. Por favor, avise de esto como un fallo."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr "Ha ocurrido un error fatal"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
"Por favor, informe de esto como un fallo e incluya los ficheros ~/dist-"
"upgrade.log y ~/dist-upgrade-apt.log en su informe. La actualización se "
"cancelará ahora. "
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] "Se va a desinstalar %s paquete."
msgstr[1] "Se van a desinstalar %s paquetes."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] "Se va a instalar %s paquete nuevo."
msgstr[1] "Se van a instalar %s paquetes nuevos."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] "Se va a actualizar %s paquete."
msgstr[1] "Se van a actualizar %s paquetes."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr "Debe descargar un total de %s."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
"La actualización puede durar varias horas, y no puede cancelarse después en "
"ningún momento."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
"Para prevenir la pérdida de datos, cierre todas las aplicaciones y "
"documentos."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr "No se ha podido encontrar ninguna actualización"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr "Su sistema ya ha sido actualizado."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr "Desinstalar %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr "Instalar %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr "Actualizar %s"
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr "Se requiere reiniciar el equipo"
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -407,6 +439,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -426,20 +459,20 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:5
msgid "Restart the system to complete the upgrade"
-msgstr ""
-"Reinicie el sistema para completar la actualización"
+msgstr "Reinicie el sistema para completar la actualización"
#: ../DistUpgrade/DistUpgrade.glade.h:6
msgid "Start the upgrade?"
msgstr "¿Comenzar la actualización?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
+#, fuzzy
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
-"Actualizando a Ubuntu «Dapper» "
-"6.04"
+"Actualizando a Ubuntu «Dapper» 6.04"
+"span>"
#: ../DistUpgrade/DistUpgrade.glade.h:8
msgid "Cleaning up"
@@ -450,38 +483,51 @@ msgid "Details"
msgstr "Detalles"
#: ../DistUpgrade/DistUpgrade.glade.h:10
+msgid "Difference between the files"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
msgstr "Descargando e instalando las actualizaciones"
-#: ../DistUpgrade/DistUpgrade.glade.h:11
+#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
msgstr "Modificando los canales de software"
-#: ../DistUpgrade/DistUpgrade.glade.h:12
+#: ../DistUpgrade/DistUpgrade.glade.h:13
msgid "Preparing the upgrade"
msgstr "Preparando la actualización"
-#: ../DistUpgrade/DistUpgrade.glade.h:13
+#: ../DistUpgrade/DistUpgrade.glade.h:14
msgid "Restarting the system"
msgstr "Reiniciando el sistema"
-#: ../DistUpgrade/DistUpgrade.glade.h:14
+#: ../DistUpgrade/DistUpgrade.glade.h:15
msgid "Terminal"
msgstr "Terminal"
-#: ../DistUpgrade/DistUpgrade.glade.h:15
+#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
msgstr "Actualizando Ubuntu"
-#: ../DistUpgrade/DistUpgrade.glade.h:16
+#: ../DistUpgrade/DistUpgrade.glade.h:17
+msgid "_Keep"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "_Recargar"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
msgstr "_Informar de un error"
-#: ../DistUpgrade/DistUpgrade.glade.h:17
+#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
msgstr "_Reiniciar ahora"
-#: ../DistUpgrade/DistUpgrade.glade.h:18
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr "_Continuar actualización"
@@ -499,8 +545,9 @@ msgstr ""
"software»."
#: ../data/UpdateManager.glade.h:4
+#, fuzzy
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -523,30 +570,35 @@ msgid "Changes"
msgstr "Cambios"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
-msgstr "Comprobar las actualizaciones disponibles"
+#, fuzzy
+msgid "Chec_k"
+msgstr "_Comprobar"
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Descripción"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr "Notas de publicación"
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr "Mostrar detalles"
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Mostrar el progreso de cada archivo individua"
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Actualizaciones de software"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -554,23 +606,23 @@ msgstr ""
"Las actualizaciones de software pueden corregir errores, eliminar fallos de "
"seguridad, y proporcionar nuevas funcionalidades."
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr "A_ctualizar"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr "Actualizar a la última versión de Ubuntu"
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr "_Comprobar"
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr "_Ocultar esta información en el futuro"
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
msgstr "_Instalar actualizaciones"
@@ -637,7 +689,8 @@ msgid "_Check for updates automatically:"
msgstr "_Comprobar actualizaciones automáticamente:"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+#, fuzzy
+msgid "_Download updates in the background, but do not install them"
msgstr "_Descargar actualizaciones en segundo plano, pero no instalarlas"
#: ../data/SoftwareProperties.glade.h:16
@@ -660,8 +713,8 @@ msgstr ""
"La información de los canales está obsoleta\n"
"\n"
"Debe recargar la información de los canales para poder instalar software y "
-"actualizaciones a partir de los canales recientemente añadidos o cambiados. "
-"\n"
+"actualizaciones a partir de los canales recientemente añadidos o "
+"cambiados. \n"
"\n"
"Necesita una conexión a internet para continuar."
@@ -674,12 +727,13 @@ msgid "Comment:"
msgstr "Comentario:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Distribución:"
+#, fuzzy
+msgid "Components:"
+msgstr "Componentes"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Secciones:"
+msgid "Distribution:"
+msgstr "Distribución:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
msgid "Sections"
@@ -695,14 +749,14 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
-"Introduzca la línea completa de APT del canal que quiere "
-"añadir\n"
+"Introduzca la línea completa de APT del canal que quiere añadir"
+"big>\n"
"\n"
"La línea de APT contiene el tipo, ubicación y contenido de un repositorio, "
"por ejemplo \"deb http://ftp.debian.org sarge main\"."
@@ -732,10 +786,9 @@ msgid "Scanning CD-ROM"
msgstr "Analizando el CD-ROM"
#: ../data/SoftwarePropertiesDialogs.glade.h:24
+#, fuzzy
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] "_Añadir un canal"
-msgstr[1] "_Añadir canales"
+msgstr "_Añadir un canal"
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -787,101 +840,137 @@ msgstr ""
msgid "The window size"
msgstr "El tamaño de la ventana"
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
-msgstr ""
-"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+#, fuzzy
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 6.04 «Dapper Drake»"
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Actualizaciones de seguridad de Ubuntu 6.04"
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Updates"
msgstr "Actualizaciones de Ubuntu 6.04"
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+#, fuzzy
+msgid "Ubuntu 6.06 Backports"
msgstr "«Backports» de Ubuntu 6.04"
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 «Breezy Badger»"
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Actualizaciones de seguridad de Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Actualizaciones de Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr "«Backports» de Ubuntu 5.10"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr "Soportado oficialmente"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Copyright restringido"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Mantenido por la comunidad (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Software no libre (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 «Sarge»"
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr "http://security.debian.org/"
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Actualizaciones de seguridad de Debian 3.1 «Sarge»"
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr "Debian «Etch» (pruebas)"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr "http://http.us.debian.org/debian/"
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian «Sid» (inestable)"
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr "Soportado oficialmente"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr "Software compatible con la DFSG con dependencias no libres"
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr "Software no compatible con la DFSG"
+#~ msgid "Downloading file %li of %li at unknown speed"
+#~ msgstr "Descargando archivo %li de %li a velocidad desconocida"
+
+#~ msgid "Installing updates"
+#~ msgstr "Instalando actualizaciones"
+
+#~ msgid "Check for available updates"
+#~ msgstr "Comprobar las actualizaciones disponibles"
+
+#~ msgid "Sections:"
+#~ msgstr "Secciones:"
+
+#~ msgid "Oficially supported"
+#~ msgstr "Soportado oficialmente"
+
#~ msgid "Reload the latest information about updates"
#~ msgstr "Recargar la última información sobre actualizaciones"
@@ -894,7 +983,8 @@ msgstr "Software no compatible con la DFSG"
#~ "\n"
#~ "Need to get the changes from the central server"
#~ msgstr ""
-#~ "Descargando informe de cambios\n"
+#~ "Descargando informe de cambios"
+#~ "span>\n"
#~ "\n"
#~ "Se necesita descargar los cambios del servidor central"
@@ -930,16 +1020,13 @@ msgstr "Software no compatible con la DFSG"
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Actualizaciones disponibles\n"
#~ "\n"
-#~ "El gestor de actualizaciones encontró los siguientes paquetes actualizables. "
-#~ "Puede actualizarlos usando el botón Instalar."
-
-#~ msgid "Components"
-#~ msgstr "Componentes"
+#~ "El gestor de actualizaciones encontró los siguientes paquetes "
+#~ "actualizables. Puede actualizarlos usando el botón Instalar."
#~ msgid "Repository"
#~ msgstr "Repositorio"
@@ -959,19 +1046,20 @@ msgstr "Software no compatible con la DFSG"
#~ msgstr ""
#~ "Claves de autenticación\n"
#~ "\n"
-#~ "Puede añadir y quitar claves de autenticación desde este diálogo. Una clave "
-#~ "hace posible verificar la integridad del software que descarga."
+#~ "Puede añadir y quitar claves de autenticación desde este diálogo. Una "
+#~ "clave hace posible verificar la integridad del software que descarga."
#~ msgid "A_uthentication"
#~ msgstr "A_utenticación"
#, fuzzy
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
#~ "Añadir un nuevo archivo de clave al anillo de confianza. Asegúrese de que "
-#~ "obtuvo la clave a través de un canal seguro y que confía en el propietario. "
+#~ "obtuvo la clave a través de un canal seguro y que confía en el "
+#~ "propietario. "
#~ msgid "Automatically clean _temporary packages files"
#~ msgstr "Limpiar _temporalmente los archivos de paquetes"
@@ -993,8 +1081,8 @@ msgstr "Software no compatible con la DFSG"
#, fuzzy
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
#~ "Recupera las claves entregadas originalmente con la distribución. Esto no "
#~ "cambia las claves instaladas por el usuario."
@@ -1022,8 +1110,8 @@ msgstr "Software no compatible con la DFSG"
#~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation."
#~ msgstr ""
#~ "Ésto significa que no se satisfacen algunas dependencias de los paquetes "
-#~ "instalados. Utilice la \"Actualización inteligente\" de synaptic o \"apt-get "
-#~ "dist-upgrade\" para arreglar la situación."
+#~ "instalados. Utilice la \"Actualización inteligente\" de synaptic o \"apt-"
+#~ "get dist-upgrade\" para arreglar la situación."
#~ msgid "It is not possible to upgrade all packages."
#~ msgstr "No es posible actualizar todos los paquetes."
@@ -1031,12 +1119,13 @@ msgstr "Software no compatible con la DFSG"
#~ msgid ""
#~ "This means that besides the actual upgrade of the packages some further "
#~ "action (such as installing or removing packages) is required. Please use "
-#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation."
+#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
+#~ "situation."
#~ msgstr ""
-#~ "Ésto significa que además de la actualización de los paquetes será necesaria "
-#~ "alguna acción adicional (como instalar o quitar paquetes). Utilice la "
-#~ "\"Actualización inteligente\" de synaptic o \"apt-get dist-upgrade\" para "
-#~ "arreglar la situación."
+#~ "Ésto significa que además de la actualización de los paquetes será "
+#~ "necesaria alguna acción adicional (como instalar o quitar paquetes). "
+#~ "Utilice la \"Actualización inteligente\" de synaptic o \"apt-get dist-"
+#~ "upgrade\" para arreglar la situación."
#~ msgid "The following packages are not upgraded: "
#~ msgstr "Los siguientes paquetes no están actualizados: "
@@ -1050,24 +1139,21 @@ msgstr "Software no compatible con la DFSG"
#~ "Failed to download changes. Please check if there is an active internet "
#~ "connection."
#~ msgstr ""
-#~ "Hubo un fallo al descargar el informe de cambios. Compruebe si tiene alguna "
-#~ "conexión activa."
+#~ "Hubo un fallo al descargar el informe de cambios. Compruebe si tiene "
+#~ "alguna conexión activa."
#~ msgid "Version %s: \n"
#~ msgstr "Versión %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "Descargando informe de cambios..."
-
#~ msgid "The updates are being applied."
#~ msgstr "Se están aplicando las actualizaciones."
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
-#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo tiempo. "
-#~ "Cierre la otra aplicación primero."
+#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo "
+#~ "tiempo. Cierre la otra aplicación primero."
#~ msgid "Updating package list..."
#~ msgstr "Actualizando lista de paquetes..."
@@ -1086,35 +1172,34 @@ msgstr "Software no compatible con la DFSG"
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
-#~ "Actualícese a una nueva versión de Ubuntu Linux. La versión que está usando "
-#~ "no obtendrá más actualizaciones de seguridad ni otras actualizaciones "
-#~ "críticas. Visite http://www.ubuntulinux.org para información acerca de cómo "
-#~ "actualizar."
+#~ "Actualícese a una nueva versión de Ubuntu Linux. La versión que está "
+#~ "usando no obtendrá más actualizaciones de seguridad ni otras "
+#~ "actualizaciones críticas. Visite http://www.ubuntulinux.org para "
+#~ "información acerca de cómo actualizar."
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "Hay una nueva versión de Ubuntu disponible"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
-#~ "Está disponible una nueva versión con el nombre '%s'. Visite "
-#~ "http://www.ubuntulinux.org/ para recibir instrucciones acerca de cómo "
-#~ "actualizar."
+#~ "Está disponible una nueva versión con el nombre '%s'. Visite http://www."
+#~ "ubuntulinux.org/ para recibir instrucciones acerca de cómo actualizar."
#~ msgid "Never show this message again"
#~ msgstr "No mostrar más este mensaje"
#, fuzzy
#~ msgid ""
-#~ "This usually means that another package management application (like apt-get "
-#~ "or aptitude) already running. Please close that application first"
+#~ "This usually means that another package management application (like apt-"
+#~ "get or aptitude) already running. Please close that application first"
#~ msgstr ""
-#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo tiempo. "
-#~ "Cierre la otra aplicación primero."
+#~ "Solo puede ejecutar una aplicación de gestión de paquetes al mismo "
+#~ "tiempo. Cierre la otra aplicación primero."
#~ msgid "Initializing and getting list of updates..."
#~ msgstr "Inicializando y obteniendo lista de actualizaciones..."
@@ -1165,8 +1250,8 @@ msgstr "Software no compatible con la DFSG"
#~ msgstr "Hay cambios en los repositorios"
#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources.list "
-#~ "is stored in %s.save. \n"
+#~ "The repository information has changes. A backup copy of your sources."
+#~ "list is stored in %s.save. \n"
#~ "\n"
#~ "You need to reload the package list from the servers for your changes to "
#~ "take effect. Do you want to do this now?"
@@ -1180,10 +1265,10 @@ msgstr "Software no compatible con la DFSG"
#, fuzzy
#~ msgid ""
#~ "Available Updates\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Actualizaciones disponibles\n"
#~ "\n"
-#~ "El gestor de actualizaciones encontró los siguientes paquetes actualizables. "
-#~ "Puede actualizarlos usando el botón Instalar."
\ No newline at end of file
+#~ "El gestor de actualizaciones encontró los siguientes paquetes "
+#~ "actualizables. Puede actualizarlos usando el botón Instalar."
diff --git a/po/fi.po b/po/fi.po
index 7acc900a..375b2e60 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
-"Report-Msgid-Bugs-To: michael.vogt@canonical.com\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-27 10:27+0000\n"
"Last-Translator: Marko Kervinen \n"
"Language-Team: Finnish \n"
@@ -16,41 +16,40 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr "%s päivän välein"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "%s päivän jälkeen"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr "Tuo avain"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Virhe tuotaessa valittua avainta"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
"Valittu tiedosto ei ole kelvollinen GPG-avaintiedosto, tai se on "
"vahingoittunut."
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Virhe poistettaessa avainta"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+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:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -61,11 +60,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "Syötä nimi levylle"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr "Aseta levy asemaan:"
@@ -90,6 +89,7 @@ msgstr "Ei voida päivittää tarvittavia metapaketteja"
msgid "A essential package would have to be removed"
msgstr "Välttämätön paketti jouduttaisiin poistamaan"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr "Ei voitu tehdä tarvittavia päivitykseen liittyviä tarkistuksia"
@@ -102,11 +102,12 @@ msgstr ""
"Tehtäessä päivitykseen liittyviä tarkistuksia tapahtui virhe jota ei voitu "
"korjata. Ilmoita tästä virheraportilla. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr "Tapahtui virhe varmennettaessa joitain paketteja"
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
@@ -116,23 +117,24 @@ msgstr ""
"ongelma. Voit yrittää myöhemmin uudelleen. Alla on luettelo "
"varmentamattomista paketeista."
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "Ei voitu asentaa pakettia '%s'"
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr ""
"Pyydettyä pakettia ei voitu asentaa. Ole hyvä ja luo tästä virheilmoitus. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr "Ei voitu arvata metapakettia"
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -150,11 +152,12 @@ msgstr ""
msgid "Reading cache"
msgstr "Luetaan kätköä"
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr "Ei löytynyt kelpoa ohjelmavarastomerkintää"
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
@@ -162,11 +165,11 @@ msgstr ""
"Luettaessa varastotietoja ei löydetty kelvollisia ohjelmavarastoja "
"päivittämistä varten.\n"
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr "Virhe ohjelmavarastotiedoissa"
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
@@ -174,11 +177,11 @@ msgstr ""
"Ohjelmavarastotietojen päivittäminen johti epäkelpoon tiedostoon. Ilmoita "
"tästä virheraportilla."
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr "Virhe päivitettäessä"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
@@ -186,11 +189,11 @@ msgstr ""
"Päivitettäessä tapahtui virhe. Tämä on yleensä jonkinlainen verkko-ongelma. "
"Tarkista verkkoyhteytesi toiminta ja yritä uudelleen."
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr "Levytilaa ei ole riittävästi"
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -201,18 +204,20 @@ msgstr ""
"poista aiempien asennusten väliaikaiset pakettitiedostot käyttämällä "
"komentoa 'sudo apt-get clean'."
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr "Haluatko aloittaaa päivityksen?"
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr "Ei voitu asentaa päivityksiä"
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
+#, fuzzy
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
"Päivitys keskeytyy. Järjestelmäsi voi olla käyttökelvottomassa tilassa. "
"Kokeile komentoa 'sudo apt-get install -f' tai Synaptic-ohjelmaa "
@@ -230,15 +235,23 @@ msgstr ""
"Päivitys keskeytyy. Tarkista Internet-yhteytesi tai asennuslähteesi (esim. "
"CD) toiminta ja yritä uudelleen. "
-#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
msgstr "Poista vanhentuneet paketit?"
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr "_Ohita tämä kohta"
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr "_Poista"
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr "Virhe suoritettaesa"
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
@@ -247,147 +260,165 @@ msgstr ""
"lisätietoja. "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr "Tarkistetaan pakettienhallintaa"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr "Päivitetään ohjelmavarastotietoja"
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr "Pyydetään vahvistusta"
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr "Päivitetään"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr "Etsitään vanhetuneita ohjelmia"
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr "Järjestelmän päivitys on valmis."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr "Laita '%s' asemaan '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr "Lataus on valmis"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr "Ladataan tiedostoa %li/%li nopeudella %s/s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr "%s jäljellä"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
-#, python-format
-msgid "Downloading file %li of %li at unknown speed"
-msgstr "Ladataan tiedostoa %li/%li tuntemattomalla nopeudella"
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
+#, fuzzy, python-format
+msgid "Downloading file %li of %li"
+msgstr "Ladataan tiedostoa %li/%li nopeudella %s/s"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
-msgstr "Asennetaan päivityksiä"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+#, fuzzy
+msgid "Applying changes"
+msgstr "Ladataan muutoksia..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr "Ei voituu asentaa: '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr "Päivitys keskeytyy. Ilmoita tästä virheraportilla."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr "Vakava virhe tapahtui"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-"Ilmoita tästä virheraportilla ja sisällytä siihen tiedostot ~/dist-"
-"upgrade.log ja ~/dist-upgrade-apt.log. Päivitys keskeytyy nyt. "
+"Ilmoita tästä virheraportilla ja sisällytä siihen tiedostot ~/dist-upgrade."
+"log ja ~/dist-upgrade-apt.log. Päivitys keskeytyy nyt. "
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] "%s paketti poistetaan"
msgstr[1] "%s pakettia poistetaan"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] "%s uusi paketti asennetaan"
msgstr[1] "%s uutta pakettia asennetaan"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] "%s paketti päivitetään"
msgstr[1] "%s pakettia päivitetään"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr "Ladattavaa yhteensä %s."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
"Päivitys voi kestää useita tunteja, eikä sitä voi keskeyttää enää myöhemmin."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
"Jottei tietoja häviäisi, sulje kaikki avoinna olevat ohjelmat ja dokumentit."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr "Päivityksiä ei löytynyt"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr "Järjestelmäsi on jo päivitetty."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr "Poista %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr "Asenna %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr "Päivitä %s"
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr "Uudellenkäynnistys vaaditaan"
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -396,6 +427,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -416,17 +448,18 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:5
msgid "Restart the system to complete the upgrade"
msgstr ""
-"Käynnistä järjestelmä uudelleen saattaaksesi päivityksen "
-"loppuun"
+"Käynnistä järjestelmä uudelleen saattaaksesi päivityksen loppuun"
+"big>"
#: ../DistUpgrade/DistUpgrade.glade.h:6
msgid "Start the upgrade?"
msgstr "Aloita päivitys?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
+#, fuzzy
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
"Päivitetään seuraavaksi: Ubuntu "
"\"Dapper\" 6.04"
@@ -440,38 +473,51 @@ msgid "Details"
msgstr "Yksityiskohdat"
#: ../DistUpgrade/DistUpgrade.glade.h:10
+msgid "Difference between the files"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
msgstr "Ladataan ja asennetaan päivityksiä"
-#: ../DistUpgrade/DistUpgrade.glade.h:11
+#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
msgstr "Muutetaan ohjelmakanavia"
-#: ../DistUpgrade/DistUpgrade.glade.h:12
+#: ../DistUpgrade/DistUpgrade.glade.h:13
msgid "Preparing the upgrade"
msgstr "Valmistellaan päivitystä"
-#: ../DistUpgrade/DistUpgrade.glade.h:13
+#: ../DistUpgrade/DistUpgrade.glade.h:14
msgid "Restarting the system"
msgstr "Käynnistetään järjestelmä uudelleen"
-#: ../DistUpgrade/DistUpgrade.glade.h:14
+#: ../DistUpgrade/DistUpgrade.glade.h:15
msgid "Terminal"
msgstr "Pääte"
-#: ../DistUpgrade/DistUpgrade.glade.h:15
+#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
msgstr "Päivitetään Ubuntua"
-#: ../DistUpgrade/DistUpgrade.glade.h:16
+#: ../DistUpgrade/DistUpgrade.glade.h:17
+msgid "_Keep"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "_Lataa uudelleen"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
msgstr "_Tee virheraportti"
-#: ../DistUpgrade/DistUpgrade.glade.h:17
+#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
msgstr "_Uudelleenkäynnistä nyt"
-#: ../DistUpgrade/DistUpgrade.glade.h:18
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr "_Jatka päivitystä"
@@ -484,12 +530,13 @@ msgid ""
msgstr ""
"Sinun täytyy tarkistaa päivitykset itse\n"
"Sinun järjestelmäsi ei tutki päivityksiä automaattisesti. Voit muuttaa näitä "
-"asetuksia kohdasta \"Järjestelmä\" -> \"Ylläpito\" -> \"Ohjelmien "
-"asetukset\"."
+"asetuksia kohdasta \"Järjestelmä\" -> \"Ylläpito\" -> \"Ohjelmien asetukset"
+"\"."
#: ../data/UpdateManager.glade.h:4
+#, fuzzy
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -512,30 +559,35 @@ msgid "Changes"
msgstr "Muutokset"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
-msgstr "Tarkista saatavilla olevat päivitykset"
+#, fuzzy
+msgid "Chec_k"
+msgstr "_Check"
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Kuvaus"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr "Julkaisutiedot"
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr "Näytä yksityiskohdat"
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Näytä edistyminen yksittäisten tiedostojen osalta"
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Ohjelmapäivitykset"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -543,23 +595,23 @@ msgstr ""
"Ohjelmapäivitykset voivat korjata virheitä ja turva-aukkoja tai tarjota "
"uusia ominaisuuksia."
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr "_Päivitä"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr "Päivitä Ubuntun viimeisimpään versioon"
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr "_Check"
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr "P_iilota tämä tieto jatkossa"
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
msgstr "_Asenna päivitykset"
@@ -626,7 +678,7 @@ msgid "_Check for updates automatically:"
msgstr "_Tarkista päivitykset automaattisesti:"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr "_Lataa päivitykset taustalla, mutta älä asenna niitä"
#: ../data/SoftwareProperties.glade.h:16
@@ -662,12 +714,13 @@ msgid "Comment:"
msgstr "Kommentti:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Jakelu:"
+#, fuzzy
+msgid "Components:"
+msgstr "Komponentit"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Osastot:"
+msgid "Distribution:"
+msgstr "Jakelu:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
msgid "Sections"
@@ -683,16 +736,16 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
"Kirjoita haluamasi kanavan koko APT-rivi\n"
"\n"
-"APT-rivi sisältää kanavan tyypin, sijainnin ja sisällön, esimerkiksi "
-"\"deb http://ftp.debian.org sarge main\"."
+"APT-rivi sisältää kanavan tyypin, sijainnin ja sisällön, esimerkiksi "
+"\"deb http://ftp.debian.org sarge main\"."
#: ../data/SoftwarePropertiesDialogs.glade.h:18
msgid "APT line:"
@@ -719,10 +772,9 @@ msgid "Scanning CD-ROM"
msgstr "Luetaan CD-levyä"
#: ../data/SoftwarePropertiesDialogs.glade.h:24
+#, fuzzy
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] "_Lisää kanava"
-msgstr[1] "_Lisää kanavia"
+msgstr "_Lisää kanava"
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -773,105 +825,144 @@ msgstr ""
msgid "The window size"
msgstr "Ikkunan koko"
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
-msgstr ""
-"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+#, fuzzy
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 6.04 'Dapper Drake'"
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Ubuntu 6.04 turvallisuuspäivitykset"
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Updates"
msgstr "Ubuntu 6.04 päivitykset"
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+#, fuzzy
+msgid "Ubuntu 6.06 Backports"
msgstr "Ubuntu 6.04 takaisinsovitukset"
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 turvallisuuspäivitykset"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 päivitykset"
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 takaisinsovitukset"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr "Virallisesti tuettu"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Rajoitettu tekijänoikeus"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Yhteisön ylläpitämät (universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Ei-vapaat ohjelmat (multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 \"Sarge\""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr "http://security.debian.org"
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Debian 3.1 \"Sarge\" turvallisuuspäivitykset"
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr "Debian \"Etch\" (testattava)"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr "http://http.us.debian.org/debian/"
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian \"Sid\" (epävakaa)"
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr "Virallisesti tuettu"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
"DFSG-yhteensopivat ohjelmat joilla riippuvuuksia epävapaisiin ohjelmiin"
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr "DFSG-epäyhteensopivat ohjelmat"
-#~ msgid "_Download updates in the background, but do not install them"
+#~ msgid "Remove obsolete Packages?"
+#~ msgstr "Poista vanhentuneet paketit?"
+
+#~ msgid "Downloading file %li of %li at unknown speed"
+#~ msgstr "Ladataan tiedostoa %li/%li tuntemattomalla nopeudella"
+
+#~ msgid "Installing updates"
+#~ msgstr "Asennetaan päivityksiä"
+
+#~ msgid "Check for available updates"
+#~ msgstr "Tarkista saatavilla olevat päivitykset"
+
+#~ msgid "_Download updates in the backgound, but do not install them"
#~ msgstr "_Lataa päivitykset taustalla, mutta älä asenna niitä"
+#~ msgid "Sections:"
+#~ msgstr "Osastot:"
+
+#~ msgid "Oficially supported"
+#~ msgstr "Virallisesti tuettu"
+
#~ msgid "Software Channel"
#~ msgstr "Ohjelmistokanava"
@@ -904,21 +995,13 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgid "The file '%s' does not contain any valid software channels."
#~ msgstr "Tiedosto '%s' ei sisällä sopivia ohjelmistokanavia."
-#~ msgid "Remove obsolete packages?"
-#~ msgstr "Poista vanhentuneet paketit?"
-
-#~ msgid "_Skip This Step"
-#~ msgstr "_Ohita tämä kohta"
-
-#~ msgid "_Remove"
-#~ msgstr "_Poista"
-
#~ msgid ""
-#~ "You need to manually reload the latest information about "
-#~ "updates\n"
+#~ "You need to manually reload the latest information about updates"
+#~ "big>\n"
#~ "\n"
-#~ "Your system does not check for updates automatically. You can configure this "
-#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"."
+#~ "Your system does not check for updates automatically. You can configure "
+#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties"
+#~ "\"."
#~ msgstr ""
#~ "Sinun pitää ladata päivitystiedot uudelleen käsin\n"
#~ "\n"
@@ -943,9 +1026,6 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgid "Ubuntu 5.04 \"Hoary Hedgehog\""
#~ msgstr "Ubuntu 5.04 \"Hoary Hedgehog\""
-#~ msgid "Components"
-#~ msgstr "Komponentit"
-
#~ msgid "Software Sources"
#~ msgstr "Ohjelmalähteet"
@@ -976,19 +1056,20 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgstr ""
#~ "Kirjoita haluamasi varaston koko APT-rivi\n"
#~ "\n"
-#~ "APT-rivi sisältää varaston tyypin, sijainnin ja sisällön, esimerkiksi "
-#~ "\"deb http://ftp.debian.org sarge main\". Lisätietoja aiheesta löydät "
+#~ "APT-rivi sisältää varaston tyypin, sijainnin ja sisällön, esimerkiksi "
+#~ "\"deb http://ftp.debian.org sarge main\". Lisätietoja aiheesta löydät "
#~ "dokumentaatiosta."
#~ msgid "A_uthentication"
#~ msgstr "Varmenn_us"
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
-#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että vastaanotit "
-#~ "avaimen luotettavaa kanavaa pitkin, ja että luotat sen omistajaan. "
+#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että "
+#~ "vastaanotit avaimen luotettavaa kanavaa pitkin, ja että luotat sen "
+#~ "omistajaan. "
#~ msgid "Automatically check for software _updates."
#~ msgstr "Tarkista ohjelma_päivitykset automaattisesti."
@@ -1012,8 +1093,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgstr "Maksimikoko megatavuissa:"
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
#~ "Palauta jakelun mukana toimitetut oletusavaimet. Tämä ei muuta tai poista "
#~ "itse asennettuja avaimia."
@@ -1042,8 +1123,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Saatavilla olevat päivitykset\n"
#~ "\n"
@@ -1056,17 +1137,17 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgid ""
#~ "Reload the package information from the server. \n"
#~ "\n"
-#~ "If you have a permanent internet connection this is done automatically. If "
-#~ "you are behind an internet connection that needs to be started by hand (e.g. "
-#~ "a modem) you should use this button so that update-manager knows about new "
-#~ "updates."
+#~ "If you have a permanent internet connection this is done automatically. "
+#~ "If you are behind an internet connection that needs to be started by hand "
+#~ "(e.g. a modem) you should use this button so that update-manager knows "
+#~ "about new updates."
#~ msgstr ""
#~ "Lataa pakettitiedot palvelimelta uudelleen. \n"
#~ "\n"
#~ "Jos sinulla on kiinteä Internet-yhteys, tämä tehdään automaattisesti. Jos "
#~ "olet käsin muodostettavan Internet-yhteyden (esim. modeemi) takana, sinun "
-#~ "täytyy käyttää tätä valintaa jotta päivitystenhallinta saisi tiedon uusista "
-#~ "päivityksistä."
+#~ "täytyy käyttää tätä valintaa jotta päivitystenhallinta saisi tiedon "
+#~ "uusista päivityksistä."
#~ msgid "Binary"
#~ msgstr "Binääri"
@@ -1104,8 +1185,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgstr "Varastot muuttuneet"
#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources.list "
-#~ "is stored in %s.save. \n"
+#~ "The repository information has changes. A backup copy of your sources."
+#~ "list is stored in %s.save. \n"
#~ "\n"
#~ "You need to reload the package list from the servers for your changes to "
#~ "take effect. Do you want to do this now?"
@@ -1120,8 +1201,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ "This means that some dependencies of the installed packages are not "
#~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation."
#~ msgstr ""
-#~ "Jotkut asennettujen pakettien riippuvuuksista ovat siis täyttämättä. Käytä "
-#~ "\"Synaptic\"- tai \"apt-get\"-ohjelmia korjataksesi ongelman."
+#~ "Jotkut asennettujen pakettien riippuvuuksista ovat siis täyttämättä. "
+#~ "Käytä \"Synaptic\"- tai \"apt-get\"-ohjelmia korjataksesi ongelman."
#~ msgid "It is not possible to upgrade all packages."
#~ msgstr "Kaikkia paketteja ei voida päivittää."
@@ -1129,12 +1210,13 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgid ""
#~ "This means that besides the actual upgrade of the packages some further "
#~ "action (such as installing or removing packages) is required. Please use "
-#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation."
+#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
+#~ "situation."
#~ msgstr ""
-#~ "Pakettien päivittämisen lisäksi tarvitaan siis joitain muita toimenpiteitä "
-#~ "(kuten pakettien asentamista tai poistamista). Käytä Synaptic-ohjelman "
-#~ "\"Smart Upgrade\"-toimintoa tai \"apt-get dist-upgrade\"-komentoa "
-#~ "korjataksesi ongelman."
+#~ "Pakettien päivittämisen lisäksi tarvitaan siis joitain muita "
+#~ "toimenpiteitä (kuten pakettien asentamista tai poistamista). Käytä "
+#~ "Synaptic-ohjelman \"Smart Upgrade\"-toimintoa tai \"apt-get dist-upgrade"
+#~ "\"-komentoa korjataksesi ongelman."
#~ msgid "The following packages are not upgraded: "
#~ msgstr "Seuraavia paketteja ei päivitetä: "
@@ -1145,20 +1227,18 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgid ""
#~ "Failed to download changes. Please check if there is an active internet "
#~ "connection."
-#~ msgstr "Muutosten lataus epäonnistui. Tarkista, että Internet-yhteys toimii."
+#~ msgstr ""
+#~ "Muutosten lataus epäonnistui. Tarkista, että Internet-yhteys toimii."
#~ msgid "Version %s: \n"
#~ msgstr "Versio: %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "Ladataan muutoksia..."
-
#~ msgid "The updates are being applied."
#~ msgstr "Päivityksiä asennetaan."
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
#~ "Voit hallita paketteja vain yhdellä ohjelmalla kerrallaan. Sulje toinen "
#~ "ohjelma ensin."
@@ -1180,19 +1260,20 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
-#~ "Päivitä uudempaan versioon Ubuntu Linuxista. Käyttämällesi versiolle ei enää "
-#~ "ole tulossa turvallisuuspäivityksiä tai muita kriittisiä päivityksiä. "
-#~ "Tietoja päivittämisestä löydät sivulta http://www.ubuntulinux.org."
+#~ "Päivitä uudempaan versioon Ubuntu Linuxista. Käyttämällesi versiolle ei "
+#~ "enää ole tulossa turvallisuuspäivityksiä tai muita kriittisiä "
+#~ "päivityksiä. Tietoja päivittämisestä löydät sivulta http://www."
+#~ "ubuntulinux.org."
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "Ubuntusta on uusi julkaisu saatavilla!"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
#~ "Uusi julkaisu nimeltään '%s' on saatavilla. Päivitysohjeet löydät "
#~ "osoitteesta http://www.ubuntulinux.org/."
@@ -1204,11 +1285,11 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgstr "Ei saatu haluttua lukitusta"
#~ msgid ""
-#~ "This usually means that another package management application (like apt-get "
-#~ "or aptitude) already running. Please close that application first"
+#~ "This usually means that another package management application (like apt-"
+#~ "get or aptitude) already running. Please close that application first"
#~ msgstr ""
-#~ "Tämä tarkoittaa yleensä, että toinen pakettienhallintaohjelma (kuten apt-get "
-#~ "tai aptitude) on jo käynnissä. Sulje tämä toinen ohjelma ensin."
+#~ "Tämä tarkoittaa yleensä, että toinen pakettienhallintaohjelma (kuten apt-"
+#~ "get tai aptitude) on jo käynnissä. Sulje tämä toinen ohjelma ensin."
#~ msgid "Initializing and getting list of updates..."
#~ msgstr "Alustetaan ja ladataan luetteloa päivityksistä..."
@@ -1237,15 +1318,16 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ "Add a new key file to the trusted keyring. Make sure that you got the key "
#~ "over a secure channel and that you trust the owner. "
#~ msgstr ""
-#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että vastaanotit "
-#~ "avaimen luotettua kanavaa pitkin ja että luotat avaimen omistajaan. "
+#~ "Lisää uusi avaintiedosto luotettuihin avaimiin. Varmista, että "
+#~ "vastaanotit avaimen luotettua kanavaa pitkin ja että luotat avaimen "
+#~ "omistajaan. "
#~ msgid ""
-#~ "Restore the default keys shiped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shiped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
-#~ "Palauta jakelun mukana toimitetut avaimet. Tämä ei tee muutoksia käyttäjän "
-#~ "asentamiin avaimiin."
+#~ "Palauta jakelun mukana toimitetut avaimet. Tämä ei tee muutoksia "
+#~ "käyttäjän asentamiin avaimiin."
#~ msgid "Ubuntu Update Manager"
#~ msgstr "Ubuntun päivitysten hallinta"
@@ -1253,8 +1335,8 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#, fuzzy
#~ msgid ""
#~ "Available Updates\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Saatavilla olevat päivitykset\n"
#~ "\n"
@@ -1265,4 +1347,4 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgstr "0"
#~ msgid "Non-free"
-#~ msgstr "Ei-vapaa"
\ No newline at end of file
+#~ msgstr "Ei-vapaa"
diff --git a/po/fr.po b/po/fr.po
index cc73d029..3581ccca 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager 0.37.2\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-04-02 06:12+0000\n"
"Last-Translator: Alexandre Patenaude \n"
"Language-Team: French \n"
@@ -17,42 +17,41 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr "Tous les %s jours"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "Après %s jours"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr "Importer la clé"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Erreur lors du chargement du fichier sélectionné"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
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 une clé GPG ou alors il est "
"corrompu."
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Erreur lors de la suppression de la clé"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+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ée. Veuillez envoyer "
"ceci comme étant un bogue."
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -63,11 +62,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "Veuillez saisir un nom pour le disque"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr "Veuillez insérer un disque dans le lecteur:"
@@ -92,6 +91,7 @@ msgstr "Les meta-paquets désirés n'ont pu être mis à jour"
msgid "A essential package would have to be removed"
msgstr "Un paquet essentiel devrait être enlevé"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr "Impossible de calculer la mise à jour"
@@ -104,11 +104,12 @@ msgstr ""
"Un problème insoluble est apparu lors du calcul de la mise à jour. Merci de "
"signaler ce bogue. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr "Erreur lors de l'authentification de certains paquets"
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
@@ -118,12 +119,12 @@ msgstr ""
"problème temporaire du réseau. Vous voudrez sans doute réessayer plus tard. "
"Vous trouverez ci-dessous une liste des paquets non authentifiés."
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "Impossible d'installer « %s »"
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
@@ -131,11 +132,12 @@ msgstr ""
"Il a été impossible d'installer un paquet pourtant requis. Merci de signaler "
"ce bogue. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr "Impossible de déterminer le méta-paquet"
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -153,11 +155,12 @@ msgstr ""
msgid "Reading cache"
msgstr "Lecture du cache"
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr "Aucune entrée valide trouvée"
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
@@ -165,11 +168,11 @@ msgstr ""
"Durant la vérification des informations du dépôt, aucune entrée valide pour "
"la mise à jour n'a été trouvée.\n"
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr "Information sur le dépôt invalide"
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
@@ -177,11 +180,11 @@ msgstr ""
"La mise à jour des informations du dépôt a créé un fichier invalide. "
"Veuillez rapporter ceci en tant que bogue."
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr "Erreur lors de la mise à jour"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
@@ -190,11 +193,11 @@ msgstr ""
"un problème quelconque du réseau. Veuillez vérifier votre connexion au "
"réseau et réessayer."
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr "Il n'y a pas assez d'espace libre sur le disque"
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -205,18 +208,20 @@ msgstr ""
"disque. Videz votre corbeille et supprimez les paquets temporaires des "
"installations précédentes en utilisant 'sudo apt-get clean'."
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr "Voulez-vous commencer la mise à jour ?"
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr "Les mises à jour n'ont pu être installées"
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
+#, fuzzy
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
"La mise à jour a été abandonnée maintenant. Votre système pourrait être dans "
"un état instable. Veuillez essayer \"sudo apt-get install -f\" ou utilisez "
@@ -234,15 +239,24 @@ msgstr ""
"La mise a jour a été abandonnée maintenant. Veuillez vérifier votre "
"connexion Internet ou votre médium d'installation, et réessayez. "
-#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+#: ../DistUpgrade/DistUpgradeControler.py:273
+#, fuzzy
+msgid "Remove obsolete packages?"
msgstr "Enlever les paquets obsolètes ?"
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr "Erreur pendant la soumission"
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
@@ -251,149 +265,167 @@ msgstr ""
"ci-dessous pour plus d'informations. "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr "Vérification du gestionnaire de paquets"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr "Mise à jour des informations sur les dépôts en cours"
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr "Demande de confirmation"
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr "Mise à jour en cours"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr "Recherche de logiciels désuets"
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr "La mise à jour du système est terminée."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr "Veuillez insérer « %s » dans le lecteur « %s »"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr "Le téléchargement est terminé"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr "Téléchargement du fichier %li sur %li à %s/s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr "%s restants"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
-#, python-format
-msgid "Downloading file %li of %li at unknown speed"
-msgstr "Téléchargement du fichier %li sur %li à une vitesse inconnue"
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
+#, fuzzy, python-format
+msgid "Downloading file %li of %li"
+msgstr "Téléchargement du fichier %li sur %li à %s/s"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
-msgstr "Installation des mises à jour"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+#, fuzzy
+msgid "Applying changes"
+msgstr "Téléchargement des changements..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr "Impossible d'installer \"%s\""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr "La mise à jour vient d'échouer. Merci de signaler ce bug."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr "Une erreur fatale est survenue"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-"Veuillez signaler ce bogue et joindre les fichiers ~/dist-upgrade.log et "
-"~/dist-upgrade-apt.log à votre rapport. La mise à jour s'annule maintenant. "
+"Veuillez signaler ce bogue et joindre les fichiers ~/dist-upgrade.log et ~/"
+"dist-upgrade-apt.log à votre rapport. La mise à jour s'annule maintenant. "
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] "Le paquet %s va être supprimé."
msgstr[1] "Les paquets %s vont être supprimés."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] "Le paquet %s va être installé."
msgstr[1] "Les paquets %s vont être installés."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] "Le paquet %s va être mis à jour."
msgstr[1] "Les paquets %s vont être mis à jour."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr "Vous devez télécharger un total de %s."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
"La mise à niveau peut prendre plusieurs heures et ne peut pas être annulée "
"plus tard."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
"Pour éviter toute perte de données accidentelle, veuillez fermer toutes les "
"applications ou documents ouverts."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr "Aucune mise à jour n'est disponible"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr "Votre système a déjà été mis à jour."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr "Supprimer %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr "Installer %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr "Mettre à jour %s"
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr "Redémarrage de l'ordinateur requis"
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -403,6 +435,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -430,9 +463,10 @@ msgid "Start the upgrade?"
msgstr "Démarrer la mise à jour ?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
+#, fuzzy
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
"Mise à jour vers Ubuntu \"Dapper\" "
"6.06"
@@ -446,38 +480,51 @@ msgid "Details"
msgstr "Détails"
#: ../DistUpgrade/DistUpgrade.glade.h:10
+msgid "Difference between the files"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
msgstr "Téléchargement et installation des mises à jour"
-#: ../DistUpgrade/DistUpgrade.glade.h:11
+#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
msgstr "Modification des canaux du logiciel"
-#: ../DistUpgrade/DistUpgrade.glade.h:12
+#: ../DistUpgrade/DistUpgrade.glade.h:13
msgid "Preparing the upgrade"
msgstr "Préparation de la mise à jour"
-#: ../DistUpgrade/DistUpgrade.glade.h:13
+#: ../DistUpgrade/DistUpgrade.glade.h:14
msgid "Restarting the system"
msgstr "Redémarrage du système"
-#: ../DistUpgrade/DistUpgrade.glade.h:14
+#: ../DistUpgrade/DistUpgrade.glade.h:15
msgid "Terminal"
msgstr "Terminal"
-#: ../DistUpgrade/DistUpgrade.glade.h:15
+#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
msgstr "Mettre à jour Ubuntu"
-#: ../DistUpgrade/DistUpgrade.glade.h:16
+#: ../DistUpgrade/DistUpgrade.glade.h:17
+msgid "_Keep"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "A_ctualiser"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
msgstr "_Rapporter un bogue"
-#: ../DistUpgrade/DistUpgrade.glade.h:17
+#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
msgstr "_Redémarrer Maintenant"
-#: ../DistUpgrade/DistUpgrade.glade.h:18
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr "_Reprendre la mise à jour"
@@ -488,16 +535,17 @@ msgid ""
"Your system does not check for updates automatically. You can configure this "
"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"."
msgstr ""
-"Vous devez vérifier manuellement la disponibilité de mises à "
-"jour\n"
+"Vous devez vérifier manuellement la disponibilité de mises à jour"
+"big>\n"
"\n"
"Votre système ne contrôle pas les mises à jour automatiquement. Vous pouvez "
"configurer ce comportement dans \"Système\" -> \"Administration\" -> "
"\"Propriété des programmes\""
#: ../data/UpdateManager.glade.h:4
+#, fuzzy
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -520,30 +568,35 @@ msgid "Changes"
msgstr "Changements"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
-msgstr "Rechercher les mises à jour disponibles"
+#, fuzzy
+msgid "Chec_k"
+msgstr "_Vérifier"
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Description"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr "Notes de publication"
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr "Montrer les détails"
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Afficher l'avancement des fichiers individuels"
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Mises à jour des logiciels"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -551,23 +604,23 @@ msgstr ""
"Les mises à jour de logiciels peuvent corriger des erreurs, éliminer des "
"problèmes de sécurité et apporter de nouvelles fonctionalités."
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr "Mettre à _jour"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr "Mettre à jour vers la version la plus récente d'Ubuntu"
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr "_Vérifier"
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr "_Masquer ces informations à l'avenir"
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
msgstr "_Installer les mises à jour"
@@ -635,7 +688,8 @@ msgid "_Check for updates automatically:"
msgstr "_Rechercher des mises à jour automatiquement:"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+#, fuzzy
+msgid "_Download updates in the background, but do not install them"
msgstr ""
"_Télécharger des mises à jour automatiquement, mais ne pas les installer"
@@ -674,12 +728,13 @@ msgid "Comment:"
msgstr "Commentaire :"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Distribution :"
+#, fuzzy
+msgid "Components:"
+msgstr "Composants"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Sections :"
+msgid "Distribution:"
+msgstr "Distribution :"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
msgid "Sections"
@@ -695,14 +750,14 @@ msgstr "URI :"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
-"Saisissez la ligne APT complète du dépôt que vous souhaitez "
-"ajouter\n"
+"Saisissez la ligne APT complète du dépôt que vous souhaitez ajouter"
+"b>\n"
"\n"
"La ligne APT contient le type, la source et le contenu d'un dépôt, par "
"exemple « deb http://ftp.debian.org sarge main ». Vous pouvez trouver une "
@@ -733,10 +788,9 @@ msgid "Scanning CD-ROM"
msgstr "Examen du cédérom"
#: ../data/SoftwarePropertiesDialogs.glade.h:24
+#, fuzzy
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] "_Ajouter un canal"
-msgstr[1] "_Ajouter des canaux"
+msgstr "_Ajouter un canal"
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -788,103 +842,139 @@ msgstr ""
msgid "The window size"
msgstr "La taille de la fenêtre"
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
-msgstr ""
-"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+#, fuzzy
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 6.04 'Dapper Drake'"
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Mises à jour de sécurité pour Ubuntu 6.06"
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Updates"
msgstr "Mises à jour pour Ubuntu 6.06"
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+#, fuzzy
+msgid "Ubuntu 6.06 Backports"
msgstr "Mises à jour \"backports\" pour Ubuntu 6.06"
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Mises à jour de sécurité d' Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Mises à jour d'Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr "Backports d'Ubuntu 6.06"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr "Supportés officiellement"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Copyright restreint"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Maintenu par la communauté (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Non-libre (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 \"Sarge\""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr "http://security.debian.org/"
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Mises à jour de sécurité de Debian 3.1 \"Sarge\""
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr "Debian \"Etch\" (testing)"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr "http://http.us.debian.org/debian/"
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian \"Sid\" (instable)"
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr "Supporté officiellement"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
"Logiciel libre (selon les lignes directrices du projet Debian) dont les "
"dépendances ne sont pas libre"
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
+#~ msgid "Downloading file %li of %li at unknown speed"
+#~ msgstr "Téléchargement du fichier %li sur %li à une vitesse inconnue"
+
+#~ msgid "Installing updates"
+#~ msgstr "Installation des mises à jour"
+
+#~ msgid "Check for available updates"
+#~ msgstr "Rechercher les mises à jour disponibles"
+
+#~ msgid "Sections:"
+#~ msgstr "Sections :"
+
+#~ msgid "Oficially supported"
+#~ msgstr "Supporté officiellement"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Recharger les informations des paquets depuis le serveur"
@@ -898,7 +988,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
#~ "\n"
#~ "Need to get the changes from the central server"
#~ msgstr ""
-#~ "Téléchargement des changements\n"
+#~ "Téléchargement des changements"
+#~ "span>\n"
#~ "\n"
#~ "Il est nécessaire de récupérer les changement du serveur central"
@@ -934,16 +1025,13 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Mises à jour disponibles\n"
#~ "\n"
-#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à jour "
-#~ "en utilisant le bouton Installer."
-
-#~ msgid "Components"
-#~ msgstr "Composants"
+#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à "
+#~ "jour en utilisant le bouton Installer."
#~ msgid "Repository"
#~ msgstr "Dépôt"
@@ -964,20 +1052,20 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
#~ "Clés d'authentification\n"
#~ "\n"
#~ "Vous pouvez ajouter ou enlever des clés d'authentification grâce à cette "
-#~ "boîte de dialogue. Une clé rend possible la vérification de l'intégrité des "
-#~ "logiciels que vous téléchargez."
+#~ "boîte de dialogue. Une clé rend possible la vérification de l'intégrité "
+#~ "des logiciels que vous téléchargez."
#~ msgid "A_uthentication"
#~ msgstr "A_uthentification"
#, fuzzy
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
-#~ "Ajouter une nouvelle clé au trousseau digne de confiance. Veuillez vérifier "
-#~ "que vous avez obtenu la clé à travers un canal sécurisé et que vous faites "
-#~ "confiance à son possesseur. "
+#~ "Ajouter une nouvelle clé au trousseau digne de confiance. Veuillez "
+#~ "vérifier que vous avez obtenu la clé à travers un canal sécurisé et que "
+#~ "vous faites confiance à son possesseur. "
#~ msgid "Automatically clean _temporary packages files"
#~ msgstr "Nettoyer automatiquement les fichiers _temporaires des paquets"
@@ -999,8 +1087,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
#, fuzzy
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
#~ "Restaurer les clés par défaut fournies avec la distribution. Les clés "
#~ "installées par l'utilisateur ne seront pas modifiées."
@@ -1037,19 +1125,21 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
#~ msgid ""
#~ "This means that besides the actual upgrade of the packages some further "
#~ "action (such as installing or removing packages) is required. Please use "
-#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation."
-#~ msgstr ""
-#~ "Cela signifie que d'autres actions (comme l'installation ou la suppression "
-#~ "de paquets) seront requises après la mise à jour. Veuillez utiliser Synaptic "
-#~ "« Mise à jour intelligente » ou « apt-get dist-upgrade » pour régler la "
+#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
#~ "situation."
+#~ msgstr ""
+#~ "Cela signifie que d'autres actions (comme l'installation ou la "
+#~ "suppression de paquets) seront requises après la mise à jour. Veuillez "
+#~ "utiliser Synaptic « Mise à jour intelligente » ou « apt-get dist-"
+#~ "upgrade » pour régler la situation."
#~ msgid "The following packages are not upgraded: "
#~ msgstr "Les paquets suivants ne seront pas mis à jour : "
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr ""
-#~ "Changements non trouvés, le serveur n'a peut-être pas encore été mis à jour."
+#~ "Changements non trouvés, le serveur n'a peut-être pas encore été mis à "
+#~ "jour."
#~ msgid ""
#~ "Failed to download changes. Please check if there is an active internet "
@@ -1061,15 +1151,12 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
#~ msgid "Version %s: \n"
#~ msgstr "Version %s : \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "Téléchargement des changements..."
-
#~ msgid "The updates are being applied."
#~ msgstr "Les mises à jour ont été appliquées."
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
#~ "Vous ne pouvez exécuter qu'un seul gestionnaire de paquets à la fois. "
#~ "Veuillez tout d'abord fermer cette autre application."
@@ -1091,20 +1178,20 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
#~ "Veuillez mettre à jour vers une version plus récente d'Ubuntu Linux. La "
-#~ "version que vous êtes entrain d'utiliser ne recevra pas d'autres correctifs "
-#~ "de sécurité ou mises à jour critiques. Veuillez voir "
-#~ "http://www.ubuntulinux.org pour les informations de mise à jour."
+#~ "version que vous êtes entrain d'utiliser ne recevra pas d'autres "
+#~ "correctifs de sécurité ou mises à jour critiques. Veuillez voir http://"
+#~ "www.ubuntulinux.org pour les informations de mise à jour."
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "Il y a une nouvelle version d'Ubuntu disponible !"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
#~ "Une nouvelle version avec le nom de code « %s » est disponible. Veuillez "
#~ "voir http://www.ubuntulinux.org pour les informations de mise à jour."
@@ -1114,8 +1201,8 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
#, fuzzy
#~ msgid ""
-#~ "This usually means that another package management application (like apt-get "
-#~ "or aptitude) already running. Please close that application first"
+#~ "This usually means that another package management application (like apt-"
+#~ "get or aptitude) already running. Please close that application first"
#~ msgstr ""
#~ "Vous ne pouvez exécuter qu'un seul gestionnaire de paquets à la fois. "
#~ "Veuillez tout d'abord fermer cette autre application."
@@ -1168,28 +1255,28 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
#~ msgstr "Les dépôts ont été modifiés"
#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources.list "
-#~ "is stored in %s.save. \n"
+#~ "The repository information has changes. A backup copy of your sources."
+#~ "list is stored in %s.save. \n"
#~ "\n"
#~ "You need to reload the package list from the servers for your changes to "
#~ "take effect. Do you want to do this now?"
#~ msgstr ""
-#~ "Les informations des dépôts ont changés. Une sauvegarde de votre "
-#~ "sources.list à été copiée à %s.save. \n"
+#~ "Les informations des dépôts ont changés. Une sauvegarde de votre sources."
+#~ "list à été copiée à %s.save. \n"
#~ " \n"
-#~ "Vous devez recharger la liste des paquets depuis les serveurs pour que vos "
-#~ "changements soient effectifs. Voulez-vous le faire maintenant ?"
+#~ "Vous devez recharger la liste des paquets depuis les serveurs pour que "
+#~ "vos changements soient effectifs. Voulez-vous le faire maintenant ?"
#, fuzzy
#~ msgid ""
#~ "Available Updates\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Mises à jour disponibles\n"
#~ "\n"
-#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à jour "
-#~ "en utilisant le bouton Installer."
+#~ "Les paquets suivant peuvent être mis à jour. Vous pouvez les mettre à "
+#~ "jour en utilisant le bouton Installer."
#~ msgid "0"
-#~ msgstr "0"
\ No newline at end of file
+#~ msgstr "0"
diff --git a/po/gl.po b/po/gl.po
index fefada73..b7964960 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gl\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-23 00:18+0000\n"
"Last-Translator: Ignacio Casal Quinteiro \n"
"Language-Team: Galego\n"
@@ -17,42 +17,41 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: KBabel 1.10.2\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Erro importando o ficheiro seleccionado"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
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:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Erro ao quitar a clave"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+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:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -60,11 +59,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -86,6 +85,7 @@ msgstr ""
msgid "A essential package would have to be removed"
msgstr ""
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr ""
@@ -99,23 +99,24 @@ msgstr ""
"Non se pode quitar a clave que seleccionou. Por favor, reporte isto coma un "
"erro. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
#, fuzzy
msgid ""
"It was impossible to install a required package. Please report this as a "
@@ -124,11 +125,12 @@ msgstr ""
"Non se pode quitar a clave que seleccionou. Por favor, reporte isto coma un "
"erro. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -141,42 +143,43 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
#, fuzzy
msgid "Error during update"
msgstr "Erro ao quitar a clave"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -184,18 +187,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -208,164 +212,189 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Skip This Step"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
#, fuzzy
msgid "Checking package manager"
msgstr "Xa hai outro xestor de paquetes en execución"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
#, fuzzy
msgid "Upgrading"
msgstr "Actualización rematada"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
#, fuzzy
-msgid "Installing updates"
-msgstr "Instalando actualizacións..."
+msgid "Applying changes"
+msgstr "Descargando cambios..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
#, fuzzy
msgid "The upgrade aborts now. Please report this bug."
msgstr ""
"Non se pode quitar a clave que seleccionou. Por favor, reporte isto coma un "
"erro."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
+#, python-format
msgid "Remove %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
+#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
+#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -373,6 +402,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -396,8 +426,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -410,38 +440,51 @@ msgid "Details"
msgstr "Detalles"
#: ../DistUpgrade/DistUpgrade.glade.h:10
-msgid "Downloading and installing the upgrades"
+msgid "Difference between the files"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:11
-msgid "Modifying the software channels"
+msgid "Downloading and installing the upgrades"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:12
-msgid "Preparing the upgrade"
+msgid "Modifying the software channels"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:13
-msgid "Restarting the system"
+msgid "Preparing the upgrade"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:14
-msgid "Terminal"
+msgid "Restarting the system"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:15
-msgid "Upgrading Ubuntu"
+msgid "Terminal"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:16
-msgid "_Report Bug"
+msgid "Upgrading Ubuntu"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:17
-msgid "_Restart Now"
+msgid "_Keep"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "Recargar"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr ""
@@ -455,7 +498,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -474,53 +517,56 @@ msgid "Changes"
msgstr "Cambios"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
-msgid "Check for available updates"
-msgstr "Comprobando se hai actualizacións..."
+msgid "Chec_k"
+msgstr ""
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Descrición"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Actualizacións de software"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr ""
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
msgstr "Instalando actualizacións..."
@@ -592,7 +638,7 @@ msgid "_Check for updates automatically:"
msgstr "Comprobar se hai actualizacións cada"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -623,12 +669,13 @@ msgid "Comment:"
msgstr "Comentario:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Distribución:"
+#, fuzzy
+msgid "Components:"
+msgstr "Compoñentes"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Seccións:"
+msgid "Distribution:"
+msgstr "Distribución:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
#, fuzzy
@@ -646,14 +693,14 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
#, fuzzy
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
-"Introduza a liña completa do repositorio APT que quere "
-"engadir\n"
+"Introduza a liña completa do repositorio APT que quere engadir"
+"big>\n"
"\n"
"A liña de APT contén o tipo, ubicación e contido dun repositorio, por "
"exemplo \"deb http://ftp.debian.org sarge main\". Pode atopar unha "
@@ -685,9 +732,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -735,111 +780,143 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
#, fuzzy
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Actualizacións de Ubuntu 5.04"
+#. Description
#: ../channels/Ubuntu.info.in:23
#, fuzzy
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Actualizacións de seguranza de Ubuntu 5.04"
+#. Description
#: ../channels/Ubuntu.info.in:40
#, fuzzy
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr "Actualizacións de Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:57
#, fuzzy
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr "Actualizacións de Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:74
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "CD con Ubuntu 5.10 \"Breezy Badger\""
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Actualizacións de seguranza de Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Actualizacións de Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:125
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "Actualizacións de Ubuntu 5.10"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
#, fuzzy
msgid "Officially supported"
msgstr "Soporte oficial"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Dereito de copia restrinxido"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Mantido pola comunidade (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Non libre (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 \"Sarge\""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
#, fuzzy
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Actualizacións de seguranza de Debian estable"
+#. Description
#: ../channels/Debian.info.in:34
#, fuzzy
msgid "Debian \"Etch\" (testing)"
msgstr "Debian de probas"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
#, fuzzy
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian Non-US (Inestable)"
-#: ../channels/Debian.info.in:51
-#, fuzzy
-msgid "Oficially supported"
-msgstr "Soporte oficial"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr ""
+#, fuzzy
+#~ msgid "Installing updates"
+#~ msgstr "Instalando actualizacións..."
+
+#, fuzzy
+#~ msgid "Check for available updates"
+#~ msgstr "Comprobando se hai actualizacións..."
+
+#~ msgid "Sections:"
+#~ msgstr "Seccións:"
+
+#, fuzzy
+#~ msgid "Oficially supported"
+#~ msgstr "Soporte oficial"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Recargar a información do paquete desde o servidor."
@@ -853,7 +930,8 @@ msgstr ""
#~ "\n"
#~ "Need to get the changes from the central server"
#~ msgstr ""
-#~ "Descargando informe de trocos\n"
+#~ "Descargando informe de trocos"
+#~ "span>\n"
#~ "\n"
#~ "Necesítanse descargar os trocos do servidor actual"
@@ -880,9 +958,6 @@ msgstr ""
#~ msgid "day(s)"
#~ msgstr "día(s)"
-#~ msgid "Components"
-#~ msgstr "Compoñentes"
-
#~ msgid "Repository"
#~ msgstr "Repositorio"
@@ -900,12 +975,12 @@ msgstr ""
#~ msgstr ""
#~ "Claves de autenticación\n"
#~ "\n"
-#~ "Pode engadir e quitar claves de autenticación desde este diálogo. Unha clave "
-#~ "fai posible verificar a integridade do software que descarga."
+#~ "Pode engadir e quitar claves de autenticación desde este diálogo. Unha "
+#~ "clave fai posible verificar a integridade do software que descarga."
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
#~ "Engadir un novo ficheiro de clave de anel de confianza. Asegúrese de que "
#~ "obtivo a clave a través dun canle seguro e que confía no propietario. "
@@ -935,8 +1010,8 @@ msgstr ""
#~ msgstr "Tamaño máximo en MB:"
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
#~ "Recupera as claves entregadas orixinalmente coa distribución. Isto non "
#~ "cambiará as claves instaladas polo usuario."
@@ -968,13 +1043,13 @@ msgstr ""
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Actualizacións dispoñibles\n"
#~ "\n"
-#~ "O xestor de actualizacións atopou os seguintes paquetes actualizables. Pode "
-#~ "actualizalos usando o botón Instalar."
+#~ "O xestor de actualizacións atopou os seguintes paquetes actualizables. "
+#~ "Pode actualizalos usando o botón Instalar."
#~ msgid "Cancel downloading the changelog"
#~ msgstr "Cancelar a descarga do informe de cambios"
@@ -1030,7 +1105,8 @@ msgstr ""
#~ msgid "Ubuntu CD Image Automatic Signing Key "
#~ msgstr ""
-#~ "Clave de asinado automático das imaxes de CD de Ubuntu "
+#~ "Clave de asinado automático das imaxes de CD de Ubuntu "
#~ msgid "Choose a key-file"
#~ msgstr "Escolla un ficheiro de clave"
@@ -1047,9 +1123,6 @@ msgstr ""
#~ msgid "Version %s: \n"
#~ msgstr "Versión %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "Descargando cambios..."
-
#~ msgid "There are no updated packages"
#~ msgstr "Non hai paquetes actualizados"
@@ -1064,7 +1137,8 @@ msgstr ""
#~ msgstr[1] "Seleccionou %s paquetes actualizables, de tamaño total %s"
#~ msgid "You have selected %s out of %s updated package, size %s"
-#~ msgid_plural "You have selected %s out of %s updated packages, total size %s"
+#~ msgid_plural ""
+#~ "You have selected %s out of %s updated packages, total size %s"
#~ msgstr[0] "Seleccionou %s paquete actualizable de %s, de tamaño %s"
#~ msgstr[1] "Seleccionou %s paquetes actualizables de %s, de tamaño total %s"
@@ -1072,11 +1146,11 @@ msgstr ""
#~ msgstr "Estanse aplicando as actualizacións."
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
-#~ "Só pode executar unha aplicación de xestión de paquetes ao mesmo tempo. Por "
-#~ "favor peche a outra aplicación primeiro."
+#~ "Só pode executar unha aplicación de xestión de paquetes ao mesmo tempo. "
+#~ "Por favor peche a outra aplicación primeiro."
#~ msgid "Updating package list..."
#~ msgstr "Actualizando a lista de paquetes..."
@@ -1092,35 +1166,35 @@ msgstr ""
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
#~ "Por favor actualícese a unha versión de Ubuntu linux. A versión que está "
-#~ "usando non obterá máis actualizacións de seguranza nin outras actualizacións "
-#~ "críticas. Visite http://www.ubuntulinux.org para máis información acerca de "
-#~ "como actualizar."
+#~ "usando non obterá máis actualizacións de seguranza nin outras "
+#~ "actualizacións críticas. Visite http://www.ubuntulinux.org para máis "
+#~ "información acerca de como actualizar."
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "Hai unha versión nova de Ubuntu dispoñible!"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
-#~ "Está dispoñible unha nova versión co nome '%s'. Por favor visite "
-#~ "http://www.ubuntulinux.org para recibir instruccións de como actualizar."
+#~ "Está dispoñible unha nova versión co nome '%s'. Por favor visite http://"
+#~ "www.ubuntulinux.org para recibir instruccións de como actualizar."
#~ msgid "Never show this message again"
#~ msgstr "Non amosar máis esta mensaxe"
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr ""
-#~ "Non se atopou o informe de cambios, pode que o servidor non esté actualizado "
-#~ "aínda."
+#~ "Non se atopou o informe de cambios, pode que o servidor non esté "
+#~ "actualizado aínda."
#~ msgid ""
#~ "Failed to download changes. Please check if there is an active internet "
#~ "connection."
#~ msgstr ""
-#~ "Fallou ao descargar o informe de cambios. Comprobe se ten algunha conexión "
-#~ "activa."
\ No newline at end of file
+#~ "Fallou ao descargar o informe de cambios. Comprobe se ten algunha "
+#~ "conexión activa."
diff --git a/po/he.po b/po/he.po
index 82919f20..b2ab7794 100644
--- a/po/he.po
+++ b/po/he.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager.HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-25 18:19+0000\n"
"Last-Translator: Yaniv Abir \n"
"Language-Team: Hebrew \n"
@@ -20,38 +20,37 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: KBabel 1.10.2\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr "כל %s ימים"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "אחרי %s ימים"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "שגיאה בייבוא קובץ נבחר"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "הקובץ הנבחר הוא לא מפתח GPG או שהוא לא תקין."
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "שגיאה בהסרת המפתח"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr "לא ניתן להסיר את המפתח שבחרת. אנא דווח על זה כבאג."
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -62,11 +61,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -88,6 +87,7 @@ msgstr ""
msgid "A essential package would have to be removed"
msgstr ""
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr ""
@@ -99,34 +99,36 @@ msgid ""
"this as a bug. "
msgstr "לא ניתן להסיר את המפתח שבחרת. אנא דווח על זה כבאג. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "לא ניתן להתקין את \"%s\""
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
#, fuzzy
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr "לא ניתן להסיר את המפתח שבחרת. אנא דווח על זה כבאג. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -139,31 +141,32 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr "שגיאה במהלך העדכון"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
@@ -171,11 +174,11 @@ msgstr ""
"הייתה בעיה בתהליך העידכון. בדרך כלל זוהי בעיית רשת, אנא בדקו את חיבור הרשת "
"שלכם ונסו שנית."
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr "אין מספיק שטח בדיסק הקשיח"
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -183,18 +186,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -207,160 +211,185 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Skip This Step"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr "משדרג"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr "שדרוג המערכת הושלם."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr "ההורדה הושלמה"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr "%s נותרו"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
-#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
+#, fuzzy, python-format
+msgid "Downloading file %li of %li"
msgstr "מוריד קובץ %li מתוך %li במהירות לא ידועה"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
#, fuzzy
-msgid "Installing updates"
-msgstr "מתקין עדכונים..."
+msgid "Applying changes"
+msgstr "מוריד שינויים..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
#, fuzzy
msgid "The upgrade aborts now. Please report this bug."
msgstr "לא ניתן להסיר את המפתח שבחרת. אנא דווח על זה כבאג."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
+#, python-format
msgid "Remove %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
+#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
+#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -368,6 +397,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -391,8 +421,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -405,38 +435,51 @@ msgid "Details"
msgstr "פרטים"
#: ../DistUpgrade/DistUpgrade.glade.h:10
-msgid "Downloading and installing the upgrades"
+msgid "Difference between the files"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:11
-msgid "Modifying the software channels"
+msgid "Downloading and installing the upgrades"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:12
-msgid "Preparing the upgrade"
+msgid "Modifying the software channels"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:13
-msgid "Restarting the system"
+msgid "Preparing the upgrade"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:14
-msgid "Terminal"
+msgid "Restarting the system"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:15
-msgid "Upgrading Ubuntu"
+msgid "Terminal"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:16
-msgid "_Report Bug"
+msgid "Upgrading Ubuntu"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:17
-msgid "_Restart Now"
+msgid "_Keep"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "טען מחדש"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr ""
@@ -450,7 +493,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -469,53 +512,56 @@ msgid "Changes"
msgstr "שינויים"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
-msgid "Check for available updates"
-msgstr "בודק אם יש עדכונים..."
+msgid "Chec_k"
+msgstr ""
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "תיאור"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "עדכוני תוכנה"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr ""
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
msgstr "מתקין עדכונים..."
@@ -587,7 +633,7 @@ msgid "_Check for updates automatically:"
msgstr "בדוק לעדכונים כל"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -618,12 +664,13 @@ msgid "Comment:"
msgstr "הערות:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "הפצה:"
+#, fuzzy
+msgid "Components:"
+msgstr "רכיבים"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "מחלקה:"
+msgid "Distribution:"
+msgstr "הפצה:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
#, fuzzy
@@ -641,16 +688,16 @@ msgstr "כתובת:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
#, fuzzy
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
"הכנס את שורת APT השלמה של המאגר שברצונך להוסיף\n"
"\n"
-"שורת APT מכילה סוג, מיקום ותוכן של המאגר. לדוגמה: \"deb "
-"http://ftp.debian.org sarge main\"\n"
+"שורת APT מכילה סוג, מיקום ותוכן של המאגר. לדוגמה: \"deb http://ftp.debian."
+"org sarge main\"\n"
"אפשר למצוא הסבר מפורט על זה בתיעוד."
#: ../data/SoftwarePropertiesDialogs.glade.h:18
@@ -679,9 +726,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -729,111 +774,143 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
#, fuzzy
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "עדכונים - אובונטו 5.04"
+#. Description
#: ../channels/Ubuntu.info.in:23
#, fuzzy
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr "עדכוני אבטחה - אובונטו 5.04"
+#. Description
#: ../channels/Ubuntu.info.in:40
#, fuzzy
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr "עדכונים - אובונטו 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:57
#, fuzzy
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr "עדכונים - אובונטו 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:74
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "תקליטור עם אובונטו 5.10 \"Breezy Badger\""
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "עדכוני אבטחה - אובונטו 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "עדכונים - אובונטו 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:125
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "עדכונים - אובונטו 5.10"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
#, fuzzy
msgid "Officially supported"
msgstr "נתמך רשמית"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "זכויות יוצרים מגבילות"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "מתוחזק ע\"י קהילה (Universe("
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "לא-חופשי (Multiverse("
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "דביאן 3.1 \"סארג'\""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
#, fuzzy
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "עדכוני אבטחה - דביאן יציב"
+#. Description
#: ../channels/Debian.info.in:34
#, fuzzy
msgid "Debian \"Etch\" (testing)"
msgstr "דביאן בדיקה"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
#, fuzzy
msgid "Debian \"Sid\" (unstable)"
msgstr "דביאן לא ארה\"ב (לא יציב)"
-#: ../channels/Debian.info.in:51
-#, fuzzy
-msgid "Oficially supported"
-msgstr "נתמך רשמית"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr ""
+#, fuzzy
+#~ msgid "Installing updates"
+#~ msgstr "מתקין עדכונים..."
+
+#, fuzzy
+#~ msgid "Check for available updates"
+#~ msgstr "בודק אם יש עדכונים..."
+
+#~ msgid "Sections:"
+#~ msgstr "מחלקה:"
+
+#, fuzzy
+#~ msgid "Oficially supported"
+#~ msgstr "נתמך רשמית"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "טען מחדש את המידע על החבילה מהשרת"
@@ -874,9 +951,6 @@ msgstr ""
#~ msgid "day(s)"
#~ msgstr "ימים"
-#~ msgid "Components"
-#~ msgstr "רכיבים"
-
#~ msgid "Repository"
#~ msgstr "מאגר"
@@ -898,8 +972,8 @@ msgstr ""
#~ "תקינות התוכנה שאתה מוריד."
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
#~ "הוסף קובץ מפתח חדש לרשימת המפתחות שאתה בוטח בהם. אנא וודא שאתה שקיבלת את "
#~ "המפתח בדרך מאובטחת ושאתה בוטח בבעלים. "
@@ -929,8 +1003,8 @@ msgstr ""
#~ msgstr "גודל מקסימלי במגה-בתים:"
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
#~ "שחזר את מפתחות ברירת המחדל שבאו עם ההפצה. זה לא ישנה את המפתחות המותקנים."
@@ -961,8 +1035,8 @@ msgstr ""
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "עדכונים זמינים\n"
#~ "\n"
@@ -1047,9 +1121,6 @@ msgstr ""
#~ msgid "Version %s: \n"
#~ msgstr "גרסה %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "מוריד שינויים..."
-
#~ msgid "There are no updated packages"
#~ msgstr "אין חבילות מעודכנות"
@@ -1064,7 +1135,8 @@ msgstr ""
#~ msgstr[1] "בחרת את כל %s החבילות המעודכנות, בגודל כולל של %s"
#~ msgid "You have selected %s out of %s updated package, size %s"
-#~ msgid_plural "You have selected %s out of %s updated packages, total size %s"
+#~ msgid_plural ""
+#~ "You have selected %s out of %s updated packages, total size %s"
#~ msgstr[0] "בחרת %s מתוך חבילה מעודכנת אחת, בגודל של %s"
#~ msgstr[1] "בחרת %s מתוך %s חבילות מעודכנות, בגודל כולל של %s"
@@ -1072,8 +1144,8 @@ msgstr ""
#~ msgstr "העדכונים מתבצעים כרגע."
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
#~ "אפשר להריץ רק מנהל חבילות אחד באותו זמן. אנא סגור מנהלי חבילות אחרים קודם."
@@ -1091,19 +1163,19 @@ msgstr ""
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
-#~ "אנא עדכן לגרסת אובונטו לינוקס חדשה. הגרסה שאתה משתמש בה כבר לא מקבלת עדכוני "
-#~ "אבטחה או עדכונים קריטיים אחרים. אנא ראה http://www.ubuntulinux.org בשביל "
-#~ "מידע אודות שדרוג."
+#~ "אנא עדכן לגרסת אובונטו לינוקס חדשה. הגרסה שאתה משתמש בה כבר לא מקבלת "
+#~ "עדכוני אבטחה או עדכונים קריטיים אחרים. אנא ראה http://www.ubuntulinux.org "
+#~ "בשביל מידע אודות שדרוג."
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "גרסה חדשה של אובונטו זמינה!"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
#~ "הפצה חדשה עם שם קוד '%s' זמינה. אנא ראה http://www.ubuntulinux.org/ בשביל "
#~ "הוראות שדרוג."
@@ -1117,4 +1189,4 @@ msgstr ""
#~ msgid ""
#~ "Failed to download changes. Please check if there is an active internet "
#~ "connection."
-#~ msgstr "נכשל בהורדת השינויים. אנא בדוק אם החיבור לאינטרנט עובד."
\ No newline at end of file
+#~ msgstr "נכשל בהורדת השינויים. אנא בדוק אם החיבור לאינטרנט עובד."
diff --git a/po/hu.po b/po/hu.po
index 488868ae..c3ebc87c 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager.HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-23 12:21+0000\n"
"Last-Translator: Tamás Nepusz \n"
"Language-Team: Hungarian \n"
@@ -17,39 +17,38 @@ msgstr ""
"X-Generator: KBabel 1.3.1\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr "%s naponta"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "%s nap után"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr "Kulcs importálása"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Hiba a kiválasztott fájl importálása közben"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
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:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Hiba a kulcs eltávolítása közben"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+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:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -60,11 +59,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "Kérem, adja meg a lemez nevét"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr "Kérem, helyezzen be egy lemezt a meghajtóba:"
@@ -89,6 +88,7 @@ msgstr "A szükséges meta-csomagok nem frissíthetőek"
msgid "A essential package would have to be removed"
msgstr "Egy alapvető csomag eltávolításra kerülne"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr "Nem tudom megtervezni a frissítés menetét"
@@ -101,11 +101,12 @@ msgstr ""
"A frissítés megtervezése közben feloldhatatlan probléma lépett fel. Kérem, "
"jelentse ezt hibaként. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr "Hiba történt néhány csomag hitelesítése közben"
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
@@ -115,22 +116,23 @@ msgstr ""
"hálózati probléma okozza, ezért érdemes később újra megpróbálni. Az alábbi "
"lista a hitelesíthetetlen csomagokat tartalmazza."
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "'%s' nem telepíthető"
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr "Egy szükséges csomag nem telepíthető. Kérem, jelentse ezt hibaként. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr "Nem tudom megállapítani a meta-csomagot"
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -148,11 +150,12 @@ msgstr ""
msgid "Reading cache"
msgstr "Gyorsítótár beolvasása"
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr "Nincs érvényes bejegyzés"
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
@@ -160,11 +163,11 @@ msgstr ""
"A csomagtároló információk olvasása közben nem találtam a frissítésre "
"vonatkozó érvényes bejegyzést.\n"
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr "Érvénytelen csomagtároló információ"
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
@@ -172,11 +175,11 @@ msgstr ""
"A csomagtároló információ frissítése hibás fájlt eredményezett. Kérem, "
"jelentse ezt hibaként."
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr "Hiba történt a frissítés közben"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
@@ -184,11 +187,11 @@ msgstr ""
"Hiba lépett fel a frissítés közben. Ez többnyire hálózati problémára utal. "
"Kérem, ellenőrizze a hálózati kapcsolatot és próbálja újra."
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr "Nincs elég szabad hely a merevlemezen"
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -199,18 +202,20 @@ msgstr ""
"merevlemezen. Ürítse ki a kukát és távolítsa el az előző telepítésekből "
"származó átmeneti csomagokat a 'sudo apt-get clean' parancs használatával."
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr "Biztosan el szeretné kezdeni a frissítést?"
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr "A frissítések nem telepíthetőek"
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
+#, fuzzy
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
"A frissítés most félbeszakad. Előfordulhat, hogy a rendszer használhatatlan "
"állapotban van. Az esetleges hibákat a 'sudo apt-get install -f' vagy a "
@@ -228,15 +233,24 @@ msgstr ""
"A frissítés most félbeszakad. Kérem, ellenőrizze a hálózati kapcsolatot vagy "
"a telepítő médiát és próbálja újra. "
-#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+#: ../DistUpgrade/DistUpgradeControler.py:273
+#, fuzzy
+msgid "Remove obsolete packages?"
msgstr "Eltávolítsam az elavult csomagokat?"
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr "Hiba a módosítások rögzítése közben"
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
@@ -245,147 +259,165 @@ msgstr ""
"információkat tartalmaz a hibára vonatkozóan. "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr "Csomagkezelő ellenőrzése"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr "Csomagtároló információ frissítése"
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr "Megerősítés kérése"
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr "Frissítés folyamatban"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr "Elavult szoftverek keresése"
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr "A rendszer frissítése befejeződött."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr "Helyezze be a következő médiát: '%s', ebbe a meghajtóba: '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr "A letöltés befejeződött"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr "Fájlok letöltése (%li, összesen: %li), sebesség: %s/s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr "%s van hátra"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
-#, python-format
-msgid "Downloading file %li of %li at unknown speed"
-msgstr "Fájlok letöltése (%li, összesen: %li), sebesség: ismeretlen"
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
+#, fuzzy, python-format
+msgid "Downloading file %li of %li"
+msgstr "Fájlok letöltése (%li, összesen: %li), sebesség: %s/s"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
-msgstr "Frissítések telepítése"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+#, fuzzy
+msgid "Applying changes"
+msgstr "Módosítások letöltése..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr "'%s' nem telepíthető"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr "A frissítés félbeszakadt. Kérem, jelentse ezt hibaként."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr "Végzetes hiba történt"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
"Kérem, jelentse ezt hibaként és a hibajelentéshez mellékelje a ~/dist-"
"upgrade.log és ~/dist-upgrade-apt.log fájlokat. A frissítés most "
"félbeszakad. "
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] "%s csomag el lesz távolítva."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] "%s új csomag kerül telepítésre."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] "%s csomag frissítve lesz."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr "Összes letöltendő adatmennyiség: %s."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
"A frissítés több órát is igénybe vehet és a későbbiek során nem lehet "
"megszakítani."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
"Az esetleges adatvesztés elkerülése érdekében zárjon be minden nyitott "
"alkalmazást és dokumentumot."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr "Nincs elérhető frissítés"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr "Az Ön rendszere már frissítve lett."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr "%s eltávolítása"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr "%s telepítése"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr "%s frissítése"
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr "Újraindítás szükséges"
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -395,6 +427,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -421,9 +454,10 @@ msgid "Start the upgrade?"
msgstr "Megkezdi a frissítést?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
+#, fuzzy
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
"Frissítés az Ubuntu \"Dapper\" 6.04 "
"változatra"
@@ -437,38 +471,51 @@ msgid "Details"
msgstr "Részletek"
#: ../DistUpgrade/DistUpgrade.glade.h:10
+msgid "Difference between the files"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
msgstr "Frissítések letöltése és telepítése"
-#: ../DistUpgrade/DistUpgrade.glade.h:11
+#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
msgstr "Szoftvercsatornák módosítása"
-#: ../DistUpgrade/DistUpgrade.glade.h:12
+#: ../DistUpgrade/DistUpgrade.glade.h:13
msgid "Preparing the upgrade"
msgstr "Frissítés előkészítése"
-#: ../DistUpgrade/DistUpgrade.glade.h:13
+#: ../DistUpgrade/DistUpgrade.glade.h:14
msgid "Restarting the system"
msgstr "A rendszer újraindítása"
-#: ../DistUpgrade/DistUpgrade.glade.h:14
+#: ../DistUpgrade/DistUpgrade.glade.h:15
msgid "Terminal"
msgstr "Terminál"
-#: ../DistUpgrade/DistUpgrade.glade.h:15
+#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
msgstr "Az Ubuntu frissítése"
-#: ../DistUpgrade/DistUpgrade.glade.h:16
+#: ../DistUpgrade/DistUpgrade.glade.h:17
+msgid "_Keep"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "F_rissítés"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
msgstr "_Hibabejelentés"
-#: ../DistUpgrade/DistUpgrade.glade.h:17
+#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
msgstr "Újrain_dítás most"
-#: ../DistUpgrade/DistUpgrade.glade.h:18
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr "Frissítés _folytatása"
@@ -479,16 +526,17 @@ msgid ""
"Your system does not check for updates automatically. You can configure this "
"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"."
msgstr ""
-"Önnek kézzel kell megkeresnie a rendelkezésre álló "
-"frissítéseket\n"
+"Önnek kézzel kell megkeresnie a rendelkezésre álló frissítéseket"
+"big>\n"
"\n"
"Az Ön rendszere jelenleg nem keresi automatikusan a frissítéseket. Ezt a "
"viselkedést a \"Rendszer\" -> \"Adminisztráció\" -> \"Szoftverbeállítások\" "
"menüpont alatt változtathatja meg."
#: ../data/UpdateManager.glade.h:4
+#, fuzzy
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -511,30 +559,35 @@ msgid "Changes"
msgstr "Módosítások"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
-msgstr "Rendelkezésre álló frissítések ellenőrzése"
+#, fuzzy
+msgid "Chec_k"
+msgstr "_Ellenőrzés"
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Leírás"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr "Kiadási megjegyzések"
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr "Részletek megjelenítése"
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Egyes fájlok állapotának mutatása"
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Szoftverfrissítések"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -542,23 +595,23 @@ msgstr ""
"A szoftverfrissítések kijavítják az időközben felfedezett programhibákat, "
"sebezhetőségeket és új szolgáltatásokat is biztosítanak Önnek."
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr "_Frissítés"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr "Frissítés az Ubuntu legújabb változatára"
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr "_Ellenőrzés"
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr "_A jövőben ne mutassa ezt az információt"
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
msgstr "_Telepítés"
@@ -625,7 +678,8 @@ msgid "_Check for updates automatically:"
msgstr "_Frissítések automatikus keresése:"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+#, fuzzy
+msgid "_Download updates in the background, but do not install them"
msgstr "Frissítések _letöltése a háttérben, telepítés nélkül"
#: ../data/SoftwareProperties.glade.h:16
@@ -661,12 +715,13 @@ msgid "Comment:"
msgstr "Megjegyzés:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Disztribúció:"
+#, fuzzy
+msgid "Components:"
+msgstr "Összetevők"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Csoportok:"
+msgid "Distribution:"
+msgstr "Disztribúció:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
msgid "Sections"
@@ -682,16 +737,16 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
"Adja meg a felvenni kívánt tároló teljes APT sorát\n"
"\n"
-"Az APT sor tartalmazza a tároló típusát, helyét és tartalmát, például "
-"\"deb http://ftp.debian.org sarge main\". A szintakszis részletes "
+"Az APT sor tartalmazza a tároló típusát, helyét és tartalmát, például "
+"\"deb http://ftp.debian.org sarge main\". A szintakszis részletes "
"leírását a dokumentációban találhatja meg."
#: ../data/SoftwarePropertiesDialogs.glade.h:18
@@ -720,8 +775,7 @@ msgstr "CD-ROM átvizsgálása"
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] "Csatorna hozzá_adása"
+msgstr "Csatorna hozzá_adása"
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -773,105 +827,137 @@ msgstr ""
msgid "The window size"
msgstr "Az ablak mérete"
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
-msgstr ""
-"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Ubuntu.info.in:6
#, fuzzy
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 6.04 'Dapper Drake'"
+#. Description
#: ../channels/Ubuntu.info.in:23
#, fuzzy
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Ubuntu 6.04 biztonsági frissítések"
+#. Description
#: ../channels/Ubuntu.info.in:40
#, fuzzy
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr "Ubuntu 6.04 frissítések"
+#. Description
#: ../channels/Ubuntu.info.in:57
#, fuzzy
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr "Ubuntu 6.04 visszaportolt csomagok"
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 biztonsági frissítések"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 frissítések"
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 visszaportolt csomagok"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr "Hivatalosan támogatott"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Szerzői jogi korlátozás alatt"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Közösségi karbantartású (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Nem-szabad (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 \"Sarge\""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr "http://security.debian.org/"
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Debian 3.1 \"Sarge\" biztonsági frissítések"
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr "Debian \"Etch\" (tesztelés alatt)"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr "http://http.us.debian.org/debian/"
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian \"Sid\" (instabil)"
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr "Hivatalosan támogatott"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr "DFSG-kompatibilis szoftver nem-szabad függőségekkel"
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr "Nem DFSG-kompatibilis szoftver"
+#~ msgid "Downloading file %li of %li at unknown speed"
+#~ msgstr "Fájlok letöltése (%li, összesen: %li), sebesség: ismeretlen"
+
+#~ msgid "Installing updates"
+#~ msgstr "Frissítések telepítése"
+
+#~ msgid "Check for available updates"
+#~ msgstr "Rendelkezésre álló frissítések ellenőrzése"
+
+#~ msgid "Sections:"
+#~ msgstr "Csoportok:"
+
+#~ msgid "Oficially supported"
+#~ msgstr "Hivatalosan támogatott"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "A csomaginformációk ismételt letöltése a kiszolgálóról."
@@ -921,17 +1007,14 @@ msgstr "Nem DFSG-kompatibilis szoftver"
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Elérhető frissítések\n"
#~ "\n"
#~ "A következő csomagok frissíthetőek. A Telepítés gomb segítségével "
#~ "frissítheti őket."
-#~ msgid "Components"
-#~ msgstr "Összetevők"
-
#~ msgid "Repository"
#~ msgstr "Tároló"
@@ -959,11 +1042,12 @@ msgstr "Nem DFSG-kompatibilis szoftver"
#, fuzzy
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
#~ "Új kulcsfájl hozzáadása a megbízható kulcstartóhoz. Győződjön meg, hogy a "
-#~ "kulcsot biztonságos csatornán keresztül kapta és megbízik a tulajdonosban. "
+#~ "kulcsot biztonságos csatornán keresztül kapta és megbízik a "
+#~ "tulajdonosban. "
#~ msgid "Automatically clean _temporary packages files"
#~ msgstr "Átmeneti csomagfájlok automatikus _törlése"
@@ -985,11 +1069,11 @@ msgstr "Nem DFSG-kompatibilis szoftver"
#, fuzzy
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
-#~ "A disztribúcióval szállított alapértelmezett kulcsok visszaállítása. Ez nem "
-#~ "változtatja meg a felhasználó által telepített kulcsokat."
+#~ "A disztribúcióval szállított alapértelmezett kulcsok visszaállítása. Ez "
+#~ "nem változtatja meg a felhasználó által telepített kulcsokat."
#~ msgid "Set _maximum size for the package cache"
#~ msgstr "A csomaggyorsítótár legnagyobb _méretének beállítása"
@@ -1023,11 +1107,12 @@ msgstr "Nem DFSG-kompatibilis szoftver"
#~ msgid ""
#~ "This means that besides the actual upgrade of the packages some further "
#~ "action (such as installing or removing packages) is required. Please use "
-#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation."
+#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
+#~ "situation."
#~ msgstr ""
-#~ "Ez azt jelenti, hogy a csomagok frissítése mellett néhány további művelet is "
-#~ "szükséges (például csomagok telepítése vagy törlése). Kérem használja a "
-#~ "Synaptic \"Intelligens frissítés\" lehetőségét, vagy az \"apt-get dist-"
+#~ "Ez azt jelenti, hogy a csomagok frissítése mellett néhány további művelet "
+#~ "is szükséges (például csomagok telepítése vagy törlése). Kérem használja "
+#~ "a Synaptic \"Intelligens frissítés\" lehetőségét, vagy az \"apt-get dist-"
#~ "upgrade\" parancsot a probléma megoldására."
#~ msgid "The following packages are not upgraded: "
@@ -1041,24 +1126,21 @@ msgstr "Nem DFSG-kompatibilis szoftver"
#~ "Failed to download changes. Please check if there is an active internet "
#~ "connection."
#~ msgstr ""
-#~ "Nem sikerült a módosításokat letölteni. Kérem ellenőrizze, hogy aktív-e az "
-#~ "internetkapcsolata."
+#~ "Nem sikerült a módosításokat letölteni. Kérem ellenőrizze, hogy aktív-e "
+#~ "az internetkapcsolata."
#~ msgid "Version %s: \n"
#~ msgstr "%s verzió: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "Módosítások letöltése..."
-
#~ msgid "The updates are being applied."
#~ msgstr "A frissítések alkalmazása folyamatban."
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
-#~ "Egyidejűleg csak egy csomagkezelő alkalmazást futtathat. Kérem előbb zárja "
-#~ "be a másik alkalmazást."
+#~ "Egyidejűleg csak egy csomagkezelő alkalmazást futtathat. Kérem előbb "
+#~ "zárja be a másik alkalmazást."
#~ msgid "Updating package list..."
#~ msgstr "Csomaglista frissítése..."
@@ -1077,34 +1159,34 @@ msgstr "Nem DFSG-kompatibilis szoftver"
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
#~ "Kérem frissítse rendszerét az Ubuntu Linux újabb verziójára. Az Ön által "
#~ "használt verzió már nem fog biztonsági javításokat vagy egyéb kritikus "
-#~ "frissítéseket kapni. Kérem keresse fel a http://www.ubuntulinux.org oldalt a "
-#~ "frissítési információkért."
+#~ "frissítéseket kapni. Kérem keresse fel a http://www.ubuntulinux.org "
+#~ "oldalt a frissítési információkért."
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "Az Ubuntu egy új kiadása áll rendelkezésre!"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
-#~ "Egy új, \"%s\" kódnevű kiadás áll rendelkezésre. A frissítési utasításokért "
-#~ "keresse fel a http://www.ubuntulinux.org/ webhelyet."
+#~ "Egy új, \"%s\" kódnevű kiadás áll rendelkezésre. A frissítési "
+#~ "utasításokért keresse fel a http://www.ubuntulinux.org/ webhelyet."
#~ msgid "Never show this message again"
#~ msgstr "Ne mutassa többé ezt az üzenetet"
#, fuzzy
#~ msgid ""
-#~ "This usually means that another package management application (like apt-get "
-#~ "or aptitude) already running. Please close that application first"
+#~ "This usually means that another package management application (like apt-"
+#~ "get or aptitude) already running. Please close that application first"
#~ msgstr ""
-#~ "Egyidejűleg csak egy csomagkezelő alkalmazást futtathat. Kérem előbb zárja "
-#~ "be a másik alkalmazást."
+#~ "Egyidejűleg csak egy csomagkezelő alkalmazást futtathat. Kérem előbb "
+#~ "zárja be a másik alkalmazást."
#~ msgid "Initializing and getting list of updates..."
#~ msgstr "Inicializálás és a frissítések letöltése..."
@@ -1152,25 +1234,25 @@ msgstr "Nem DFSG-kompatibilis szoftver"
#~ msgstr "Megváltoztak a tárolók"
#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources.list "
-#~ "is stored in %s.save. \n"
+#~ "The repository information has changes. A backup copy of your sources."
+#~ "list is stored in %s.save. \n"
#~ "\n"
#~ "You need to reload the package list from the servers for your changes to "
#~ "take effect. Do you want to do this now?"
#~ msgstr ""
-#~ "A tárolóinformációk megváltoztak. A sources.list biztonsági másolata %s.save "
-#~ "néven van elmentve.\n"
+#~ "A tárolóinformációk megváltoztak. A sources.list biztonsági másolata %s."
+#~ "save néven van elmentve.\n"
#~ "\n"
-#~ "A csomaglistákat újra le kell tölteni a kiszolgálókról, hogy a változtatások "
-#~ "életbe lépjenek. Meg akarja ezt tenni most?"
+#~ "A csomaglistákat újra le kell tölteni a kiszolgálókról, hogy a "
+#~ "változtatások életbe lépjenek. Meg akarja ezt tenni most?"
#, fuzzy
#~ msgid ""
#~ "Available Updates\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Elérhető frissítések\n"
#~ "\n"
#~ "A következő csomagok frissíthetőek. A Telepítés gomb segítségével "
-#~ "frissítheti őket."
\ No newline at end of file
+#~ "frissítheti őket."
diff --git a/po/it.po b/po/it.po
index 57405986..117c959a 100644
--- a/po/it.po
+++ b/po/it.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-26 17:46+0000\n"
"Last-Translator: Maurizio Moriconi \n"
"Language-Team: Italian \n"
@@ -18,41 +18,40 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr "Ogni %s giorni"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "Dopo %s giorni"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr "Importa chiave"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Errore durante l'importazione del file selezionato"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
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:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Errore durante la rimozione della chiave"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"La chiave selezionata non può essere rimossa. Notificare questo come bug"
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -63,11 +62,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "Inserire un nome per il disco"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr "Inserire un disco nell'unità:"
@@ -81,8 +80,8 @@ msgid ""
"software. Please fix them first using synaptic or apt-get before proceeding."
msgstr ""
"Il sistema contiene pacchetti non integri che non possono essere aggiustati "
-"con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-"
-"get\" per aggiustarli."
+"con questo software. Prima di procedere, utilizzare \"synaptic\" o \"apt-get"
+"\" per aggiustarli."
#: ../DistUpgrade/DistUpgradeCache.py:135
msgid "Can't upgrade required meta-packages"
@@ -92,6 +91,7 @@ msgstr "Impossibile aggiornare i meta-pacchetti richiesti"
msgid "A essential package would have to be removed"
msgstr "Un pacchetto essenziale dovrebbe essere rimosso"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr "Impossibile calcolare l'aggiornamento"
@@ -104,11 +104,12 @@ msgstr ""
"Si è verificato un problema irrisolvibile calcolando l'aggiornamento. Per "
"favore segnala questo come bug. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr "Errore durante l'autenticazione di alcuni pacchetti"
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
@@ -118,12 +119,12 @@ msgstr ""
"un problema di rete passeggero. Riprovare più tardi. Segue una lista di "
"pacchetti non autenticati."
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "Impossibile installare \"%s\""
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
@@ -131,11 +132,12 @@ msgstr ""
"Non è stato possibile installare un pacchetto richiesto. Per favore riporta "
"questo come bug. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr "Impossibile indovinare il meta-pacchetto"
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -153,11 +155,12 @@ msgstr ""
msgid "Reading cache"
msgstr "Lettura della cache"
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr "Nessuna voce valida trovata."
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
@@ -165,11 +168,11 @@ msgstr ""
"Durante la scansione delle informazioni sui repository, non è stata trovata "
"alcuna voce valida per l'aggiornamento.\n"
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr "Informazioni sul repository non valide"
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
@@ -177,11 +180,11 @@ msgstr ""
"L'aggiornamento delle informazioni sul repository ha generato un file non "
"valido. Per favore segnala questo come bug."
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr "Errore durante l'aggiornamento"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
@@ -189,11 +192,11 @@ msgstr ""
"Si è verificato un problema durante l'aggiornamento. Solitamente si tratta "
"di problemi di rete, controllare la connessione di rete e riprovare."
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr "Spazio libero insufficiente"
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -204,18 +207,20 @@ msgstr ""
"spazio sul disco. Svuotare il cestino e rimuovere i pacchetti temporanei "
"delle passate installazioni usando 'sudo apt-get clean'."
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr "Iniziare l'aggiornamento?"
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr "Impossibile installare gli aggiornamenti"
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
+#, fuzzy
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
"L'aggiornamento dev'essere interrotto ora. Il sistema potrebbe essere in uno "
"stato inutilizzabile. Per aggiustare il sistema, provare ad usare 'sudo apt-"
@@ -233,15 +238,24 @@ msgstr ""
"L'aggiornamento termina ora. Controllare la connessione internet o il "
"supporto di installazione e riprovare. "
-#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+#: ../DistUpgrade/DistUpgradeControler.py:273
+#, fuzzy
+msgid "Remove obsolete packages?"
msgstr "Rimuovere i pacchetti obsoleti?"
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr "Errore durante il commit"
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
@@ -250,152 +264,170 @@ msgstr ""
"seguente per maggiori informazioni. "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr "Controllo gestore dei pacchetti"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr "Aggiornamento delle informazione sui repository"
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr "Richiesta di conferma"
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr "Aggiornamento"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr "Ricerca software obsoleto"
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr "L'aggiornamento del sistema è stato completato."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr "Inserire '%s' nell'unità '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr "Download completato"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr "Download del file %li di %li a %s/s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr "%s rimanenti"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
-#, python-format
-msgid "Downloading file %li of %li at unknown speed"
-msgstr "Download del file %li di %li a velocità sconosciuta"
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
+#, fuzzy, python-format
+msgid "Downloading file %li of %li"
+msgstr "Download del file %li di %li a %s/s"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
-msgstr "Installazione degli aggiornamenti"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+#, fuzzy
+msgid "Applying changes"
+msgstr "Download modifiche in corso..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr "Impossibile installare '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
#, fuzzy
msgid "The upgrade aborts now. Please report this bug."
msgstr ""
"L'aggiornamento viene interrotto ora. Per favore riporta questo come bug."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr "Si è verificato un errore fatale"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
#, fuzzy
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-"Per favore riporta questo come bug e includi nella segnalazione i file "
-"~/dist-upgrade.log e ~/dist-upgrade-apt.log . L'aggiornamento termina ora. "
+"Per favore riporta questo come bug e includi nella segnalazione i file ~/"
+"dist-upgrade.log e ~/dist-upgrade-apt.log . L'aggiornamento termina ora. "
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] "Verrà rimosso %s pacchetto."
msgstr[1] "Verranno rimossi %s pacchetti."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] "Verrà installato %s nuovo pacchetto."
msgstr[1] "Verranno installati %s nuovi pacchetti."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] "Verrà aggiornato %s pacchetto."
msgstr[1] "Verranno aggiornati %s pacchetti."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr "È necessario scaricare un totale di %s."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
"L'aggiornamento può richiedere diverse ore e non può essere annullato in "
"nessun momento successivo."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
"Chiudere tutte le applicazioni e i documenti aperti per prevenire la perdita "
"di dati."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr "Impossibile trovare aggiornamenti"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr "Il sistema è già stato aggiornato."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr "Rimuovi %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr "Installa %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr "Aggiorna %s"
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr "Riavvio richiesto"
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr "L'aggiornamento è finito ed è richiesto un riavvio. Riavviare ora?"
@@ -403,6 +435,7 @@ msgstr "L'aggiornamento è finito ed è richiesto un riavvio. Riavviare ora?"
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -422,17 +455,17 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:5
msgid "Restart the system to complete the upgrade"
-msgstr ""
-"Riavviare il sistema per completare l'aggiornamento"
+msgstr "Riavviare il sistema per completare l'aggiornamento"
#: ../DistUpgrade/DistUpgrade.glade.h:6
msgid "Start the upgrade?"
msgstr "Avviare l'aggiornamento?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
+#, fuzzy
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
"Aggiornamento ad Ubuntu \"Dapper\" "
"6.04"
@@ -446,38 +479,51 @@ msgid "Details"
msgstr "Dettagli"
#: ../DistUpgrade/DistUpgrade.glade.h:10
+msgid "Difference between the files"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
msgstr "Download ed installazione degli aggiornamenti in corso"
-#: ../DistUpgrade/DistUpgrade.glade.h:11
+#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
msgstr "Modifica i canali software"
-#: ../DistUpgrade/DistUpgrade.glade.h:12
+#: ../DistUpgrade/DistUpgrade.glade.h:13
msgid "Preparing the upgrade"
msgstr "Preparazione dell'aggiornamento in corso"
-#: ../DistUpgrade/DistUpgrade.glade.h:13
+#: ../DistUpgrade/DistUpgrade.glade.h:14
msgid "Restarting the system"
msgstr "Riavvio del sistema in corso"
-#: ../DistUpgrade/DistUpgrade.glade.h:14
+#: ../DistUpgrade/DistUpgrade.glade.h:15
msgid "Terminal"
msgstr "Terminale"
-#: ../DistUpgrade/DistUpgrade.glade.h:15
+#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
msgstr "Aggiornamento Ubuntu in corso"
-#: ../DistUpgrade/DistUpgrade.glade.h:16
+#: ../DistUpgrade/DistUpgrade.glade.h:17
+msgid "_Keep"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "_Ricarica"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
msgstr "_Riporta bug"
-#: ../DistUpgrade/DistUpgrade.glade.h:17
+#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
msgstr "_Riavvia ora"
-#: ../DistUpgrade/DistUpgrade.glade.h:18
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr "_Riprendi l'aggiornamento"
@@ -490,8 +536,9 @@ msgid ""
msgstr ""
#: ../data/UpdateManager.glade.h:4
+#, fuzzy
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -515,30 +562,34 @@ msgstr "Cambiamenti"
#: ../data/UpdateManager.glade.h:10
#, fuzzy
-msgid "Check for available updates"
-msgstr "Verifica degli aggiornamenti..."
+msgid "Chec_k"
+msgstr "_Controlla"
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Descrizione"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr "Note alla Release"
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr "Visualizza dettagli"
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Visualizza avanzamento dei singoli file"
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Aggiornamenti Software"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -546,23 +597,23 @@ msgstr ""
"Gli aggiornamenti software possono correggere errori, eliminare "
"vulnerabilità di sicurezza e fornire nuove funzionalità"
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr "A_ggiorna"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr "Aggiorna all'ultima versione di Ubuntu"
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr "_Controlla"
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr "_Nascondi queste informazioni in futuro"
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
msgstr "_Installa aggiornamenti"
@@ -630,7 +681,8 @@ msgid "_Check for updates automatically:"
msgstr "_Verificare aggiornamenti automaticamente:"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+#, fuzzy
+msgid "_Download updates in the background, but do not install them"
msgstr "_Scaricare gli aggiornamenti in background, ma non installarli"
#: ../data/SoftwareProperties.glade.h:16
@@ -666,12 +718,13 @@ msgid "Comment:"
msgstr "Commento:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Distribuzione:"
+#, fuzzy
+msgid "Components:"
+msgstr "Componenti"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Sezioni:"
+msgid "Distribution:"
+msgstr "Distribuzione:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
msgid "Sections"
@@ -687,14 +740,14 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
-"Inserire la linea APT completa del canale che si vuole "
-"aggiungere\n"
+"Inserire la linea APT completa del canale che si vuole aggiungere"
+"b>\n"
"\n"
"La riga APT contiene il tipo, la locazione e il contenuto di un canale, ad "
"esempio \"deb http://ftp.debian.org sarge main\""
@@ -724,10 +777,9 @@ msgid "Scanning CD-ROM"
msgstr "Scansione CD-ROM in corso"
#: ../data/SoftwarePropertiesDialogs.glade.h:24
+#, fuzzy
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] "_Aggiungi Canale"
-msgstr[1] "_Aggiungi Canali"
+msgstr "_Aggiungi Canale"
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -779,101 +831,138 @@ msgstr ""
msgid "The window size"
msgstr "Dimensione della finestra"
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
-msgstr ""
-"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+#, fuzzy
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 6.04 «Dapper Drake»"
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Aggiornamenti di sicurezza per Ubuntu 6.04"
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Updates"
msgstr "Aggiornamenti di Ubuntu 6.04"
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+#, fuzzy
+msgid "Ubuntu 6.06 Backports"
msgstr "Backport di Ubuntu 6.04"
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 «Breezy Badger»"
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Aggiornamenti di sicurezza di Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Aggiornamenti di Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr "Backport di Ubuntu 5.10"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr "Supportato ufficialmente"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Copyright con restrizioni"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Mantenuto dalla comunità (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Software non libero (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 «Sarge»"
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr "http://security.debian.org/"
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Aggiornamenti di sicurezza di Debian 3.1 «Sarge»"
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr "Debian «Etch» (testing)"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr "http://http.us.debian.org/debian/"
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian «Sid» (Unstable)"
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr "Supportato ufficialmente"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr "Software compatibile con le DFSG e con dipendenze non libere"
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr "Software non compatibile con le DFSG"
+#~ msgid "Downloading file %li of %li at unknown speed"
+#~ msgstr "Download del file %li di %li a velocità sconosciuta"
+
+#~ msgid "Installing updates"
+#~ msgstr "Installazione degli aggiornamenti"
+
+#, fuzzy
+#~ msgid "Check for available updates"
+#~ msgstr "Verifica degli aggiornamenti..."
+
+#~ msgid "Sections:"
+#~ msgstr "Sezioni:"
+
+#~ msgid "Oficially supported"
+#~ msgstr "Supportato ufficialmente"
+
#~ msgid "Reload the latest information about updates"
#~ msgstr "Ricarica le informazioni sugli aggiornamenti"
@@ -886,8 +975,8 @@ msgstr "Software non compatibile con le DFSG"
#~ "\n"
#~ "Need to get the changes from the central server"
#~ msgstr ""
-#~ "Download delle modifiche in "
-#~ "corso\n"
+#~ "Download delle modifiche in corso"
+#~ "span>\n"
#~ "\n"
#~ "Devo scaricare le modifiche dal server centrale"
@@ -915,9 +1004,6 @@ msgstr "Software non compatibile con le DFSG"
#~ msgid "day(s)"
#~ msgstr "giorni"
-#~ msgid "Components"
-#~ msgstr "Componenti"
-
#~ msgid "Repository"
#~ msgstr "Repository"
@@ -939,11 +1025,11 @@ msgstr "Software non compatibile con le DFSG"
#~ "permette di verificare l'integrità del software che scarichi."
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
-#~ "Aggiungi un nuovo file per una chiave nel portachiavi fidato. Assicurati di "
-#~ "aver ricevuto la chiave attraverso un canale sicuro e di fidarti del "
+#~ "Aggiungi un nuovo file per una chiave nel portachiavi fidato. Assicurati "
+#~ "di aver ricevuto la chiave attraverso un canale sicuro e di fidarti del "
#~ "proprietario. "
#~ msgid "Add repository..."
@@ -971,8 +1057,8 @@ msgstr "Software non compatibile con le DFSG"
#~ msgstr "Dimensione massima in MB:"
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
#~ "Ripristina le chiavi di default della distribuzione.\n"
#~ "Questo non modificherà le chiavi installate dal'utente."
@@ -1004,13 +1090,13 @@ msgstr "Software non compatibile con le DFSG"
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Aggiornamenti Disponibili\n"
#~ "\n"
-#~ "I seguenti pacchetti possono essere aggiornati. Puoi aggiornarli usando il "
-#~ "pulsante Installa."
+#~ "I seguenti pacchetti possono essere aggiornati. Puoi aggiornarli usando "
+#~ "il pulsante Installa."
#~ msgid "Cancel downloading the changelog"
#~ msgstr "Cancella il download delle modifiche"
@@ -1066,7 +1152,8 @@ msgstr "Software non compatibile con le DFSG"
#~ msgid "Ubuntu CD Image Automatic Signing Key "
#~ msgstr ""
-#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu "
+#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu "
#~ msgid "Choose a key-file"
#~ msgstr "Scegli un file di chiave"
@@ -1083,9 +1170,6 @@ msgstr "Software non compatibile con le DFSG"
#~ msgid "Version %s: \n"
#~ msgstr "Versione %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "Download modifiche in corso..."
-
#~ msgid "There are no updated packages"
#~ msgstr "Non ci sono apacchetti aggiornati"
@@ -1100,7 +1184,8 @@ msgstr "Software non compatibile con le DFSG"
#~ msgstr[1] ""
#~ msgid "You have selected %s out of %s updated package, size %s"
-#~ msgid_plural "You have selected %s out of %s updated packages, total size %s"
+#~ msgid_plural ""
+#~ "You have selected %s out of %s updated packages, total size %s"
#~ msgstr[0] "Hai selezionato %s pacchetti su %s, dimensione %s"
#~ msgstr[1] ""
@@ -1108,8 +1193,8 @@ msgstr "Software non compatibile con le DFSG"
#~ msgstr "Gli aggiornamenti sono in fase di applicazione."
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
#~ "Puoi eseguire una sola applicazione di gestione dei pacchetti "
#~ "contemporaneamente. Per favore prima chiudi quest'altra applicazione."
@@ -1128,34 +1213,35 @@ msgstr "Software non compatibile con le DFSG"
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
-#~ "Per favore aggiornati ad una nuova versione di Ubuntu Linux. La versione che "
-#~ "stai usando non riceverà più aggiornamenti di sicurezza o altri "
-#~ "aggiornamenti critici. Per favore guarda su http://www.ubuntulinux.org per "
-#~ "informazioni riguardo all'aggiornamento."
+#~ "Per favore aggiornati ad una nuova versione di Ubuntu Linux. La versione "
+#~ "che stai usando non riceverà più aggiornamenti di sicurezza o altri "
+#~ "aggiornamenti critici. Per favore guarda su http://www.ubuntulinux.org "
+#~ "per informazioni riguardo all'aggiornamento."
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "È disponibile una nuova release di Ubuntu!"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
-#~ "Una nuova release con nome '%s' è disponbile. Per favore guarda su "
-#~ "http://www.ubuntulinux.org/ per informazioni sull'aggiornamento"
+#~ "Una nuova release con nome '%s' è disponbile. Per favore guarda su http://"
+#~ "www.ubuntulinux.org/ per informazioni sull'aggiornamento"
#~ msgid "Never show this message again"
#~ msgstr "Non mostrare più questo messaggio"
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr ""
-#~ "Modifiche non trovate, il server potrebbe non essere stato ancora aggiornato."
+#~ "Modifiche non trovate, il server potrebbe non essere stato ancora "
+#~ "aggiornato."
#~ msgid ""
#~ "Failed to download changes. Please check if there is an active internet "
#~ "connection."
#~ msgstr ""
#~ "Impossibile scaricare le modifiche. Per favore controlla se c'è una "
-#~ "connessione internet attiva."
\ No newline at end of file
+#~ "connessione internet attiva."
diff --git a/po/ja.po b/po/ja.po
index 5b2b2ae5..4cf9ba53 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: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-23 00:18+0000\n"
"Last-Translator: ikuya \n"
"Language-Team: Ubuntu-ja \n"
@@ -18,38 +18,38 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "選択したファイルのインポートエラー"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
-msgstr "選択したファイルはGPGキーファイルではないか、壊れている可能性があります。"
+msgstr ""
+"選択したファイルはGPGキーファイルではないか、壊れている可能性があります。"
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "キー削除のエラー"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr "選択したキーを削除できませんでした。バグとして報告してください。"
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -57,11 +57,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -83,6 +83,7 @@ msgstr ""
msgid "A essential package would have to be removed"
msgstr ""
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr ""
@@ -94,34 +95,36 @@ msgid ""
"this as a bug. "
msgstr "選択したキーを削除できませんでした。バグとして報告してください。 "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
#, fuzzy
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr "選択したキーを削除できませんでした。バグとして報告してください。 "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -134,42 +137,43 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
#, fuzzy
msgid "Error during update"
msgstr "キー削除のエラー"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -177,18 +181,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -201,160 +206,185 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Skip This Step"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
#, fuzzy
msgid "Checking package manager"
msgstr "他のパッケージマネージャが動いています"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
#, fuzzy
msgid "Upgrading"
msgstr "アップグレードが終了しました"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
#, fuzzy
-msgid "Installing updates"
-msgstr "アップデートをインストール中..."
+msgid "Applying changes"
+msgstr "変更点を取得中..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
#, fuzzy
msgid "The upgrade aborts now. Please report this bug."
msgstr "選択したキーを削除できませんでした。バグとして報告してください。"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
#, fuzzy
msgid "Your system has already been upgraded."
msgstr "システムに壊れたパッケージがあります!"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
+#, python-format
msgid "Remove %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
+#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
+#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -362,6 +392,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -385,8 +416,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -399,38 +430,51 @@ msgid "Details"
msgstr "詳細"
#: ../DistUpgrade/DistUpgrade.glade.h:10
-msgid "Downloading and installing the upgrades"
+msgid "Difference between the files"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:11
-msgid "Modifying the software channels"
+msgid "Downloading and installing the upgrades"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:12
-msgid "Preparing the upgrade"
+msgid "Modifying the software channels"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:13
-msgid "Restarting the system"
+msgid "Preparing the upgrade"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:14
-msgid "Terminal"
+msgid "Restarting the system"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:15
-msgid "Upgrading Ubuntu"
+msgid "Terminal"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:16
-msgid "_Report Bug"
+msgid "Upgrading Ubuntu"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:17
-msgid "_Restart Now"
+msgid "_Keep"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "再読込"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr ""
@@ -444,7 +488,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -463,52 +507,56 @@ msgid "Changes"
msgstr "変更点"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
+msgid "Chec_k"
msgstr ""
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "詳細"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "ソフトウェアのアップデート"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr ""
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
msgstr "アップデートをインストール中..."
@@ -582,7 +630,7 @@ msgid "_Check for updates automatically:"
msgstr ""
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -613,12 +661,13 @@ msgid "Comment:"
msgstr "コメント:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "ディストリビューション:"
+#, fuzzy
+msgid "Components:"
+msgstr "コンポーネント"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "セクション:"
+msgid "Distribution:"
+msgstr "ディストリビューション:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
#, fuzzy
@@ -636,16 +685,17 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
#, fuzzy
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
"追加したい APT line のレポジトリを入力してください。\n"
"\n"
-"APT lineにはタイプ、場所、内容などを含めることができます。例:\"deb http://ftp.debian.org sarge "
-"main\"付属のドキュメントに詳細な記述形式について書かれています。"
+"APT lineにはタイプ、場所、内容などを含めることができます。例:\"deb http://"
+"ftp.debian.org sarge main\"付属のドキュメントに詳細な記述形式について書か"
+"れています。"
#: ../data/SoftwarePropertiesDialogs.glade.h:18
msgid "APT line:"
@@ -673,8 +723,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -722,109 +771,137 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
#, fuzzy
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 5.04 セキュリティアップデート"
+#. Description
#: ../channels/Ubuntu.info.in:23
#, fuzzy
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Ubuntu 5.04 セキュリティアップデート"
+#. Description
#: ../channels/Ubuntu.info.in:40
#, fuzzy
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr "Ubuntu 5.04 セキュリティアップデート"
+#. Description
#: ../channels/Ubuntu.info.in:57
#, fuzzy
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr "Ubuntu 5.04 セキュリティアップデート"
+#. Description
#: ../channels/Ubuntu.info.in:74
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.04 セキュリティアップデート"
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 セキュリティアップデート"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 セキュリティアップデート"
+#. Description
#: ../channels/Ubuntu.info.in:125
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 セキュリティアップデート"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
#, fuzzy
msgid "Officially supported"
msgstr "公式サポート"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Restricted copyright"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "コミュニティによるメンテナンス (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "非フリー (Multiuniverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
#, fuzzy
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Debian Stable セキュリティアップデート"
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr ""
-#: ../channels/Debian.info.in:51
-#, fuzzy
-msgid "Oficially supported"
-msgstr "公式サポート"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr ""
+#, fuzzy
+#~ msgid "Installing updates"
+#~ msgstr "アップデートをインストール中..."
+
+#~ msgid "Sections:"
+#~ msgstr "セクション:"
+
+#, fuzzy
+#~ msgid "Oficially supported"
+#~ msgstr "公式サポート"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "サーバからパッケージ情報を再度読み込む。"
@@ -868,9 +945,6 @@ msgstr ""
#~ msgid "Choose a key-file"
#~ msgstr "キーファイルを選択"
-#~ msgid "Components"
-#~ msgstr "コンポーネント"
-
#~ msgid "Repository"
#~ msgstr "リポジトリ"
@@ -888,15 +962,18 @@ msgstr ""
#~ msgstr ""
#~ "認証鍵\n"
#~ "\n"
-#~ "認証鍵の追加と削除が行えます。認証鍵によりダウンロードしたソフトウェアが完全なものか確認することができます。"
+#~ "認証鍵の追加と削除が行えます。認証鍵によりダウンロードしたソフトウェアが完"
+#~ "全なものか確認することができます。"
#~ msgid "A_uthentication"
#~ msgstr "認証(_U)"
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
-#~ msgstr "新しい鍵ファイルを信頼されたキーリングに追加します。セキュアなチャンネル経由で鍵を取得し、信頼される持ち主のものか確認してください。 "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
+#~ msgstr ""
+#~ "新しい鍵ファイルを信頼されたキーリングに追加します。セキュアなチャンネル経"
+#~ "由で鍵を取得し、信頼される持ち主のものか確認してください。 "
#~ msgid "Automatically clean _temporary packages files"
#~ msgstr "一時ファイルを自動的に削除する(_T)"
@@ -917,9 +994,11 @@ msgstr ""
#~ msgstr "最大量(MB):"
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
-#~ msgstr "ディストリビューション付属のデフォルトの鍵を元に戻します。この変更によりユーザが追加した鍵が失われることはありません。"
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
+#~ msgstr ""
+#~ "ディストリビューション付属のデフォルトの鍵を元に戻します。この変更により"
+#~ "ユーザが追加した鍵が失われることはありません。"
#~ msgid "Set _maximum size for the package cache"
#~ msgstr "パッケージキャッシュの最大量を設定する(_M)"
@@ -945,26 +1024,27 @@ msgstr ""
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "アップデートがあります\n"
#~ "\n"
-#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれらのパッケージがインストールされます。"
+#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれら"
+#~ "のパッケージがインストールされます。"
#~ msgid ""
#~ "Reload the package information from the server. \n"
#~ "\n"
-#~ "If you have a permanent internet connection this is done automatically. If "
-#~ "you are behind an internet connection that needs to be started by hand (e.g. "
-#~ "a modem) you should use this button so that update-manager knows about new "
-#~ "updates."
+#~ "If you have a permanent internet connection this is done automatically. "
+#~ "If you are behind an internet connection that needs to be started by hand "
+#~ "(e.g. a modem) you should use this button so that update-manager knows "
+#~ "about new updates."
#~ msgstr ""
#~ "サーバからパッケージ情報を読み込み直します。\n"
#~ "\n"
-#~ ""
-#~ "ずっとインターネットに接続されたままなら、自動的に行います。アナログモデムなどでそうではないなら、アップデートマネージャに新しいアップデートがあるかどうかを"
-#~ "知らせるため、このボタンを使用して手動で行う必要があります。"
+#~ "ずっとインターネットに接続されたままなら、自動的に行います。アナログモデム"
+#~ "などでそうではないなら、アップデートマネージャに新しいアップデートがあるか"
+#~ "どうかを知らせるため、このボタンを使用して手動で行う必要があります。"
#~ msgid "Binary"
#~ msgstr "バイナリ"
@@ -997,13 +1077,14 @@ msgstr ""
#~ msgstr "リポジトリが変更されました"
#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources.list "
-#~ "is stored in %s.save. \n"
+#~ "The repository information has changes. A backup copy of your sources."
+#~ "list is stored in %s.save. \n"
#~ "\n"
#~ "You need to reload the package list from the servers for your changes to "
#~ "take effect. Do you want to do this now?"
#~ msgstr ""
-#~ "リポジトリ情報が変更されました。sources.listのバックアップを %s.save にコピーしました\n"
+#~ "リポジトリ情報が変更されました。sources.listのバックアップを %s.save にコ"
+#~ "ピーしました\n"
#~ "\n"
#~ "パッケージリストをサーバから再取得する必要があります。今すぐ実行しますか?"
@@ -1011,7 +1092,8 @@ msgstr ""
#~ "This means that some dependencies of the installed packages are not "
#~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation."
#~ msgstr ""
-#~ "インストールされたパッケージの依存性が満たせないようです。\"Synaptic\" または \"apt-get\" を使用して修正してください。"
+#~ "インストールされたパッケージの依存性が満たせないようです。\"Synaptic\" ま"
+#~ "たは \"apt-get\" を使用して修正してください。"
#~ msgid "It is not possible to upgrade all packages."
#~ msgstr "全てのパッケージをアップグレードすることは不可能です。"
@@ -1019,35 +1101,40 @@ msgstr ""
#~ msgid ""
#~ "This means that besides the actual upgrade of the packages some further "
#~ "action (such as installing or removing packages) is required. Please use "
-#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation."
+#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
+#~ "situation."
#~ msgstr ""
-#~ "パッケージのアップグレードの他にパッケージのインストールや削除などの別の対処がいるようです。Synaptic \"Smart "
-#~ "Upgrade\"か\"apt-get dist-upgrade\"を実行して問題を修正してください。"
+#~ "パッケージのアップグレードの他にパッケージのインストールや削除などの別の対"
+#~ "処がいるようです。Synaptic \"Smart Upgrade\"か\"apt-get dist-upgrade\"を実"
+#~ "行して問題を修正してください。"
#~ msgid "The following packages are not upgraded: "
#~ msgstr "これらのパッケージはアップグレードされません: "
#~ msgid "Changes not found, the server may not be updated yet."
-#~ msgstr "変更点は見つかりませんでした。サーバはまだアップデートされていないようです。"
+#~ msgstr ""
+#~ "変更点は見つかりませんでした。サーバはまだアップデートされていないようで"
+#~ "す。"
#~ msgid ""
#~ "Failed to download changes. Please check if there is an active internet "
#~ "connection."
-#~ msgstr "変更点の取得に失敗しました。インターネットに接続されているか確認してください。"
+#~ msgstr ""
+#~ "変更点の取得に失敗しました。インターネットに接続されているか確認してくださ"
+#~ "い。"
#~ msgid "Version %s: \n"
#~ msgstr "バージョン %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "変更点を取得中..."
-
#~ msgid "The updates are being applied."
#~ msgstr "アップデートされました。"
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
-#~ msgstr "同時にひとつのパッケージマネージャしか起動できません。先に他のアプリケーションマネージャを終了してください。"
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
+#~ msgstr ""
+#~ "同時にひとつのパッケージマネージャしか起動できません。先に他のアプリケー"
+#~ "ションマネージャを終了してください。"
#~ msgid "Updating package list..."
#~ msgstr "アップデートされるパッケージのリスト..."
@@ -1066,22 +1153,22 @@ msgstr ""
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
-#~ "新しいUbuntu "
-#~ "Linuxにアップグレードしてください。現在お使いのシステムにはセキュリティフィクスや危急のアップデートはすでに提供されていません。アッ"
-#~ "プグレードに関する情報は http://www.ubuntulinux.org/ を見てください。"
+#~ "新しいUbuntu Linuxにアップグレードしてください。現在お使いのシステムにはセ"
+#~ "キュリティフィクスや危急のアップデートはすでに提供されていません。アップグ"
+#~ "レードに関する情報は http://www.ubuntulinux.org/ を見てください。"
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "Ubuntuの新しいリリース版があります!"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
-#~ "コードネーム '%s' という新しいリリース版があります。アップグレードするために http://www.ubuntulinux.org/ "
-#~ "をご覧ください。"
+#~ "コードネーム '%s' という新しいリリース版があります。アップグレードするため"
+#~ "に http://www.ubuntulinux.org/ をご覧ください。"
#~ msgid "Never show this message again"
#~ msgstr "このメッセージを二度と表示しない"
@@ -1090,10 +1177,11 @@ msgstr ""
#~ msgstr "排他的なロックができません"
#~ msgid ""
-#~ "This usually means that another package management application (like apt-get "
-#~ "or aptitude) already running. Please close that application first"
+#~ "This usually means that another package management application (like apt-"
+#~ "get or aptitude) already running. Please close that application first"
#~ msgstr ""
-#~ "同時にひとつのパッケージマネージャしか起動できません。先に atp-get や aptitudeのような他のパッケージマネージャを終了してください。"
+#~ "同時にひとつのパッケージマネージャしか起動できません。先に atp-get や "
+#~ "aptitudeのような他のパッケージマネージャを終了してください。"
#~ msgid "Initializing and getting list of updates..."
#~ msgstr "アップデートリストを取得中..."
@@ -1113,9 +1201,10 @@ msgstr ""
#, fuzzy
#~ msgid ""
#~ "Available Updates\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "利用可能なアップデート\n"
#~ "\n"
-#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれらのパッケージがインストールされます。"
\ No newline at end of file
+#~ "以下のパッケージがアップグレード可能です。インストールボタンを押すとこれら"
+#~ "のパッケージがインストールされます。"
diff --git a/po/lt.po b/po/lt.po
index 4ad513c3..4e160e8f 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -7,50 +7,49 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-20 21:56+0000\n"
"Last-Translator: Žygimantas Beručka \n"
"Language-Team: Lithuanian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
-"(n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%"
+"100<10 || n%100>=20) ? 1 : 2);\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr "Kas %s dienas"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "Po %s dienų"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr "Importuoti raktą"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Importuojant pasirinktą rinkmeną įvyko klaida"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
"Pasirinkta rinkmena gali būti ne GPG rakto rinkmena arba sugadinta rinkmena."
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Šalinant raktą įvyko klaida"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+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:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -61,11 +60,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "Įveskite disko pavadinimą"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr "Įdėkite diską į įrenginį:"
@@ -87,6 +86,7 @@ msgstr "Negalima atnaujinti reikiamų metapaketų"
msgid "A essential package would have to be removed"
msgstr ""
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr "Nepavyko paskaičiuoti atnaujinimo"
@@ -97,34 +97,36 @@ msgid ""
"this as a bug. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr "Klaida autentikuojant keletą paketų"
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "Negalima įdiegti „%s“"
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr ""
"Buvo neįmanoma įdiegti reikalingo paketo. Praneškite apie tai, kaip klaidą. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -137,41 +139,42 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr "Nerasta tinkamo įrašo"
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr "Saugyklų informacija netinkama"
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr "Klaida atnaujinant"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr "Diske nepakanka laisvos vietos"
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -179,18 +182,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr "At norite pradėti atnaujinimą?"
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr "Nepavyko įdiegti atnaujinimų"
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -203,96 +207,121 @@ msgid ""
"installation media and try again. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+#: ../DistUpgrade/DistUpgradeControler.py:273
+#, fuzzy
+msgid "Remove obsolete packages?"
msgstr "Pašalinti pasenusius paketus?"
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr "Tikrinama paketų valdyklė"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr "Atnaujinama saugyklų informacija"
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr "Klausiama patvirtinimo"
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr "Atnaujinama"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr "Ieškoma pasenusios programinės įrangos"
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr "Sistemos atnaujinimas baigtas."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr "Atsiųsta"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr "Atsiunčiama rinkmena %li iš %li, %s/s greičiu"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr "liko %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
-#, python-format
-msgid "Downloading file %li of %li at unknown speed"
-msgstr ""
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
+#, fuzzy, python-format
+msgid "Downloading file %li of %li"
+msgstr "Atsiunčiama rinkmena %li iš %li, %s/s greičiu"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
-msgstr "Diegiami atnaujinimai"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+msgid "Applying changes"
+msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr "Nepavyko įdiegti „%s“"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr "Atnaujinimas nutrūko. Praneškite apie tai kaip apie klaidą."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr "Įvyko lemtinga klaida"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
@@ -300,7 +329,7 @@ msgstr[0] "Bus pašalintas %s paketas."
msgstr[1] "Bus pašalinti %s paketai."
msgstr[2] "Bus pašalinta %s paketų."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
@@ -308,7 +337,7 @@ msgstr[0] "Bus įdiegtas %s naujas paketas."
msgstr[1] "Bus įdiegti %s nauji paketai."
msgstr[2] "Bus įdiegta %s naujų paketų."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
@@ -316,51 +345,52 @@ msgstr[0] "Bus atnaujintas %s paketas."
msgstr[1] "Bus atnaujinti %s paketai."
msgstr[2] "Bus atnaujinta %s paketų."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr "Turite atsisiųsti viso %s."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
"Atnaujinimas gali užtrukti keletą valandų ir vėliau jo negalima atšaukti."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
"Norint išvengti duomenų praradimo turite užverti visas atvertas programas ir "
"dokumentus."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr "Nepavyko rasti jokių atnaujinimų"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr "Jūsų sistema jau buvo atnaujinta."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr "Pašalinti %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr "Įdiegti %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr "Atnaujinti %s"
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr "Reikia perkrauti kompiuterį"
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -370,6 +400,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -392,12 +423,13 @@ msgid "Start the upgrade?"
msgstr "Pradėti atnaujinimą?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
+#, fuzzy
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
-"Atnaujinama į Ubuntu „Dapper“ "
-"6.04"
+"Atnaujinama į Ubuntu „Dapper“ 6.04"
+"span>"
#: ../DistUpgrade/DistUpgrade.glade.h:8
msgid "Cleaning up"
@@ -408,38 +440,51 @@ msgid "Details"
msgstr "Detalės"
#: ../DistUpgrade/DistUpgrade.glade.h:10
+msgid "Difference between the files"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
msgstr "Atsiunčiami ir įdiegiami atnaujinimai"
-#: ../DistUpgrade/DistUpgrade.glade.h:11
+#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
msgstr "Keičiami programinės įrangos kanalai"
-#: ../DistUpgrade/DistUpgrade.glade.h:12
+#: ../DistUpgrade/DistUpgrade.glade.h:13
msgid "Preparing the upgrade"
msgstr "Ruošiamas atnaujinimas"
-#: ../DistUpgrade/DistUpgrade.glade.h:13
+#: ../DistUpgrade/DistUpgrade.glade.h:14
msgid "Restarting the system"
msgstr "Perkraunama sistema"
-#: ../DistUpgrade/DistUpgrade.glade.h:14
+#: ../DistUpgrade/DistUpgrade.glade.h:15
msgid "Terminal"
msgstr "Terminalas"
-#: ../DistUpgrade/DistUpgrade.glade.h:15
+#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
msgstr "Atnaujinama Ubuntu"
-#: ../DistUpgrade/DistUpgrade.glade.h:16
+#: ../DistUpgrade/DistUpgrade.glade.h:17
+msgid "_Keep"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "Į_kelti iš naujo"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
msgstr "_Pranešti apie klaidą"
-#: ../DistUpgrade/DistUpgrade.glade.h:17
+#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
msgstr "_Perkrauti dabar"
-#: ../DistUpgrade/DistUpgrade.glade.h:18
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr "_Tęsti atnaujinimą"
@@ -452,8 +497,9 @@ msgid ""
msgstr ""
#: ../data/UpdateManager.glade.h:4
+#, fuzzy
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -476,30 +522,34 @@ msgid "Changes"
msgstr "Pakeitimai"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
+msgid "Chec_k"
msgstr ""
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Aprašymas"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr "Leidimo aprašymas"
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr "Rodyti detales"
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Rodyti pavienių rinkmenų progresą"
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Programinės įrangos atnaujinimai"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -507,23 +557,23 @@ msgstr ""
"Programinės įrangos atnaujinimai gali ištaisyti klaidas, pašalinti saugumo "
"spragas bei suteikti naujas funkcijas."
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr "At_naujinti"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr "Atnaujinti iki naujausios Ubuntu versijos"
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr "_Nerodyti šios informacijos ateityje"
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
msgstr "Į_diegti atnaujinimus"
@@ -587,7 +637,8 @@ msgid "_Check for updates automatically:"
msgstr "_Ieškoti atnaujinimų automatiškai:"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+#, fuzzy
+msgid "_Download updates in the background, but do not install them"
msgstr "_Atsiųsti atnaujinimus fone, tačiau jų neįdiegti"
#: ../data/SoftwareProperties.glade.h:16
@@ -617,12 +668,13 @@ msgid "Comment:"
msgstr "Komentaras:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Distribucija:"
+#, fuzzy
+msgid "Components:"
+msgstr "Komentaras:"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Skyriai:"
+msgid "Distribution:"
+msgstr "Distribucija:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
msgid "Sections"
@@ -638,8 +690,8 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
@@ -674,11 +726,9 @@ msgid "Scanning CD-ROM"
msgstr "Skanuojamas CD-ROM"
#: ../data/SoftwarePropertiesDialogs.glade.h:24
+#, fuzzy
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] "_Pridėti kanalą"
-msgstr[1] "_Pridėti kanalus"
-msgstr[2] "_Pridėti kanalų"
+msgstr "_Pridėti kanalą"
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -725,114 +775,145 @@ msgstr ""
msgid "The window size"
msgstr "Lango dydis"
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
-msgstr ""
-"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+#, fuzzy
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 6.04 „Dapper Drake“"
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Ubuntu 6.04 saugumo atnaujinimai"
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Updates"
msgstr "Ubuntu 6.04 atnaujinimai"
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
-msgstr ""
+#, fuzzy
+msgid "Ubuntu 6.06 Backports"
+msgstr "Ubuntu 6.04 atnaujinimai"
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 „Breezy Badger“"
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 saugumo atnaujinimai"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 atnaujinimai"
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr ""
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Apribotos autorinės teisės"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Prižiūrima bendruomenės (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Ne Laisva (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 „Sarge“"
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr "http://security.debian.org/"
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Debian 3.1 „Sarge“ saugumo atnaujinimai"
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr "Debian „Etch“ (testing)"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr "http://http.lt.debian.org/debian/"
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian „Sid“ (unstable)"
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr "Prižiūrima oficialiai"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
-msgstr ""
-"Su DFSG suderinama programinė įranga su Ne Laisvomis priklausomybėmis"
+msgstr "Su DFSG suderinama programinė įranga su Ne Laisvomis priklausomybėmis"
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr "Su DFSG nesuderinama programinė įranga"
+#~ msgid "Installing updates"
+#~ msgstr "Diegiami atnaujinimai"
+
+#~ msgid "Sections:"
+#~ msgstr "Skyriai:"
+
+#~ msgid "Oficially supported"
+#~ msgstr "Prižiūrima oficialiai"
+
#~ msgid ""
-#~ "You need to manually reload the latest information about "
-#~ "updates\n"
+#~ "You need to manually reload the latest information about updates"
+#~ "big>\n"
#~ "\n"
-#~ "Your system does not check for updates automatically. You can configure this "
-#~ "behavior in \"System\" -> \"Administration\" -> \"Software Properties\"."
+#~ "Your system does not check for updates automatically. You can configure "
+#~ "this behavior in \"System\" -> \"Administration\" -> \"Software Properties"
+#~ "\"."
#~ msgstr ""
-#~ "Jūs turite patys įkelti naujausią informaciją apie "
-#~ "atnaujinimus\n"
+#~ "Jūs turite patys įkelti naujausią informaciją apie atnaujinimus"
+#~ "big>\n"
#~ "\n"
#~ "Jūsų sistema automatiškai neieško atnaujinimų. Šią elgseną galite "
-#~ "konfigūruoti „Sistema“ -> „Administravimas“ -> „Programinės įrangos savybės“."
+#~ "konfigūruoti „Sistema“ -> „Administravimas“ -> „Programinės įrangos "
+#~ "savybės“."
#~ msgid "Reload the latest information about updates"
-#~ msgstr "Įkelti naujausią informaciją apie atnaujinimus"
\ No newline at end of file
+#~ msgstr "Įkelti naujausią informaciją apie atnaujinimus"
diff --git a/po/mk.po b/po/mk.po
index 9ea1d70c..f086b544 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: mk\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-23 00:18+0000\n"
"Last-Translator: Арангел Ангов \n"
"Language-Team: Macedonian \n"
@@ -17,41 +17,40 @@ msgstr ""
"Plural-Forms: nplurals=3; plural= n==1 || n%10==1 ? 0 : 1\n"
"X-Generator: KBabel 1.10\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Грешка при увоз на избраната датотека"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
"Избраната датотека може да не е GPG датотека или пак може да е расипана."
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Грешка при отстранување на клучот"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова "
"како бубачка."
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -59,11 +58,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -85,6 +84,7 @@ msgstr ""
msgid "A essential package would have to be removed"
msgstr ""
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr ""
@@ -98,23 +98,24 @@ msgstr ""
"Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова "
"како бубачка. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
#, fuzzy
msgid ""
"It was impossible to install a required package. Please report this as a "
@@ -123,11 +124,12 @@ msgstr ""
"Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова "
"како бубачка. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -140,42 +142,43 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
#, fuzzy
msgid "Error during update"
msgstr "Грешка при отстранување на клучот"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -183,18 +186,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -207,102 +211,126 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Remove"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
#, fuzzy
msgid "Checking package manager"
msgstr "Веќе работи друг менаџер за пакети"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
#, fuzzy
msgid "Upgrading"
msgstr "Надградбата е завршена"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
#, fuzzy
-msgid "Installing updates"
-msgstr "Инсталирам надградби..."
+msgid "Applying changes"
+msgstr "Преземам промени..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
#, fuzzy
msgid "The upgrade aborts now. Please report this bug."
msgstr ""
"Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова "
"како бубачка."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
@@ -310,7 +338,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
@@ -318,7 +346,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
@@ -326,48 +354,49 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
+#, python-format
msgid "Remove %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
+#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
+#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -375,6 +404,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -398,8 +428,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -412,38 +442,51 @@ msgid "Details"
msgstr "Детали"
#: ../DistUpgrade/DistUpgrade.glade.h:10
-msgid "Downloading and installing the upgrades"
+msgid "Difference between the files"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:11
-msgid "Modifying the software channels"
+msgid "Downloading and installing the upgrades"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:12
-msgid "Preparing the upgrade"
+msgid "Modifying the software channels"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:13
-msgid "Restarting the system"
+msgid "Preparing the upgrade"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:14
-msgid "Terminal"
+msgid "Restarting the system"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:15
-msgid "Upgrading Ubuntu"
+msgid "Terminal"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:16
-msgid "_Report Bug"
+msgid "Upgrading Ubuntu"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:17
-msgid "_Restart Now"
+msgid "_Keep"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "Освежи"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr ""
@@ -457,7 +500,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -476,53 +519,56 @@ msgid "Changes"
msgstr "Промени"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
-msgid "Check for available updates"
-msgstr "Проверувам за надградби..."
+msgid "Chec_k"
+msgstr ""
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Опис"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Надградба на софтвер"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr ""
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
msgstr "Инсталирам надградби..."
@@ -594,7 +640,7 @@ msgid "_Check for updates automatically:"
msgstr "Проверувај за надградби на секои"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -625,12 +671,13 @@ msgid "Comment:"
msgstr "Коментар:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Дистрибуција:"
+#, fuzzy
+msgid "Components:"
+msgstr "Компоненти"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Оддели:"
+msgid "Distribution:"
+msgstr "Дистрибуција:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
#, fuzzy
@@ -648,14 +695,14 @@ msgstr "Адреса:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
#, fuzzy
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
-"Внесете ја комплетната линија за APT складиштето за да го "
-"додадете\n"
+"Внесете ја комплетната линија за APT складиштето за да го додадете"
+"b>\n"
"\n"
"APT линијата го содржи типот, локацијата и содржината на складиштето за на "
"пример \"deb http://ftp.debian.org sarge main\". Во документацијата "
@@ -687,10 +734,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -738,110 +782,142 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
#, fuzzy
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Надградби за Убунту 5.04"
+#. Description
#: ../channels/Ubuntu.info.in:23
#, fuzzy
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Безбедносни надградби за Убунту 5.04"
+#. Description
#: ../channels/Ubuntu.info.in:40
#, fuzzy
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr "Надградби за Убунту 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:57
#, fuzzy
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr "Надградби за Убунту 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:74
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "CD диск со Убунту 5.10 \"Breezy Badger\""
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Безбедносни надградби за Убунту 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Надградби за Убунту 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:125
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "Надградби за Убунту 5.10"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr "Официјално поддржано"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Restricted copyright"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Оддржувано од заедницата (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Неслободно (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 \"Sarge\""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
#, fuzzy
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Безбедносни надградби за Debian Stable"
+#. Description
#: ../channels/Debian.info.in:34
#, fuzzy
msgid "Debian \"Etch\" (testing)"
msgstr "Debian Testing"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
#, fuzzy
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian Non-US (Unstable)"
-#: ../channels/Debian.info.in:51
-#, fuzzy
-msgid "Oficially supported"
-msgstr "Официјално поддржано"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr ""
+#, fuzzy
+#~ msgid "Installing updates"
+#~ msgstr "Инсталирам надградби..."
+
+#, fuzzy
+#~ msgid "Check for available updates"
+#~ msgstr "Проверувам за надградби..."
+
+#~ msgid "Sections:"
+#~ msgstr "Оддели:"
+
+#, fuzzy
+#~ msgid "Oficially supported"
+#~ msgstr "Официјално поддржано"
+
#~ msgid "Edit software sources and settings"
#~ msgstr "Уреди софтверски извори и поставувања"
@@ -863,9 +939,6 @@ msgstr ""
#~ msgid "day(s)"
#~ msgstr "ден(а)"
-#~ msgid "Components"
-#~ msgstr "Компоненти"
-
#~ msgid "Repository"
#~ msgstr "Складиште"
@@ -898,13 +971,13 @@ msgstr ""
#~ "Внесете ја комплетната линија за APT складиштето за да го "
#~ "додадете\n"
#~ "\n"
-#~ "APT линијата го содржи типот, локацијата и содржината на складиштето за на "
-#~ "пример \"deb http://ftp.debian.org sarge main\". Во документацијата "
-#~ "можете да најдете детален опис на синтаксата."
+#~ "APT линијата го содржи типот, локацијата и содржината на складиштето за "
+#~ "на пример \"deb http://ftp.debian.org sarge main\". Во "
+#~ "документацијата можете да најдете детален опис на синтаксата."
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
#~ "Додајте нова датотека со клуч во доверливиот привезок. Осигурајте се дека "
#~ "сте го добиле клучот преку безбеден канал и дека му верувате на неговиот "
@@ -941,8 +1014,8 @@ msgstr ""
#~ msgstr "Врати ги стандардните клучеви"
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
#~ "Врати ги стандардните клучеви на дистрибуцијата. Ова нема да ги смени "
#~ "клучевите инсталирани од корисникот."
@@ -977,8 +1050,8 @@ msgstr ""
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Достапни надградби\n"
#~ "\n"
@@ -1096,9 +1169,6 @@ msgstr ""
#~ msgid "Version %s: \n"
#~ msgstr "Верзија %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "Преземам промени..."
-
#~ msgid "There are no updated packages"
#~ msgstr "Нема надградени пакети"
@@ -1115,7 +1185,8 @@ msgstr ""
#~ msgstr[2] "Избравте %s пакети за надградба, со големина од %s"
#~ msgid "You have selected %s out of %s updated package, size %s"
-#~ msgid_plural "You have selected %s out of %s updated packages, total size %s"
+#~ msgid_plural ""
+#~ "You have selected %s out of %s updated packages, total size %s"
#~ msgstr[0] "Избравте %s од %s пакет за надградба, со големина од %s"
#~ msgstr[1] "Избравте %s од %s пакети за надградба, со големина од %s"
#~ msgstr[2] "Избравте %s од %s пакети за надградба, со големина од %s"
@@ -1130,11 +1201,11 @@ msgstr ""
#~ msgstr "Веќе работи друг менаџер за пакети"
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
-#~ "Можете да работите само со една апликација за менаџмент на пакети одеднаш. "
-#~ "Ве молам прво исклучете ја оваа апликацијата."
+#~ "Можете да работите само со една апликација за менаџмент на пакети "
+#~ "одеднаш. Ве молам прво исклучете ја оваа апликацијата."
#~ msgid "Updating package list..."
#~ msgstr "Ја ажурирам листата на пакети..."
@@ -1156,20 +1227,20 @@ msgstr ""
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
#~ "Ве молам надградете до понова верзија на Убунту Линукс. Верзијата на која "
-#~ "што работите повеќе нема да биде поддржана во смисол на безбедносни поправки "
-#~ "и други технички надградби. Ве молам побарајте информации за надградба на "
-#~ "http://www.ubuntulinux.org."
+#~ "што работите повеќе нема да биде поддржана во смисол на безбедносни "
+#~ "поправки и други технички надградби. Ве молам побарајте информации за "
+#~ "надградба на http://www.ubuntulinux.org."
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "Достапна е нова верзија на Убунту!"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
#~ "Постои ново издание објавено под кодното име '%s'. Ве молам побарајте ги "
#~ "инструкциите за надградба на http://www.ubuntulinux.org."
@@ -1184,5 +1255,5 @@ msgstr ""
#~ "Failed to download changes. Please check if there is an active internet "
#~ "connection."
#~ msgstr ""
-#~ "Не успеав да ги преземам промените. Ве молам проверете дали Вашата интернет "
-#~ "врска е активна."
\ No newline at end of file
+#~ "Не успеав да ги преземам промените. Ве молам проверете дали Вашата "
+#~ "интернет врска е активна."
diff --git a/po/nb.po b/po/nb.po
index 0100f0bc..37d7416c 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: nb\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-26 14:48+0000\n"
"Last-Translator: Ingar Saltvik \n"
"Language-Team: Norwegian Bokmal \n"
@@ -17,39 +17,38 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: KBabel 1.10\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr "Hver %s dag"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "Etter %s dager"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr "Importer nøkkel"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Feil under importering av fil"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
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, ellers er den skadet."
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Feil under fjerning av nøkkel"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+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:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -60,11 +59,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "Vennligst skriv inn et navn for platen"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr "Vennligst sett inn planen i stasjonen:"
@@ -89,6 +88,7 @@ msgstr "Kan ikke oppgradere nødvendige meta-pakker"
msgid "A essential package would have to be removed"
msgstr "En nødvendig pakke må bli fjernet"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr "Kunne ikke forberede oppgraderingen"
@@ -101,11 +101,12 @@ msgstr ""
"Et uopprettelig problem oppstå ved forberedelse av oppgraderingen. Vennligst "
"rapporter dette som en feil. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr "Feil ved autentisering av noen pakker"
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
@@ -115,12 +116,12 @@ msgstr ""
"nettverksproblem, og du bør prøve igjen senere. Se under for en liste over "
"ikke-autentiserte pakker."
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "Kan ikke installere '%s'"
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
@@ -128,11 +129,12 @@ msgstr ""
"Det var ikke mulig å installere en nødvendig pakke. Vennligst rapporter "
"denne feilen. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr "Kan ikke gjette på meta-pakke"
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -150,11 +152,12 @@ msgstr ""
msgid "Reading cache"
msgstr "Leser mellomlager"
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr "Fant ikke noen gyldig oppføring"
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
@@ -162,11 +165,11 @@ msgstr ""
"Fant ikke noen gyldig oppføring for oppgradering ved lesing av "
"arkivinformasjon.\n"
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr "Ugyldig informasjon om arkiv"
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
@@ -174,11 +177,11 @@ msgstr ""
"Oppgradering av arkivinformasjon resulterte i en ugyldig fil. Vennligst "
"rapporter dette som en feil."
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr "Feil under oppdatering"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
@@ -187,11 +190,11 @@ msgstr ""
"problem med nettverkstilkoblingen. Vennligst sjekk nettverkstilkoblingen din "
"og prøv igjen."
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr "Ikke nok ledig diskplass"
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -202,18 +205,20 @@ msgstr ""
"papirkurven og fjern midlertidige pakker fra tidligere installasjoner ved å "
"bruke 'sudo apt-get-clean'."
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr "Ønsker du å starte oppgraderingen?"
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr "Kunne ikke installere oppgraderingene"
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
+#, fuzzy
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
"Oppgraderingen avbrytes nå. Systemet ditt kan være ubrukelig. Vennlist prøv "
"'sudo apt-get install -f' eller Synaptic for å fikse systemet ditt."
@@ -230,15 +235,24 @@ msgstr ""
"Oppgraderingen avbrytes nå. Vennligst sjekk internet tilkoblingen eller "
"installasjonsmediet og prøv på nytt. "
-#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+#: ../DistUpgrade/DistUpgradeControler.py:273
+#, fuzzy
+msgid "Remove obsolete packages?"
msgstr "Ønsker du å fjerne utdaterte pakker?"
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr "Feil ved commit"
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
@@ -247,148 +261,166 @@ msgstr ""
"informasjon. "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr "Sjekker pakkehåndterer"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr "Oppdaterer informasjon om arkivet"
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr "Spør om bekreftelse"
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr "Oppgraderer"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr "Søker etter utdatert programvare"
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr "Systemoppgraderingen er fullført"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr "Vennligst sett inn '%s' i stasjonen '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr "Nedlastingen er fullført"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr "Laster ned fil %li av %li med %s/s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr "%s gjenstår"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
-#, python-format
-msgid "Downloading file %li of %li at unknown speed"
-msgstr "Laster ned fil %li av %li med ukjent hastighet"
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
+#, fuzzy, python-format
+msgid "Downloading file %li of %li"
+msgstr "Laster ned fil %li av %li med %s/s"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
-msgstr "Installerer oppdateringer"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+#, fuzzy
+msgid "Applying changes"
+msgstr "Laster ned endringer..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr "Kunne ikke installere '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr "Oppgraderingen avbrytes nå. Vennligst rapporter dette som en feil."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr "En uopprettelig feil oppsto"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
"Vennligst rapporter feilen og inkluder filene ~/dist-upgrade.log og ~/dist-"
"upgrade-apt.log i din melding. Oppgraderingen avbrytes nå. "
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] "%s pakke vil bli fjernet."
msgstr[1] "%s pakker vil bli fjernet"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] "%s pakke vil bli installert."
msgstr[1] "%s pakker vil bli installert."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] "%s pakke vil bli oppgradert."
msgstr[1] "%s pakker vil bli oppgradert."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr "Du må laste ned totalt %s."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
"Oppgraderingen kan ta flere timer og kan ikke avbrytes på noe senere "
"tidspunkt."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
"For å forhindre tap av data bør du lukke alle åpne programmer og dokumenter."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr "Kunne ikke finne noen oppgraderinger"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr "Systemet ditt er allerede oppgradert."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr "Fjern %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr "Installèr %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr "Oppgradèr %s"
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr "Omstart er nødvendig"
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -398,6 +430,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -425,9 +458,10 @@ msgid "Start the upgrade?"
msgstr "Vil du starte oppgraderingen?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
+#, fuzzy
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
"Oppgraderer til Ubuntu \"Dapper\" "
"6.04"
@@ -441,38 +475,51 @@ msgid "Details"
msgstr "Detaljer"
#: ../DistUpgrade/DistUpgrade.glade.h:10
+msgid "Difference between the files"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
msgstr "Laster ned og installerer oppgraderingene"
-#: ../DistUpgrade/DistUpgrade.glade.h:11
+#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
msgstr "Endrer kanalene for programvare"
-#: ../DistUpgrade/DistUpgrade.glade.h:12
+#: ../DistUpgrade/DistUpgrade.glade.h:13
msgid "Preparing the upgrade"
msgstr "Forbereder oppgraderingen"
-#: ../DistUpgrade/DistUpgrade.glade.h:13
+#: ../DistUpgrade/DistUpgrade.glade.h:14
msgid "Restarting the system"
msgstr "Starter systemet på nytt"
-#: ../DistUpgrade/DistUpgrade.glade.h:14
+#: ../DistUpgrade/DistUpgrade.glade.h:15
msgid "Terminal"
msgstr "Terminal"
-#: ../DistUpgrade/DistUpgrade.glade.h:15
+#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
msgstr "Oppgraderer Ubuntu"
-#: ../DistUpgrade/DistUpgrade.glade.h:16
+#: ../DistUpgrade/DistUpgrade.glade.h:17
+msgid "_Keep"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "_Last på nytt"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
msgstr "_Rapportèr en feil"
-#: ../DistUpgrade/DistUpgrade.glade.h:17
+#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
msgstr "_Omstart nå"
-#: ../DistUpgrade/DistUpgrade.glade.h:18
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr "_Gjenoppta oppgradering"
@@ -490,8 +537,9 @@ msgstr ""
"\"Programvareegenskaper\""
#: ../data/UpdateManager.glade.h:4
+#, fuzzy
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -514,30 +562,35 @@ msgid "Changes"
msgstr "Endringer"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
-msgstr "Sjekker for tilgjengelige oppdateringer"
+#, fuzzy
+msgid "Chec_k"
+msgstr "Sjekk"
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Beskrivelse"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr "Utgivelsesinformasjon"
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr "Vis detaljer"
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Vis framgang for enkeltfiler"
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Programvareoppdateringer"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -545,23 +598,23 @@ msgstr ""
"Programvareoppdateringer kan fikse feil, fjerne sikkerhetshull og tilby ny "
"funksjonalitet."
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr "O_ppgrader"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr "Oppgrader til siste versjon av Ubuntu"
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr "Sjekk"
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr "Skjul denne informasjonen i fremtiden"
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
msgstr "_Installerer oppdateringer"
@@ -628,7 +681,8 @@ msgid "_Check for updates automatically:"
msgstr "_Sjekk for oppdateringer automatisk:"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+#, fuzzy
+msgid "_Download updates in the background, but do not install them"
msgstr "_Last ned oppdateringer i bakgrunnen, men ikke installer dem"
#: ../data/SoftwareProperties.glade.h:16
@@ -664,12 +718,13 @@ msgid "Comment:"
msgstr "Kommentar:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Distribusjon:"
+#, fuzzy
+msgid "Components:"
+msgstr "Komponenter"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Seksjoner:"
+msgid "Distribution:"
+msgstr "Distribusjon:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
msgid "Sections"
@@ -685,8 +740,8 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
@@ -722,10 +777,9 @@ msgid "Scanning CD-ROM"
msgstr "Søker gjennom CD-ROM"
#: ../data/SoftwarePropertiesDialogs.glade.h:24
+#, fuzzy
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] "Legg til k_anal"
-msgstr[1] "Legg til k_analer"
+msgstr "Legg til k_anal"
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -775,100 +829,137 @@ msgstr ""
msgid "The window size"
msgstr "Vindusstørrelsen"
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+#, fuzzy
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 6.04 'Dapper Drake'"
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Sikkerhetsoppdateringer for Ubuntu 6.04"
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Updates"
msgstr "Ubuntu 6.04 Oppdateringer"
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+#, fuzzy
+msgid "Ubuntu 6.06 Backports"
msgstr "Ubuntu 6.04 Backports"
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 Security Updates"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 Updates"
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Backports"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr "Offisielt støttet"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Begrenset opphavsrett"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Vedlikeholdt av miljøet (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Non-free (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 «Sarge»"
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Debian 3.1 \"Sarge\" sikkerhetsoppdateringer"
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr "Debian \"Etch\" (testing)"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian \"Sid\" (unstable)"
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr "Offisielt støttet"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr "DFSG-kompatiblel programvare med Non-Free avhengigheter"
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr "Ikke-DFSG-kompatibel programvare"
+#~ msgid "Downloading file %li of %li at unknown speed"
+#~ msgstr "Laster ned fil %li av %li med ukjent hastighet"
+
+#~ msgid "Installing updates"
+#~ msgstr "Installerer oppdateringer"
+
+#~ msgid "Check for available updates"
+#~ msgstr "Sjekker for tilgjengelige oppdateringer"
+
+#~ msgid "Sections:"
+#~ msgstr "Seksjoner:"
+
+#~ msgid "Oficially supported"
+#~ msgstr "Offisielt støttet"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Oppdater pakkeinformasjonen fra tjeneren."
@@ -907,9 +998,6 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgid "Sources"
#~ msgstr "Programvarekilder"
-#~ msgid "Components"
-#~ msgstr "Komponenter"
-
#~ msgid "Repository"
#~ msgstr "Arkiv"
@@ -927,13 +1015,13 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgstr ""
#~ "Autentiseringsnøkler\n"
#~ "\n"
-#~ "Du kan legge til eller fjerne autentiseringsnøkler i dette vinduet. Nøkler "
-#~ "gjør det mulig å kontrollere integriteten til programvare som blir lastet "
-#~ "ned."
+#~ "Du kan legge til eller fjerne autentiseringsnøkler i dette vinduet. "
+#~ "Nøkler gjør det mulig å kontrollere integriteten til programvare som blir "
+#~ "lastet ned."
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
#~ "Legg til en ny nøkkelfil til den sikre nøkkelringen. Vær sikker på at du "
#~ "mottok nøkkelen over en sikker kanal og at du stoler på eieren. "
@@ -964,8 +1052,8 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgstr "Maksimum størrelse i MB:"
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr "Gjenoppret nøklene som kom med distri"
#~ msgid "Set _maximum size for the package cache"
@@ -995,13 +1083,13 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Tilgjengelige oppdateringer\n"
#~ "\n"
-#~ "De følgende pakkene kan oppgraderes. Du kan oppgradere dem ved å trykke på "
-#~ "«Installer»-knappen."
+#~ "De følgende pakkene kan oppgraderes. Du kan oppgradere dem ved å trykke "
+#~ "på «Installer»-knappen."
#~ msgid "Cancel downloading the changelog"
#~ msgstr "Avbryt nedlasting av endringslogg"
@@ -1090,9 +1178,6 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgid "Version %s: \n"
#~ msgstr "Versjon %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "Laster ned endringer..."
-
#~ msgid "There are no updated packages"
#~ msgstr "Det er ingen utdaterte pakker"
@@ -1107,7 +1192,8 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgstr[1] "Du har valgt alle de %s oppdaterte pakkene, total størrelse %s"
#~ msgid "You have selected %s out of %s updated package, size %s"
-#~ msgid_plural "You have selected %s out of %s updated packages, total size %s"
+#~ msgid_plural ""
+#~ "You have selected %s out of %s updated packages, total size %s"
#~ msgstr[0] "Du har valgt %s av %s oppdaterte pakker, størrelse %s"
#~ msgstr[1] "Du har valgt %s av de %s oppdaterte pakkene, total størrelse %s"
@@ -1115,8 +1201,8 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgstr "Oppdateringene blir tilført."
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
#~ "Du kan bare kjøre et pakkehåndteringsprogram samtidig. Lukk det andre "
#~ "programmet først."
@@ -1135,19 +1221,19 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
-#~ "Oppgrader til en nyere versjon av Ubuntu Linux. Versjonen du kjører får ikke "
-#~ "sikkerhetsoppdateringer eller andre kritiske oppdateringer lenger. Se "
-#~ "http://www.ubuntulinux.org for informasjon om oppgradering."
+#~ "Oppgrader til en nyere versjon av Ubuntu Linux. Versjonen du kjører får "
+#~ "ikke sikkerhetsoppdateringer eller andre kritiske oppdateringer lenger. "
+#~ "Se http://www.ubuntulinux.org for informasjon om oppgradering."
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "Det er en ny versjon av Ubuntu tilgjengelig!"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
#~ "En ny versjon med kodenavnet «%s» er tilgjengelig. Se http://www. "
#~ "ubuntulinux.org/ for instruksjoner om oppgradering."
@@ -1177,8 +1263,8 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgstr "Arkiv har blitt endret"
#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources.list "
-#~ "is stored in %s.save. \n"
+#~ "The repository information has changes. A backup copy of your sources."
+#~ "list is stored in %s.save. \n"
#~ "\n"
#~ "You need to reload the package list from the servers for your changes to "
#~ "take effect. Do you want to do this now?"
@@ -1202,11 +1288,12 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgid ""
#~ "This means that besides the actual upgrade of the packages some further "
#~ "action (such as installing or removing packages) is required. Please use "
-#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation."
+#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
+#~ "situation."
#~ msgstr ""
-#~ "Dette betyr at ved siden av å oppgradere pakkene kreves det ekstra handling "
-#~ "(som å installere eller fjerne pakker). Bruk «Synaptic» eller «apt-get dist-"
-#~ "upgrade» for å løse problemet."
+#~ "Dette betyr at ved siden av å oppgradere pakkene kreves det ekstra "
+#~ "handling (som å installere eller fjerne pakker). Bruk «Synaptic» eller "
+#~ "«apt-get dist-upgrade» for å løse problemet."
#~ msgid "The following packages are not upgraded: "
-#~ msgstr "De følgende pakkene er ikke oppgradert: "
\ No newline at end of file
+#~ msgstr "De følgende pakkene er ikke oppgradert: "
diff --git a/po/ne.po b/po/ne.po
index 8464d5da..de418abb 100644
--- a/po/ne.po
+++ b/po/ne.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager.HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-23 00:19+0000\n"
"Last-Translator: Jaydeep Bhusal \n"
"Language-Team: Nepali \n"
@@ -18,40 +18,37 @@ msgstr ""
"X-Generator: KBabel 1.9.1\n"
"Plural-Forms: nplurals=2;plural=(n!=0)\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "चयन गरिएको फाइल आयात गर्दा त्रुटि"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "चयन गरिएको फाइल जिपिजि कुञ्जि फइल नहुन सक्छ अथवा यो दुषित हुन सक्दछ"
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "कुञ्जि हटाउँदा त्रुटि"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
-msgstr ""
-"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा "
-"दिनुहोस"
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
+msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस"
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -59,11 +56,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -85,6 +82,7 @@ msgstr ""
msgid "A essential package would have to be removed"
msgstr ""
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr ""
@@ -94,40 +92,38 @@ msgstr ""
msgid ""
"A unresolvable problem occured while calculating the upgrade. Please report "
"this as a bug. "
-msgstr ""
-"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा "
-"दिनुहोस "
+msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
#, fuzzy
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
-msgstr ""
-"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा "
-"दिनुहोस "
+msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -140,42 +136,43 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
#, fuzzy
msgid "Error during update"
msgstr "कुञ्जि हटाउँदा त्रुटि"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -183,18 +180,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -207,165 +205,188 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Remove"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
#, fuzzy
msgid "Checking package manager"
msgstr "अर्को प्याकेज व्यवस्थापक चलिरेको छ"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
#, fuzzy
msgid "Upgrading"
msgstr "स्तरवृद्धि समाप्त"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
#, fuzzy
-msgid "Installing updates"
-msgstr "स्तरवृद्धिहरु स्थापना गर्दै"
+msgid "Applying changes"
+msgstr "परिवर्तनहरु डाउनलोड गर्दै"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
#, fuzzy
msgid "The upgrade aborts now. Please report this bug."
+msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस"
+
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
msgstr ""
-"तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा "
-"दिनुहोस"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
#, fuzzy
msgid "Your system has already been upgraded."
msgstr "तपाईंको प्रणालीमा टुटेका प्याकेजहरु छन!"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
+#, python-format
msgid "Remove %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
+#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
+#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -373,6 +394,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -396,8 +418,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -410,38 +432,51 @@ msgid "Details"
msgstr "विवरणहरु"
#: ../DistUpgrade/DistUpgrade.glade.h:10
-msgid "Downloading and installing the upgrades"
+msgid "Difference between the files"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:11
-msgid "Modifying the software channels"
+msgid "Downloading and installing the upgrades"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:12
-msgid "Preparing the upgrade"
+msgid "Modifying the software channels"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:13
-msgid "Restarting the system"
+msgid "Preparing the upgrade"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:14
-msgid "Terminal"
+msgid "Restarting the system"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:15
-msgid "Upgrading Ubuntu"
+msgid "Terminal"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:16
-msgid "_Report Bug"
+msgid "Upgrading Ubuntu"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:17
-msgid "_Restart Now"
+msgid "_Keep"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "फेरि लोड गर्नुहोस"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr ""
@@ -455,7 +490,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -474,52 +509,56 @@ msgid "Changes"
msgstr "परिवर्तनहरु"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
+msgid "Chec_k"
msgstr ""
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "बर्णन"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "सफ्टवेयर अद्यावधिकहरु"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr ""
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
msgstr "स्तरवृद्धिहरु स्थापना गर्दै"
@@ -595,7 +634,7 @@ msgid "_Check for updates automatically:"
msgstr "स्तरवृद्धिहरु स्थापना गर्दै"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -626,12 +665,13 @@ msgid "Comment:"
msgstr "टिप्पणि:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "वितरण:"
+#, fuzzy
+msgid "Components:"
+msgstr "तत्वहरु"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "सेक्सनहरु:"
+msgid "Distribution:"
+msgstr "वितरण:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
#, fuzzy
@@ -649,18 +689,17 @@ msgstr "युआरएल:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
#, fuzzy
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
-"तपाईंले थप्न चाहेको कोषको पुर्ण एपिटि हरफ प्रविष्ट "
-"गर्नुहोस\n"
+"तपाईंले थप्न चाहेको कोषको पुर्ण एपिटि हरफ प्रविष्ट गर्नुहोस\n"
"\n"
-"एपिटि हरफमा कोषको प्रकार, स्थान र सामग्री समाहित हुन्छ, उदाहरण को लागि "
-"\"deb http://ftp.debian.org sarge main\". तपाईंले मिसिलिकरण मा वाक्य "
-"संरचनाको एउटा विस्तृत विवरण पाउन सक्नुहुन्छ"
+"एपिटि हरफमा कोषको प्रकार, स्थान र सामग्री समाहित हुन्छ, उदाहरण को लागि \"deb "
+"http://ftp.debian.org sarge main\". तपाईंले मिसिलिकरण मा वाक्य संरचनाको एउटा "
+"विस्तृत विवरण पाउन सक्नुहुन्छ"
#: ../data/SoftwarePropertiesDialogs.glade.h:18
msgid "APT line:"
@@ -688,9 +727,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -738,112 +775,140 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
#, fuzzy
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "युबन्टु ५.०४ अद्यावधिकहरु"
+#. Description
#: ../channels/Ubuntu.info.in:23
#, fuzzy
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु"
+#. Description
#: ../channels/Ubuntu.info.in:40
#, fuzzy
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr "युबन्टु ५.०४ अद्यावधिकहरु"
+#. Description
#: ../channels/Ubuntu.info.in:57
#, fuzzy
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr "युबन्टु ५.०४ अद्यावधिकहरु"
+#. Description
#: ../channels/Ubuntu.info.in:74
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु"
+#. Description
#: ../channels/Ubuntu.info.in:91
#, fuzzy
msgid "Ubuntu 5.10 Security Updates"
msgstr "युबन्टु ५.०४ सुरक्षा अद्यावधिकहरु"
+#. Description
#: ../channels/Ubuntu.info.in:108
#, fuzzy
msgid "Ubuntu 5.10 Updates"
msgstr "युबन्टु ५.०४ अद्यावधिकहरु"
+#. Description
#: ../channels/Ubuntu.info.in:125
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "युबन्टु ५.०४ अद्यावधिकहरु"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
#, fuzzy
msgid "Officially supported"
msgstr "कार्यालय बाट समर्थित"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "निषेधित प्रतिलिपि अधिकार"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "समुदाय सम्हालिएको (ब्रह्माण्ड)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "नन-फ्री (बहुभर्स)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
#, fuzzy
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "डेबियन अचल सुरक्षा अद्यावधिकहरु"
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
#, fuzzy
msgid "Debian \"Sid\" (unstable)"
msgstr "डेबियन अचल सुरक्षा अद्यावधिकहरु"
-#: ../channels/Debian.info.in:51
-#, fuzzy
-msgid "Oficially supported"
-msgstr "कार्यालय बाट समर्थित"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr ""
+#, fuzzy
+#~ msgid "Installing updates"
+#~ msgstr "स्तरवृद्धिहरु स्थापना गर्दै"
+
+#~ msgid "Sections:"
+#~ msgstr "सेक्सनहरु:"
+
+#, fuzzy
+#~ msgid "Oficially supported"
+#~ msgstr "कार्यालय बाट समर्थित"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "सर्भर बाट प्याकेज जानकारी फेरि लोड गर्नुहोस"
@@ -882,9 +947,6 @@ msgstr ""
#~ msgid "Sources"
#~ msgstr "सफ्टवेयर स्रोतहरु"
-#~ msgid "Components"
-#~ msgstr "तत्वहरु"
-
#~ msgid "Repository"
#~ msgstr "कोष"
@@ -903,18 +965,16 @@ msgstr ""
#~ msgstr ""
#~ "प्रमाणीकरण कुञ्जिहरु\n"
#~ "\n"
-#~ "तपाईंले यो संवाद भित्र प्रमाणीकरण कुञ्जिहरु थप्न र हटाउन सक्नुहुन्छ. तपाईंले "
-#~ "डाउनलोड गरेको सफ्टवेयर को विश्वसनियता रुजु जाँच गर्नको लागि एउटा कुञ्जिले "
-#~ "संभव पार्दछ"
+#~ "तपाईंले यो संवाद भित्र प्रमाणीकरण कुञ्जिहरु थप्न र हटाउन सक्नुहुन्छ. तपाईंले डाउनलोड "
+#~ "गरेको सफ्टवेयर को विश्वसनियता रुजु जाँच गर्नको लागि एउटा कुञ्जिले संभव पार्दछ"
#, fuzzy
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
-#~ "विश्वास गरिएको कुञ्जिरिंग मा एउटा नयाँ कुञ्जि फाइल थप्नुहोस. विश्वस्त "
-#~ "हुनुहोस कि तपाईंले एउटा सुरक्षित माध्यम माथि कुञ्जि प्राप्त गर्नुभयो र तपाईं "
-#~ "मालिकलाइ विश्वास गर्नुहुन्छ. "
+#~ "विश्वास गरिएको कुञ्जिरिंग मा एउटा नयाँ कुञ्जि फाइल थप्नुहोस. विश्वस्त हुनुहोस कि तपाईंले "
+#~ "एउटा सुरक्षित माध्यम माथि कुञ्जि प्राप्त गर्नुभयो र तपाईं मालिकलाइ विश्वास गर्नुहुन्छ. "
#, fuzzy
#~ msgid "Add repository..."
@@ -943,11 +1003,11 @@ msgstr ""
#, fuzzy
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
-#~ "वितरण संग शिप गरिएको पुर्वनिर्धारित कुञ्जिहरु पुर्वावस्थामा ल्याउनुहोस. यसले "
-#~ "प्रयोगकर्ता स्थापना गरिएको कुञ्जिहरु परिवर्तन गर्दैन"
+#~ "वितरण संग शिप गरिएको पुर्वनिर्धारित कुञ्जिहरु पुर्वावस्थामा ल्याउनुहोस. यसले प्रयोगकर्ता "
+#~ "स्थापना गरिएको कुञ्जिहरु परिवर्तन गर्दैन"
#~ msgid "Set _maximum size for the package cache"
#~ msgstr "प्याकेज क्यासको लागि अधिकतम आकार सेट गर्नुहोस"
@@ -974,13 +1034,13 @@ msgstr ""
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "उपलब्ध अद्यावधिकहरु\n"
#~ "\n"
-#~ "निम्न प्याकेजहरु स्तरवृद्धि गर्न योग्य पाइयो. तपाईंले तिनिहरु लाइ स्थापना "
-#~ "बटन प्रयोग गरेर स्तरवृद्धि गर्न सक्नुहुन्छ"
+#~ "निम्न प्याकेजहरु स्तरवृद्धि गर्न योग्य पाइयो. तपाईंले तिनिहरु लाइ स्थापना बटन प्रयोग "
+#~ "गरेर स्तरवृद्धि गर्न सक्नुहुन्छ"
#~ msgid "Cancel downloading the changelog"
#~ msgstr "परिवर्तनलग को डाउनलोड रद्द गर्नुहोस"
@@ -1045,9 +1105,6 @@ msgstr ""
#~ msgid "Version %s: \n"
#~ msgstr "संस्करण %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "परिवर्तनहरु डाउनलोड गर्दै"
-
#, fuzzy
#~ msgid "There are no updated packages"
#~ msgstr "कुनै स्तरवृद्धिहरु उपलब्ध छैन"
@@ -1056,11 +1113,11 @@ msgstr ""
#~ msgstr "स्तरवृद्धिहरु लागु हुँदैछन"
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
-#~ "तपाईंले उहि समयमा केवल एउटा प्याकेज व्यवस्थापन अनुप्रयोग चलाउन "
-#~ "सक्नुहुन्छ.कृपया पहिला यो अन्य अनुप्रयोग बन्द गर्नुहोस"
+#~ "तपाईंले उहि समयमा केवल एउटा प्याकेज व्यवस्थापन अनुप्रयोग चलाउन सक्नुहुन्छ.कृपया पहिला "
+#~ "यो अन्य अनुप्रयोग बन्द गर्नुहोस"
#~ msgid "Updating package list..."
#~ msgstr "प्याकेज सुची स्तरवृद्धि गर्दै"
@@ -1077,23 +1134,22 @@ msgstr ""
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
-#~ "कृपया युबन्टु लिनक्स को नयाँ संस्करण मा स्तरवृद्धि गर्नुहोस. तपाईंले "
-#~ "चलाइरहेको संस्करण ले सुरक्षा स्थिरहरु वा अन्य सूक्ष्म स्तरवृद्धिहरु प्राप्त "
-#~ "गर्नेछैन. कृपया स्तरवृद्धि जानकारी को लागि http://www.ubuntulinux.org "
-#~ "हेर्नुहोस"
+#~ "कृपया युबन्टु लिनक्स को नयाँ संस्करण मा स्तरवृद्धि गर्नुहोस. तपाईंले चलाइरहेको संस्करण ले "
+#~ "सुरक्षा स्थिरहरु वा अन्य सूक्ष्म स्तरवृद्धिहरु प्राप्त गर्नेछैन. कृपया स्तरवृद्धि जानकारी को "
+#~ "लागि http://www.ubuntulinux.org हेर्नुहोस"
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "युबन्टुको एउटा नयाँ विमोचन उपलब्ध छ!"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
-#~ "एउटा नयाँ संकेतनाम '%s' भएको विमोचन उपलब्ध छ. कृपया स्तरवृद्धि निर्देशन को "
-#~ "लागि://www.ubuntulinux.org/ हेर्नुहोस."
+#~ "एउटा नयाँ संकेतनाम '%s' भएको विमोचन उपलब्ध छ. कृपया स्तरवृद्धि निर्देशन को लागि://"
+#~ "www.ubuntulinux.org/ हेर्नुहोस."
#~ msgid "Never show this message again"
#~ msgstr "यो संदेश फेरि कहिले पनि नदेखाउनुहोस"
@@ -1104,8 +1160,7 @@ msgstr ""
#~ msgid ""
#~ "Failed to download changes. Please check if there is an active internet "
#~ "connection."
-#~ msgstr ""
-#~ "परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस"
+#~ msgstr "परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस"
#~ msgid "Ubuntu Update Manager"
#~ msgstr "युबन्टु अद्यावधिक व्यवस्थापक"
@@ -1120,24 +1175,24 @@ msgstr ""
#~ msgstr "कोषहरु परिवर्तित"
#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources.list "
-#~ "is stored in %s.save. \n"
+#~ "The repository information has changes. A backup copy of your sources."
+#~ "list is stored in %s.save. \n"
#~ "\n"
#~ "You need to reload the package list from the servers for your changes to "
#~ "take effect. Do you want to do this now?"
#~ msgstr ""
-#~ "कोष जानकारी संग परिवर्तनहरु छन. %s मा तपाईंको स्रोतहरु को सुची को ब्याकअप "
-#~ "प्रति भण्डारण गरिएको छ. बचत गर्नुहोस. \n"
+#~ "कोष जानकारी संग परिवर्तनहरु छन. %s मा तपाईंको स्रोतहरु को सुची को ब्याकअप प्रति "
+#~ "भण्डारण गरिएको छ. बचत गर्नुहोस. \n"
#~ "\n"
-#~ "तपाईको परिवर्तनहरुले प्रभाव लिनको लागि तपाईंले सर्भरहरु बाट प्याकेज सुची "
-#~ "फेरि लोड गर्नुपर्दछ. के तपाईं यो अहिले गर्न चाहनुहुन्छ?"
+#~ "तपाईको परिवर्तनहरुले प्रभाव लिनको लागि तपाईंले सर्भरहरु बाट प्याकेज सुची फेरि लोड "
+#~ "गर्नुपर्दछ. के तपाईं यो अहिले गर्न चाहनुहुन्छ?"
#~ msgid ""
#~ "This means that some dependencies of the installed packages are not "
#~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation."
#~ msgstr ""
-#~ "यसको मतलब स्थापना गरिएका प्याकेजहरु को केहि निर्भरताहरु सन्तुष्ट छैनन. कृपया "
-#~ "स्थिति ठीक गर्नको लागि \"साइनाप्टिक\" अथवा \"एपिटि-गेट\" प्रयोग गर्नुहोस"
+#~ "यसको मतलब स्थापना गरिएका प्याकेजहरु को केहि निर्भरताहरु सन्तुष्ट छैनन. कृपया स्थिति "
+#~ "ठीक गर्नको लागि \"साइनाप्टिक\" अथवा \"एपिटि-गेट\" प्रयोग गर्नुहोस"
#~ msgid "It is not possible to upgrade all packages."
#~ msgstr "सबै प्याकेजहरु स्तरवृद्धि गर्न संभव छैन"
@@ -1145,15 +1200,15 @@ msgstr ""
#~ msgid ""
#~ "This means that besides the actual upgrade of the packages some further "
#~ "action (such as installing or removing packages) is required. Please use "
-#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation."
+#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
+#~ "situation."
#~ msgstr ""
-#~ "यसको मतलब प्याकेजहरु को उचित स्तरवृद्धि बाहेक केहि अधिक कार्य (जस्तै "
-#~ "प्याकेजहरुको स्थापन र विस्थापन) आवश्यक छ. कृपया स्थिति ठीक गर्नको लागि "
-#~ "साइनाप्टिक \"स्मार्ट स्तरवृद्धि\" अथवा \"एपिटि-गेट डिस्ट-स्तरवृद्धि\" प्रयोग "
-#~ "गर्नुहोस"
+#~ "यसको मतलब प्याकेजहरु को उचित स्तरवृद्धि बाहेक केहि अधिक कार्य (जस्तै प्याकेजहरुको स्थापन "
+#~ "र विस्थापन) आवश्यक छ. कृपया स्थिति ठीक गर्नको लागि साइनाप्टिक \"स्मार्ट स्तरवृद्धि\" "
+#~ "अथवा \"एपिटि-गेट डिस्ट-स्तरवृद्धि\" प्रयोग गर्नुहोस"
#~ msgid "The following packages are not upgraded: "
#~ msgstr "निम्न प्याकेजहरु स्तरवृद्धि गरिएको छैन "
#~ msgid "Initializing and getting list of updates..."
-#~ msgstr "अद्यावधिकहरुको इनिसियलाइज गर्दै र सुची प्राप्त गर्दै"
\ No newline at end of file
+#~ msgstr "अद्यावधिकहरुको इनिसियलाइज गर्दै र सुची प्राप्त गर्दै"
diff --git a/po/nl.po b/po/nl.po
index 9abb4303..d69fd6b7 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-18 12:07+0000\n"
"Last-Translator: Michiel Sikkes \n"
"Language-Team: Nederlands \n"
@@ -16,38 +16,37 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -55,11 +54,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -81,6 +80,7 @@ msgstr ""
msgid "A essential package would have to be removed"
msgstr ""
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr ""
@@ -91,33 +91,35 @@ msgid ""
"this as a bug. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -130,41 +132,42 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -172,18 +175,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -196,158 +200,183 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Remove"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+msgid "Applying changes"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -355,6 +384,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -378,8 +408,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -391,38 +421,50 @@ msgid "Details"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:10
-msgid "Downloading and installing the upgrades"
+msgid "Difference between the files"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:11
-msgid "Modifying the software channels"
+msgid "Downloading and installing the upgrades"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:12
-msgid "Preparing the upgrade"
+msgid "Modifying the software channels"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:13
-msgid "Restarting the system"
+msgid "Preparing the upgrade"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:14
-msgid "Terminal"
+msgid "Restarting the system"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:15
-msgid "Upgrading Ubuntu"
+msgid "Terminal"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:16
-msgid "_Report Bug"
+msgid "Upgrading Ubuntu"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:17
-msgid "_Restart Now"
+msgid "_Keep"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:18
+msgid "_Replace"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr ""
@@ -436,7 +478,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -455,52 +497,56 @@ msgid "Changes"
msgstr ""
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
+msgid "Chec_k"
msgstr ""
#: ../data/UpdateManager.glade.h:11
-msgid "Description"
+msgid "Check the software channels for new updates"
msgstr ""
#: ../data/UpdateManager.glade.h:12
-msgid "Release Notes"
+msgid "Description"
msgstr ""
#: ../data/UpdateManager.glade.h:13
-msgid "Show details"
+msgid "Release Notes"
msgstr ""
#: ../data/UpdateManager.glade.h:14
-msgid "Show progress of single files"
+msgid "Show details"
msgstr ""
#: ../data/UpdateManager.glade.h:15
-msgid "Software Updates"
+msgid "Show progress of single files"
msgstr ""
#: ../data/UpdateManager.glade.h:16
+msgid "Software Updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr ""
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
msgstr ""
@@ -564,7 +610,7 @@ msgid "_Check for updates automatically:"
msgstr ""
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -594,11 +640,11 @@ msgid "Comment:"
msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
+msgid "Components:"
msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
+msgid "Distribution:"
msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:12
@@ -615,8 +661,8 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
@@ -646,9 +692,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -695,96 +739,114 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr ""
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr ""
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr ""
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr ""
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
-msgstr ""
\ No newline at end of file
+msgstr ""
diff --git a/po/no.po b/po/no.po
index f9028ac3..c35238f4 100644
--- a/po/no.po
+++ b/po/no.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: nb\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-03 11:03+0200\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2005-06-08 23:10+0200\n"
"Last-Translator: Terance Edward Sola \n"
"Language-Team: Norwegian Bokmal \n"
@@ -494,7 +494,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -517,7 +517,7 @@ msgid "Chec_k"
msgstr ""
#: ../data/UpdateManager.glade.h:11
-msgid "Check for available updates"
+msgid "Check the software channels for new updates"
msgstr ""
#: ../data/UpdateManager.glade.h:12
@@ -831,7 +831,7 @@ msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Updates"
#. CompDescription
-#: ../channels/Ubuntu.info.in:128
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
#, fuzzy
msgid "Officially supported"
msgstr "Offisielt støttet"
@@ -890,12 +890,6 @@ msgstr ""
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian Non-US (Unstable)"
-#. CompDescription
-#: ../channels/Debian.info.in:51
-#, fuzzy
-msgid "Oficially supported"
-msgstr "Offisielt støttet"
-
#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
@@ -906,6 +900,10 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
+#, fuzzy
+#~ msgid "Oficially supported"
+#~ msgstr "Offisielt støttet"
+
#, fuzzy
#~ msgid "Installing updates"
#~ msgstr "Installerer oppdateringer..."
diff --git a/po/pa.po b/po/pa.po
index c1b9914a..42d18745 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pa\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-18 12:07+0000\n"
"Last-Translator: Amanpreet Singh Alam \n"
"Language-Team: Punjabi \n"
@@ -17,38 +17,37 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: KBabel 1.9.1\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -56,11 +55,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -82,6 +81,7 @@ msgstr ""
msgid "A essential package would have to be removed"
msgstr ""
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr ""
@@ -92,33 +92,35 @@ msgid ""
"this as a bug. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -131,41 +133,42 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -173,18 +176,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -197,160 +201,184 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Skip This Step"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
#, fuzzy
msgid "Upgrading"
msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-#, fuzzy
-msgid "Installing updates"
-msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..."
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+msgid "Applying changes"
+msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
+#, python-format
msgid "Remove %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
+#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
+#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -358,6 +386,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -381,8 +410,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -395,38 +424,50 @@ msgid "Details"
msgstr "ਵੇਰਵਾ"
#: ../DistUpgrade/DistUpgrade.glade.h:10
-msgid "Downloading and installing the upgrades"
+msgid "Difference between the files"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:11
-msgid "Modifying the software channels"
+msgid "Downloading and installing the upgrades"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:12
-msgid "Preparing the upgrade"
+msgid "Modifying the software channels"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:13
-msgid "Restarting the system"
+msgid "Preparing the upgrade"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:14
-msgid "Terminal"
+msgid "Restarting the system"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:15
-msgid "Upgrading Ubuntu"
+msgid "Terminal"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:16
-msgid "_Report Bug"
+msgid "Upgrading Ubuntu"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:17
-msgid "_Restart Now"
+msgid "_Keep"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:18
+msgid "_Replace"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
#, fuzzy
msgid "_Resume Upgrade"
msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ"
@@ -441,7 +482,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -460,55 +501,59 @@ msgid "Changes"
msgstr ""
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
+msgid "Chec_k"
msgstr ""
#: ../data/UpdateManager.glade.h:11
-msgid "Description"
+msgid "Check the software channels for new updates"
msgstr ""
#: ../data/UpdateManager.glade.h:12
-msgid "Release Notes"
+msgid "Description"
msgstr ""
#: ../data/UpdateManager.glade.h:13
+msgid "Release Notes"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:14
#, fuzzy
msgid "Show details"
msgstr "ਵੇਰਵਾ"
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
#, fuzzy
msgid "Software Updates"
msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
#, fuzzy
msgid "U_pgrade"
msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..."
@@ -580,7 +625,7 @@ msgid "_Check for updates automatically:"
msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..."
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -612,14 +657,14 @@ msgid "Comment:"
msgstr "ਵੇਰਵਾ"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr ""
-
-#: ../data/SoftwarePropertiesDialogs.glade.h:11
#, fuzzy
-msgid "Sections:"
+msgid "Components:"
msgstr "ਵੇਰਵਾ"
+#: ../data/SoftwarePropertiesDialogs.glade.h:11
+msgid "Distribution:"
+msgstr ""
+
#: ../data/SoftwarePropertiesDialogs.glade.h:12
#, fuzzy
msgid "Sections"
@@ -637,8 +682,8 @@ msgstr "ਵੇਰਵਾ"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
@@ -668,9 +713,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -718,100 +761,126 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr ""
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr ""
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr ""
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr ""
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr ""
+#, fuzzy
+#~ msgid "Installing updates"
+#~ msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..."
+
+#, fuzzy
+#~ msgid "Sections:"
+#~ msgstr "ਵੇਰਵਾ"
+
#, fuzzy
#~ msgid "Add Software Channels"
-#~ msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ"
\ No newline at end of file
+#~ msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ"
diff --git a/po/pl.po b/po/pl.po
index ea25c670..1edb495c 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager cvs\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-26 19:34+0000\n"
"Last-Translator: Tomasz Dominikowski \n"
"Language-Team: Polish \n"
@@ -17,38 +17,37 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr "Co %s dni"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "Po %s dniach"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr "Zaimportuj klucz"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Błąd podczas importowania wybranego pliku"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
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:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Błąd podczas usuwania klucza"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+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ć ten błąd."
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -59,11 +58,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "Proszę podać nazwę dla płyty"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr "Proszę włożyć płytę do napędu:"
@@ -88,6 +87,7 @@ msgstr "Nie można zaktualizować wymaganych meta-pakietów"
msgid "A essential package would have to be removed"
msgstr "Niezbędny pakiet musiałby zostać usunięty"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr "Nie można przetworzyć aktualizacji"
@@ -100,11 +100,12 @@ msgstr ""
"Wystąpił nierozwiązywalny problem podczas przetwarzania aktualizacji. Proszę "
"zgłosić ten błąd. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr "Błąd podczas uwierzytelniania niektórych pakietów"
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
@@ -114,22 +115,23 @@ msgstr ""
"sieci. Można spróbować ponownie później. Poniżej znajduje się lista "
"nieuwierzytelnionych pakietów."
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "Nie można zainstalować '%s'"
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr "Nie można było usunąć wybranego klucza. Proszę zgłosić ten błąd. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr "Nie można odnaleźć żadnego z wymaganych meta-pakietów"
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -145,11 +147,12 @@ msgstr ""
msgid "Reading cache"
msgstr "Odczytywanie bufora podręcznego"
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr "Nie odnaleziono poprawnych wpisów"
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
@@ -157,11 +160,11 @@ msgstr ""
"Podczas skanowaia informacji o repozytoriach nie odnaleziono poprawnych "
"wpisów potrzebnych do aktualizacji.\n"
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr "Błędne informacje o repozytoriach"
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
@@ -169,11 +172,11 @@ msgstr ""
"W wyniku aktualizacji informacji o repozytoriach powstał błędny plik. Proszę "
"zgłosić ten błąd."
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr "Błąd podczas aktualizacji"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
@@ -181,11 +184,11 @@ msgstr ""
"Wystąpił problem podczas aktualizacji. Zazwyczaj wynika on z problemów z "
"siecią, proszę sprawdzić połączenie sieciowe i spróbować ponownie."
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr "Zbyt mało miejsca na dysku"
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -196,18 +199,20 @@ msgstr ""
"dysku. Proszę opróżnić kosz i usunąć pliki tymczasowe z poprzednich "
"instalacji używając 'sudo apt-get clean'."
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr "Czy chcesz rozpocząć aktualizację?"
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr "Instalacja aktualizacji zakończyła się niepowodzeniem."
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
+#, fuzzy
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
"Aktualizacja została przerwana. System może znajdować się w stanie "
"nienadającym się do użytku. Proszę spróbować naprawić system używając "
@@ -225,15 +230,24 @@ msgstr ""
"Aktualizacja została przerwana. Proszę sprawdzić połączenie sieciowe oraz "
"dysk instalacyjny i spróbować ponownie. "
-#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+#: ../DistUpgrade/DistUpgradeControler.py:273
+#, fuzzy
+msgid "Remove obsolete packages?"
msgstr "Usunąć niepotrzebne pakiety?"
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr "Błąd podczas zatwierdzania"
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
@@ -242,83 +256,100 @@ msgstr ""
"poniższych wiadomościach. "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr "Sprawdzanie menedżera pakietów"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr "Aktualizowanie informacji o repozytoriach"
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr "Pytanie o potwierdzenie"
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr "Aktualizacja w toku"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr "Wyszukiwanie zdezaktualizowanego oprogramowania"
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr "Aktualizacja systemu zakończona powodzeniem."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr "Proszę włożyć '%s' do napędu '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr "Pobieranie zostało zakończone."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr "Pobieranie pliku %li z %li z prędkością %s/s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr "%s pozostało"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
-#, python-format
-msgid "Downloading file %li of %li at unknown speed"
-msgstr "Pobieranie pliku %li z %li z nieznaną prędkością"
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
+#, fuzzy, python-format
+msgid "Downloading file %li of %li"
+msgstr "Pobieranie pliku %li z %li z prędkością %s/s"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
-msgstr "Instalowanie pakietów"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+#, fuzzy
+msgid "Applying changes"
+msgstr "Pobieranie informacji o zmianach..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr "Nie można było zainstalować '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr "Aktualizacja została przerwana. Proszę zgłosić ten błąd."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr "Wystąpił błąd krytyczny"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
"Proszę zgłosić ten błąd i w raporcie dołączyć pliki ~/dist-upgrade.log oraz "
"~/dist-upgrade-apt.log. Aktualizacja została przerwana. "
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
@@ -326,7 +357,7 @@ msgstr[0] "Pakietów do usunięcia: %s."
msgstr[1] "Pakietów do usunięcia: %s."
msgstr[2] "Pakietów do usunięcia: %s."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
@@ -334,7 +365,7 @@ msgstr[0] "Nowych pakietów do zainstalowania: %s."
msgstr[1] "Nowych pakietów do zainstalowania: %s."
msgstr[2] "Nowych pakietów do zainstalowania: %s."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
@@ -342,51 +373,52 @@ msgstr[0] "Pakietów do zaktualizowania: %s."
msgstr[1] "Pakietów do zaktualizowania: %s."
msgstr[2] "Pakietów do zaktualizowania: %s."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr "Konieczne pobranie ogółem %s."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
"Aktualizacja może trwać wiele godzin i nie może zostać później anulowana."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
"Aby zapobiec utracie danych proszę zamknąć wszystkie otwarte aplikacje i "
"dokumenty."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr "Nie można było odnaleźć żadnych aktualizacji"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr "System został już zaktualizowany."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr "Usuń %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr "Instaluj %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr "Aktualizuj %s"
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr "Wymagane ponowne uruchomienie komputera"
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -396,6 +428,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -423,9 +456,10 @@ msgid "Start the upgrade?"
msgstr "Rozpocząć aktualizację?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
+#, fuzzy
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
"Aktualizacja do Ubuntu \"Dapper\" "
"6.06"
@@ -439,38 +473,51 @@ msgid "Details"
msgstr "Szczegóły"
#: ../DistUpgrade/DistUpgrade.glade.h:10
+msgid "Difference between the files"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
msgstr "Pobieranie i instalowanie aktualizacji"
-#: ../DistUpgrade/DistUpgrade.glade.h:11
+#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
msgstr "Modyfikowanie kanałów aktualizacji"
-#: ../DistUpgrade/DistUpgrade.glade.h:12
+#: ../DistUpgrade/DistUpgrade.glade.h:13
msgid "Preparing the upgrade"
msgstr "Przygotowywanie aktualizacji"
-#: ../DistUpgrade/DistUpgrade.glade.h:13
+#: ../DistUpgrade/DistUpgrade.glade.h:14
msgid "Restarting the system"
msgstr "Ponowne uruchamianie systemu"
-#: ../DistUpgrade/DistUpgrade.glade.h:14
+#: ../DistUpgrade/DistUpgrade.glade.h:15
msgid "Terminal"
msgstr "Terminal"
-#: ../DistUpgrade/DistUpgrade.glade.h:15
+#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
msgstr "Aktualizacja Ubuntu"
-#: ../DistUpgrade/DistUpgrade.glade.h:16
+#: ../DistUpgrade/DistUpgrade.glade.h:17
+msgid "_Keep"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "Wczytaj ponownie"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
msgstr "Zgłoś błąd"
-#: ../DistUpgrade/DistUpgrade.glade.h:17
+#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
msgstr "Uruchom ponownie"
-#: ../DistUpgrade/DistUpgrade.glade.h:18
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr "Wznów aktualizację"
@@ -484,12 +531,13 @@ msgstr ""
"Wymagane jest ręczne sprawdzenie dostępności aktualizacji\n"
"\n"
"System nie sprawdza dostępności aktualizacji automatycznie. To ustawienie "
-"można to zmienić w \"System\" -> \"Administracja\" -> \"Software "
-"Properties\"."
+"można to zmienić w \"System\" -> \"Administracja\" -> \"Software Properties"
+"\"."
#: ../data/UpdateManager.glade.h:4
+#, fuzzy
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -512,30 +560,35 @@ msgid "Changes"
msgstr "Zmiany"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
-msgstr "Sprawdź dostępne aktualizacje"
+#, fuzzy
+msgid "Chec_k"
+msgstr "Sprawdź"
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Opis"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr "Informacje o wydaniu"
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr "Wyświetl szczegóły"
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Pokaż postęp pobierania poszczególnych plików"
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Aktualizacje oprogramowania"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -543,23 +596,23 @@ msgstr ""
"Aktualizacje oprogramowania mogą poprawić błędy, wyeliminować słabe punkty "
"bezpieczeństwa i dostarczyć nowe funkcje."
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr "Aktualizuj"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr "Zaktualizuj do najnowszej wersji Ubuntu"
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr "Sprawdź"
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr "Ukryj tę informację w przyszłości"
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
msgstr "_Instaluj aktualizacje"
@@ -623,7 +676,8 @@ msgid "_Check for updates automatically:"
msgstr "Sprawdzaj dostępność aktualizacji automatycznie:"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+#, fuzzy
+msgid "_Download updates in the background, but do not install them"
msgstr "Pobieraj aktualizacje w tle, ale ich nie instaluj"
#: ../data/SoftwareProperties.glade.h:16
@@ -659,12 +713,13 @@ msgid "Comment:"
msgstr "Komentarz:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Dystrybucja:"
+#, fuzzy
+msgid "Components:"
+msgstr "Komponenty"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Sekcje:"
+msgid "Distribution:"
+msgstr "Dystrybucja:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
msgid "Sections"
@@ -680,16 +735,16 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
"Wpisz pełny wiersz APT opisujący kanał który chcesz dodać\n"
"\n"
-"Wiersz APT zawiera typ, lokalizację i zawartość kanału. Dla przykładu "
-"\"deb http://ftp.debian.org sarge main\"."
+"Wiersz APT zawiera typ, lokalizację i zawartość kanału. Dla przykładu "
+"\"deb http://ftp.debian.org sarge main\"."
#: ../data/SoftwarePropertiesDialogs.glade.h:18
msgid "APT line:"
@@ -716,11 +771,9 @@ msgid "Scanning CD-ROM"
msgstr "Przeszukiwanie CD-ROMu"
#: ../data/SoftwarePropertiesDialogs.glade.h:24
+#, fuzzy
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] "Dod_aj kanał"
-msgstr[1] "Dod_aj kanały"
-msgstr[2] "Dod_aj kanały"
+msgstr "Dod_aj kanał"
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -771,101 +824,137 @@ msgstr ""
msgid "The window size"
msgstr "Rozmiar okna"
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
-msgstr ""
-"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+#, fuzzy
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 6.06 \"Dapper Drake\""
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 6.06"
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Updates"
msgstr "Aktualizacje dla Ubuntu 6.06"
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+#, fuzzy
+msgid "Ubuntu 6.06 Backports"
msgstr "Aktualizacje dla Ubuntu 6.06 (Backporty)"
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 \"Breezy Badger\""
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Aktualizacje dla Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr "Aktualizacje dla Ubuntu 5.10 (backporty)"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr "Wspierane oficjalnie"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "O ograniczonych prawach kopiowania"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Utrzymywane przez społeczność (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Nie-wolnodostępne (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 \"Sarge\""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr "http://security.debian.org/"
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Aktualizacje bezpieczeństwa dla Debiana 3.1 \"Sarge\""
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr "Debian \"Etch\" (wersja testowa)"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr "http://http.us.debian.org/debian/"
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian \"Sid\" (wersja unstable)"
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr "Wspierane oficjalnie"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr "Oprogramowanie kompatybilne z DFSG z zależnościami Non-Free"
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr "Oprogramowanie niekompatybilne z DFSG."
+#~ msgid "Downloading file %li of %li at unknown speed"
+#~ msgstr "Pobieranie pliku %li z %li z nieznaną prędkością"
+
+#~ msgid "Installing updates"
+#~ msgstr "Instalowanie pakietów"
+
+#~ msgid "Check for available updates"
+#~ msgstr "Sprawdź dostępne aktualizacje"
+
+#~ msgid "Sections:"
+#~ msgstr "Sekcje:"
+
+#~ msgid "Oficially supported"
+#~ msgstr "Wspierane oficjalnie"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Wczytuje ponownie z serwera informacje o pakietach."
@@ -917,16 +1006,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Dostępne aktualizacje\n"
#~ "\n"
-#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować klikając "
-#~ "przycisk Instaluj."
-
-#~ msgid "Components"
-#~ msgstr "Komponenty"
+#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować "
+#~ "klikając przycisk Instaluj."
#~ msgid "Repository"
#~ msgstr "Repozytorium"
@@ -946,20 +1032,21 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#~ msgstr ""
#~ "Klucze autentykacyjne\n"
#~ "\n"
-#~ "W tym oknie dialogowym można dodawać i usuwać klucze autentykacyjne. Klucz "
-#~ "pozwala na sprawdzenie integralności oprogramowania które jest pobierane z "
-#~ "sieci."
+#~ "W tym oknie dialogowym można dodawać i usuwać klucze autentykacyjne. "
+#~ "Klucz pozwala na sprawdzenie integralności oprogramowania które jest "
+#~ "pobierane z sieci."
#~ msgid "A_uthentication"
#~ msgstr "A_utentykacja"
#, fuzzy
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
#~ "Dodaje plik z kluczem do listy zaufanych kluczy. Należy upewnić sie, że "
-#~ "został otrzymany bezpiecznym kanałem oraz, że pochodzi z zaufanego źródła. "
+#~ "został otrzymany bezpiecznym kanałem oraz, że pochodzi z zaufanego "
+#~ "źródła. "
#~ msgid "Automatically clean _temporary packages files"
#~ msgstr "Usuwaj _tymczasowe pliki z pakietami"
@@ -981,11 +1068,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#, fuzzy
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
-#~ "Przywraca domyślne klucze rozprowadzane wraz z dystrybucją. Nie wpływa to na "
-#~ "klucze zainstalowane przez użytkownika."
+#~ "Przywraca domyślne klucze rozprowadzane wraz z dystrybucją. Nie wpływa to "
+#~ "na klucze zainstalowane przez użytkownika."
#~ msgid "Set _maximum size for the package cache"
#~ msgstr "Maksymalny rozmiar pamięci podręcznej"
@@ -1009,8 +1096,9 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#~ "This means that some dependencies of the installed packages are not "
#~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation."
#~ msgstr ""
-#~ "Oznacza to, że pewne zależności instalowanych pakietów nie są spełnione.Aby "
-#~ "rozwiązać problem proszę skorzystać z programu \"Synaptic\" lub \"apt-get\"."
+#~ "Oznacza to, że pewne zależności instalowanych pakietów nie są spełnione."
+#~ "Aby rozwiązać problem proszę skorzystać z programu \"Synaptic\" lub \"apt-"
+#~ "get\"."
#~ msgid "It is not possible to upgrade all packages."
#~ msgstr "Nie można uaktualnić wszystkich pakietów"
@@ -1018,12 +1106,13 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#~ msgid ""
#~ "This means that besides the actual upgrade of the packages some further "
#~ "action (such as installing or removing packages) is required. Please use "
-#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation."
+#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
+#~ "situation."
#~ msgstr ""
#~ "Oznacza to, że do aktualizacji wymagane sa dodatkowe działania (takie jak "
-#~ "dodanie lub usunięcie pakietów). Aby rozwiązać problem proszę skorzystać z "
-#~ "funkcji \"sprytnej aktualizacji\" programu Synaptic lub wykonać polecenie "
-#~ "\"apt-get dist-upgrade\"."
+#~ "dodanie lub usunięcie pakietów). Aby rozwiązać problem proszę skorzystać "
+#~ "z funkcji \"sprytnej aktualizacji\" programu Synaptic lub wykonać "
+#~ "polecenie \"apt-get dist-upgrade\"."
#~ msgid "The following packages are not upgraded: "
#~ msgstr "Następujące pakiety nie są aktualizowane: "
@@ -1037,24 +1126,21 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#~ "Failed to download changes. Please check if there is an active internet "
#~ "connection."
#~ msgstr ""
-#~ "Nie udało się pobrać informacji o zmianach. Proszę sprawdzić czy połączenie "
-#~ "z internetem jest aktywne"
+#~ "Nie udało się pobrać informacji o zmianach. Proszę sprawdzić czy "
+#~ "połączenie z internetem jest aktywne"
#~ msgid "Version %s: \n"
#~ msgstr "Wersja %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "Pobieranie informacji o zmianach..."
-
#~ msgid "The updates are being applied."
#~ msgstr "Aktualizacje są teraz instalowane."
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
-#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. Należy "
-#~ "najpierw zamknąć aplikację która teraz działa."
+#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. "
+#~ "Należy najpierw zamknąć aplikację która teraz działa."
#~ msgid "Updating package list..."
#~ msgstr "Aktualizacja listy pakietów..."
@@ -1073,13 +1159,14 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
-#~ "Proszę uaktualnić dystrybucję do nowszej wersji Ubuntu Linux. Obecna wersja "
-#~ "nie będzie już otrzymywać uaktualnień bezpieczeństwa oraz innych krytycznych "
-#~ "uaktualnień. Informacje o tym jak uaktualnić dystrybucję można znaleźć na "
-#~ "stronie http://www.ubuntulinux.org (Witryna w języku angielskim)"
+#~ "Proszę uaktualnić dystrybucję do nowszej wersji Ubuntu Linux. Obecna "
+#~ "wersja nie będzie już otrzymywać uaktualnień bezpieczeństwa oraz innych "
+#~ "krytycznych uaktualnień. Informacje o tym jak uaktualnić dystrybucję "
+#~ "można znaleźć na stronie http://www.ubuntulinux.org (Witryna w języku "
+#~ "angielskim)"
#, fuzzy
#~ msgid "There is a new release of Ubuntu available!"
@@ -1090,11 +1177,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#, fuzzy
#~ msgid ""
-#~ "This usually means that another package management application (like apt-get "
-#~ "or aptitude) already running. Please close that application first"
+#~ "This usually means that another package management application (like apt-"
+#~ "get or aptitude) already running. Please close that application first"
#~ msgstr ""
-#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. Należy "
-#~ "najpierw zamknąć aplikację która teraz działa."
+#~ "Naraz można uruchomić tylko jedną aplikację zarządzającą pakietami. "
+#~ "Należy najpierw zamknąć aplikację która teraz działa."
#~ msgid "Initializing and getting list of updates..."
#~ msgstr "Inicjowanie i pobieranie listy aktualizacji..."
@@ -1142,28 +1229,28 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#~ msgstr "Repozytoria zmienione"
#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources.list "
-#~ "is stored in %s.save. \n"
+#~ "The repository information has changes. A backup copy of your sources."
+#~ "list is stored in %s.save. \n"
#~ "\n"
#~ "You need to reload the package list from the servers for your changes to "
#~ "take effect. Do you want to do this now?"
#~ msgstr ""
-#~ "Zmieniły się informacje o repozytoriach. Kopia zapasowa oryginalnego pliku "
-#~ "sources.list została zapisana w %s.save. \n"
+#~ "Zmieniły się informacje o repozytoriach. Kopia zapasowa oryginalnego "
+#~ "pliku sources.list została zapisana w %s.save. \n"
#~ "\n"
-#~ "Należy ponownie odczytać listę pakietów z serwerów aby zmiany były widoczne. "
-#~ "Czy chcesz zrobić to teraz?"
+#~ "Należy ponownie odczytać listę pakietów z serwerów aby zmiany były "
+#~ "widoczne. Czy chcesz zrobić to teraz?"
#, fuzzy
#~ msgid ""
#~ "Available Updates\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Dostępne aktualizacje\n"
#~ "\n"
-#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować klikając "
-#~ "przycisk Instaluj."
+#~ "Następujące pakiety posiadają aktualizacje. Można je zainstalować "
+#~ "klikając przycisk Instaluj."
#~ msgid "CD disk"
-#~ msgstr "Płyta CD"
\ No newline at end of file
+#~ msgstr "Płyta CD"
diff --git a/po/pt.po b/po/pt.po
index 64819920..222c91b7 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-25 21:49+0000\n"
"Last-Translator: Rui Az. \n"
"Language-Team: Ubuntu Portuguese Team \n"
@@ -15,41 +15,40 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr "Todos os %s dias"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "Depois de %s dias"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr "Importar chave"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Erro ao importar ficheiro seleccionado"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
"O ficheiro seleccionado pode não ser um ficheiro de chave GPG ou pode estar "
"corrompido."
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Erro ao remover a chave"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"A chave que seleccionou não pôde ser removida. Por favor reporte este erro."
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -60,11 +59,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "Por favor introduza um nome para o disco"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr "Por favor introduza um disco no leitor:"
@@ -89,6 +88,7 @@ msgstr "Não foi possível actualizar os meta-pacotes necessários"
msgid "A essential package would have to be removed"
msgstr "Um pacote essencial teria que ser removido"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr "Impossível de calcular a actualização"
@@ -101,11 +101,12 @@ msgstr ""
"Um problema irresolúvel ocorreu ao calcular a actualização. Por favor "
"reporte este erro. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr "Erro ao autenticar alguns pacotes"
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
@@ -115,23 +116,24 @@ msgstr ""
"rede transitório. Pode tentar novamente mais tarde. Verifique abaixo uma "
"lista de pacotes não autenticados."
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "Impossível de instalar '%s'"
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr ""
"Foi impossível instalar um pacote essencial. Por favor reporte este erro. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr "Impossível de descobrir meta-pacote"
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -149,11 +151,12 @@ msgstr ""
msgid "Reading cache"
msgstr "A ler a cache"
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr "Nenhuma entrada válida encontrada"
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
@@ -161,11 +164,11 @@ msgstr ""
"Ao pesquisar o seu repositório de informação não foi encontrada nenhuma "
"entrada válida de actualização.\n"
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr "Informação de repositório inválida"
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
@@ -173,11 +176,11 @@ msgstr ""
"A actualização da informação de repositório resultou num ficheiro inválido. "
"Por favor reporte este erro."
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr "Erro durante a actualização"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
@@ -186,11 +189,11 @@ msgstr ""
"tipo de problema na rede, por favor verifique a sua ligação à rede e volte a "
"tentar."
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr "Não existe espaço livre em disco suficiente"
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -201,18 +204,20 @@ msgstr ""
"Esvazie o Lixo e remova pacotes temporários de instalações anteriores usando "
"'sudo apt-get clean'."
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr "Deseja iniciar a actualização?"
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr "Impossível de instalar as actualizações"
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
+#, fuzzy
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
"A actualização abortará agora. O seu sistema poderá estar num estado "
"inutilizável. Por favor tente 'sudo apt-get install -f' ou use o Synaptic "
@@ -230,16 +235,25 @@ msgstr ""
"A actualização abortará agora. Por favor verifique a sua ligação à internet "
"ou media de instalação e volte a tentar. "
-#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+#: ../DistUpgrade/DistUpgradeControler.py:273
+#, fuzzy
+msgid "Remove obsolete packages?"
msgstr "Remover Pacotes obsoletos?"
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
#, fuzzy
msgid "Error during commit"
msgstr "Erro ao submeter"
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
@@ -248,149 +262,166 @@ msgstr ""
"abaixo para mais informação. "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr "A verificar gestor de pacotes"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr "A Actualizar informação de repositórios"
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr "A pedir confirmação"
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr "A actualizar"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr "À procura de software obsoleto"
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr "A actualização do sistema está completa."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr "Por favor insira '%s' no leitor '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr "O Download está completo"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr "A descarregar ficheiro %li de %li com %s/s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr "%s restantes"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
-#, python-format
-msgid "Downloading file %li of %li at unknown speed"
-msgstr "A descarregar ficheiro %li de %li a velocidade desconhecida"
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
+#, fuzzy, python-format
+msgid "Downloading file %li of %li"
+msgstr "A descarregar ficheiro %li de %li com %s/s"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
-msgstr "A instalar actualizações"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+msgid "Applying changes"
+msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr "Não foi possível instalar '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr "A actualização abortará agora. Reporte este erro."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr "Ocorreu um erro fatal"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-"Por favor reporte este erro e inclua os ficheiros ~/dist-upgrade.log e "
-"~/dist-upgrade-apt.log no seu relatório. A actualização abortará agora. "
+"Por favor reporte este erro e inclua os ficheiros ~/dist-upgrade.log e ~/"
+"dist-upgrade-apt.log no seu relatório. A actualização abortará agora. "
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] "%s pacote será removido."
msgstr[1] "%s pacotes serão removidos."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] "%s novo pacote será instalado."
msgstr[1] "%s novos pacotes serão instalados."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] "%s pacote será actualizado."
msgstr[1] "%s pacotes serão actualizados."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr "Tem de efectuar o download de um total de %s."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
"A actualização poderá demorar várias horas e não poderá ser cancelada a "
"qualquer instante posteriormente."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
"Para prevenir a perda de dados feche todas as aplicações e documentos "
"abertos."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr "Impossível de encontrar quaisquer actualizações"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr "O seu sistema já foi actualizado."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr "Remover %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr "Instalar %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr "Actualizar %s"
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr "Necessário reiniciar"
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -399,6 +430,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -425,9 +457,10 @@ msgid "Start the upgrade?"
msgstr "Iniciar a actualização?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
+#, fuzzy
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
"A actualizar para Ubuntu \"Dapper\" "
"6.04"
@@ -441,38 +474,51 @@ msgid "Details"
msgstr "Detalhes"
#: ../DistUpgrade/DistUpgrade.glade.h:10
+msgid "Difference between the files"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
msgstr "A efectuar o download e a instalar actualizações"
-#: ../DistUpgrade/DistUpgrade.glade.h:11
+#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
msgstr "A modificar os repositórios de software"
-#: ../DistUpgrade/DistUpgrade.glade.h:12
+#: ../DistUpgrade/DistUpgrade.glade.h:13
msgid "Preparing the upgrade"
msgstr "A preparar actualização"
-#: ../DistUpgrade/DistUpgrade.glade.h:13
+#: ../DistUpgrade/DistUpgrade.glade.h:14
msgid "Restarting the system"
msgstr "A reiniciar o sistema"
-#: ../DistUpgrade/DistUpgrade.glade.h:14
+#: ../DistUpgrade/DistUpgrade.glade.h:15
msgid "Terminal"
msgstr "Terminal"
-#: ../DistUpgrade/DistUpgrade.glade.h:15
+#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
msgstr "A actualizar o Ubuntu"
-#: ../DistUpgrade/DistUpgrade.glade.h:16
+#: ../DistUpgrade/DistUpgrade.glade.h:17
+msgid "_Keep"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "_Reler"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
msgstr "_Reportar um erro"
-#: ../DistUpgrade/DistUpgrade.glade.h:17
+#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
msgstr "_Reiniciar agora"
-#: ../DistUpgrade/DistUpgrade.glade.h:18
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr "_Retomar Actualização?"
@@ -484,16 +530,17 @@ msgid ""
"Your system does not check for updates automatically. You can configure this "
"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"."
msgstr ""
-"Tem de reler manualmente a última informação sobre "
-"actualizações\n"
+"Tem de reler manualmente a última informação sobre actualizações"
+"big>\n"
"\n"
"O seu sistema não procura por actualizações automaticamente. Pode configurar "
"este comportamento em \"Sistema\" -> \"Administração\" -> \"Propriedades do "
"Software\"."
#: ../data/UpdateManager.glade.h:4
+#, fuzzy
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -516,30 +563,35 @@ msgid "Changes"
msgstr "Alterações"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
-msgstr "Verificar por actualizações disponíveis"
+#, fuzzy
+msgid "Chec_k"
+msgstr "_Verificar"
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Descrição"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr "Notas de lançamento"
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr "Mostrar detalhes"
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Mostrar progresso de ficheiros individuais"
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Actualizações de Software"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -547,23 +599,23 @@ msgstr ""
"Actualizações de software podem corrigir erros, eliminar problemas de "
"segurança, e fornecer novas funcionalidades."
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr "A_ctualização"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr "Actualize para a última versão do Ubuntu"
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr "_Verificar"
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr "_Ocultar esta informação no futuro"
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
msgstr "_Instalar Actualizações"
@@ -630,7 +682,8 @@ msgid "_Check for updates automatically:"
msgstr "_Procurar por actualizações automaticamente:"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+#, fuzzy
+msgid "_Download updates in the background, but do not install them"
msgstr "_Descarregar actualizações silenciosamente, sem as instalar"
#: ../data/SoftwareProperties.glade.h:16
@@ -667,12 +720,13 @@ msgid "Comment:"
msgstr "Comentários:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Distribuição:"
+#, fuzzy
+msgid "Components:"
+msgstr "Comentários:"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Secções:"
+msgid "Distribution:"
+msgstr "Distribuição:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
msgid "Sections"
@@ -688,8 +742,8 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
@@ -725,10 +779,9 @@ msgid "Scanning CD-ROM"
msgstr "A pesquisar o CD-ROM"
#: ../data/SoftwarePropertiesDialogs.glade.h:24
+#, fuzzy
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] "_Adicionar Repositório"
-msgstr[1] "_Adicionar Repositórios"
+msgstr "_Adicionar Repositório"
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -779,101 +832,137 @@ msgstr ""
msgid "The window size"
msgstr "Tamanho da Janela"
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
-msgstr ""
-"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+#, fuzzy
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 6.04 \"Dapper Drake\""
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Ubuntu 6.04 Actualizações de Segurança"
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Updates"
msgstr "Ubuntu 6.04 Actualizações"
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+#, fuzzy
+msgid "Ubuntu 6.06 Backports"
msgstr "Ubuntu 6.04 Backports"
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 \"Breezy Badger\""
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 Actualizações de Segurança"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 Actualizações"
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Backports"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr "Suportado Oficialmente"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Direitos de autor restritos"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Mantido pela comunidade (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Não-livre (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 \"Sarge\""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr "http://security.debian.org/"
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Debian 3.1 \"Sarge\" Actualizações de Segurança"
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr "Debian \"Etch\" (testing)"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr "http://http.us.debian.org/debian/"
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian \"Sid\" (unstable)"
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr "Suportado Oficialmente"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr "Software compatível-DFSG com Dependências Não-Livres"
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr "Software compatível-DFSG"
+#~ msgid "Downloading file %li of %li at unknown speed"
+#~ msgstr "A descarregar ficheiro %li de %li a velocidade desconhecida"
+
+#~ msgid "Installing updates"
+#~ msgstr "A instalar actualizações"
+
+#~ msgid "Check for available updates"
+#~ msgstr "Verificar por actualizações disponíveis"
+
+#~ msgid "Sections:"
+#~ msgstr "Secções:"
+
+#~ msgid "Oficially supported"
+#~ msgstr "Suportado Oficialmente"
+
#~ msgid "Reload the latest information about updates"
#~ msgstr "Reler a última informação sobre actualizações"
@@ -886,8 +975,8 @@ msgstr "Software compatível-DFSG"
#~ "\n"
#~ "Need to get the changes from the central server"
#~ msgstr ""
-#~ "A efectuar download de "
-#~ "alterações\n"
+#~ "A efectuar download de alterações"
+#~ "span>\n"
#~ "\n"
#~ "É necessário obter as alterações de um servidor central"
@@ -896,8 +985,8 @@ msgstr "Software compatível-DFSG"
#~ msgid ""
#~ "There is not enough free space on your system to download the required "
-#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get "
-#~ "clean'"
+#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-"
+#~ "get clean'"
#~ msgstr ""
#~ "Não existe espaço suficiente no seu sistema para descarregar os pacotes "
#~ "necessários. Por favor liberte algum espaço antes de tentar novamente por "
@@ -910,8 +999,8 @@ msgstr "Software compatível-DFSG"
#~ "Some problem occured during the fetching of the packages. This is most "
#~ "likely a network problem. Please check your network and try again. "
#~ msgstr ""
-#~ "Ocorreu algum problema ao descarregar pacotes. Trata-se provavelmente de um "
-#~ "problema de rede. Por favor verifique a rede e tente novamente. "
+#~ "Ocorreu algum problema ao descarregar pacotes. Trata-se provavelmente de "
+#~ "um problema de rede. Por favor verifique a rede e tente novamente. "
#~ msgid ""
#~ "%s packages are going to be removed.\n"
@@ -936,8 +1025,8 @@ msgstr "Software compatível-DFSG"
#~ msgstr "Tem a certeza que pretende cancelar?"
#~ msgid ""
-#~ "Canceling during a upgrade can leave the system in a unstable state. It is "
-#~ "strongly adviced to continue the operation. "
+#~ "Canceling during a upgrade can leave the system in a unstable state. It "
+#~ "is strongly adviced to continue the operation. "
#~ msgstr ""
#~ "Cancelar durante uma actualização pode deixar o seu sistema num estado "
#~ "instável. É fortemente aconselhado a prosseguir a operação. "
@@ -958,4 +1047,4 @@ msgstr "Software compatível-DFSG"
#~ msgstr "Propriedades dos Software"
#~ msgid "CD"
-#~ msgstr "CD"
\ No newline at end of file
+#~ msgstr "CD"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index b530a5ed..cfc4a42e 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-23 01:47+0000\n"
"Last-Translator: LKRaider \n"
"Language-Team: Ubuntu-BR \n"
@@ -16,42 +16,41 @@ msgstr ""
"X-Poedit-Country: BRAZIL\n"
"Plural-Forms: nplurals=2; plural=n > 1\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr "A cada %s dias"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "Após %s dias"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr "Importar Chave"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Erro importando o arquivo selecionado"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
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:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Erro removendo a chave"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+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:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -62,11 +61,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "Por favor digite um nome para o disco"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr "Por favor insira um disco no drive:"
@@ -91,6 +90,7 @@ msgstr "Não foi possível atualizar os meta-pacotes requeridos"
msgid "A essential package would have to be removed"
msgstr "Um pacote essencial teria que ser removido"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr "Não foi possível calcular a atualização"
@@ -103,11 +103,12 @@ msgstr ""
"Um problema sem resolução ocorreu enquanto calculando a atualização. Por "
"favor reporte isto como um erro. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr "Erro autenticando alguns pacotes"
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
@@ -117,12 +118,12 @@ msgstr ""
"de rede. Você pode tentar de novo depois. Veja abaixo uma lista dos pacotes "
"não-autenticados."
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "Não foi possível instalar '%s'"
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
@@ -130,11 +131,12 @@ msgstr ""
"Não foi possível instalar um pacote requerido. Por favor reporte isto como "
"um erro. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr "Não foi possível adivinhar o meta-pacote"
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -152,11 +154,12 @@ msgstr ""
msgid "Reading cache"
msgstr "Lendo cache"
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr "Nenhuma entrada válida encontrada"
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
@@ -164,11 +167,11 @@ msgstr ""
"Enquanto analisava as informações de repositórios não foi encontrada uma "
"entrada válida para a atualização.\n"
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr "Informação de repositório inválida"
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
@@ -176,11 +179,11 @@ msgstr ""
"Atualizando a informações de repositórios resultou em um arquivo inválido. "
"Por favor reporte isso como um erro."
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr "Erro durante a atualização"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
@@ -189,11 +192,11 @@ msgstr ""
"problemas de rede, por favor verifique a sua conexão de rede e tente "
"novamente."
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr "Não há espaço suficiente no disco"
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -204,18 +207,20 @@ msgstr ""
"em disco. Limpe a sua lixeira e remova pacotes temporários de instalações "
"anteriores executando 'sudo apt-get clean'."
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr "Você quer iniciar a atualização?"
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr "Não foi possível instalar as atualizações"
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
+#, fuzzy
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
"A atualização será abortada agora. Seu sistema pode estar em um estado "
"inutilizável. Por favor tente executar 'sudo apt-get install -f' ou entrar "
@@ -233,15 +238,24 @@ msgstr ""
"A atualização será abortada agora. Por favor verifique sua conexão à "
"Internet ou mídia de instalação e tente de novo. "
-#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+#: ../DistUpgrade/DistUpgradeControler.py:273
+#, fuzzy
+msgid "Remove obsolete packages?"
msgstr "Remover Pacotes obsoletos?"
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr "Erro ao aplicar as mudanças"
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
@@ -250,146 +264,164 @@ msgstr ""
"abaixo para maiores informações. "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr "Verificando o Gerenciador de Pacotes"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr "Atualizando informação do repositório"
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr "Pedindi por confirmação"
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr "Atualizando"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr "Buscando programas obsoletos"
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr "A Atualização do Sistema está completa."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr "Por favor insira '%s' no drive '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr "O Download está completo"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr "Obtendo arquivo %li de %li a %s/s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr "Faltam %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
-#, python-format
-msgid "Downloading file %li of %li at unknown speed"
-msgstr "Obtendo arquivo %li de %li a uma velocidade desconhecida"
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
+#, fuzzy, python-format
+msgid "Downloading file %li of %li"
+msgstr "Obtendo arquivo %li de %li a %s/s"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
-msgstr "Instalando Atualizações"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+#, fuzzy
+msgid "Applying changes"
+msgstr "Downloading changes..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr "Não foi possível instalar '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr "A atualização será abortada agora. Por favor reporte este erro."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr "Ocorreu um erro fatal"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
"Por favor reporte isto como um bug e inclua os arquivos ~/dist-upgrade.log e "
"~/dist-upgrade-apt.log em seu relatório. O upgrade abortará agora. "
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] "%s pacote será removido."
msgstr[1] "%s pacotes serão removidos."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] "%s novo pacote será instalado."
msgstr[1] "%s novos pacotes serão instalados."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] "%s pacote será atualizado."
msgstr[1] "%s pacotes serão atualizados."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr "Você precisa obter um total de %s."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
"A atualização pode levar diversas horas e não poderá ser cancelada depois."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr "Para evitar perda de dados, feche todas as aplicações e documentos."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr "Não foi possível encontrar nenhuma atualização"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr "Seu sistema já foi atualizado."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr "Remover %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr "Instalar %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr "Atualizar %s"
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr "Reinicialização requerida"
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -399,6 +431,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -418,17 +451,17 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:5
msgid "Restart the system to complete the upgrade"
-msgstr ""
-"Reinicie o seu sistema para finalizar a atualização"
+msgstr "Reinicie o seu sistema para finalizar a atualização"
#: ../DistUpgrade/DistUpgrade.glade.h:6
msgid "Start the upgrade?"
msgstr "Iniciar a Atualização?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
+#, fuzzy
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
"Atualizando para o Ubuntu \"Dapper\" "
"6.04"
@@ -442,38 +475,51 @@ msgid "Details"
msgstr "Detalhes"
#: ../DistUpgrade/DistUpgrade.glade.h:10
+msgid "Difference between the files"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
msgstr "Obtendo e instalando as atualizações"
-#: ../DistUpgrade/DistUpgrade.glade.h:11
+#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
msgstr "Modificando os canais de software"
-#: ../DistUpgrade/DistUpgrade.glade.h:12
+#: ../DistUpgrade/DistUpgrade.glade.h:13
msgid "Preparing the upgrade"
msgstr "Preparando a Atualização"
-#: ../DistUpgrade/DistUpgrade.glade.h:13
+#: ../DistUpgrade/DistUpgrade.glade.h:14
msgid "Restarting the system"
msgstr "Reiniciando o sistema"
-#: ../DistUpgrade/DistUpgrade.glade.h:14
+#: ../DistUpgrade/DistUpgrade.glade.h:15
msgid "Terminal"
msgstr "Terminal"
-#: ../DistUpgrade/DistUpgrade.glade.h:15
+#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
msgstr "Atualizando o Ubuntu"
-#: ../DistUpgrade/DistUpgrade.glade.h:16
+#: ../DistUpgrade/DistUpgrade.glade.h:17
+msgid "_Keep"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "_Recarregar"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
msgstr "Reportar _Erro"
-#: ../DistUpgrade/DistUpgrade.glade.h:17
+#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
msgstr "_Reiniciar Agora"
-#: ../DistUpgrade/DistUpgrade.glade.h:18
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr "Continua_r Atualização"
@@ -491,8 +537,9 @@ msgstr ""
"de Programas\"."
#: ../data/UpdateManager.glade.h:4
+#, fuzzy
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -515,30 +562,35 @@ msgid "Changes"
msgstr "Mudanças"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
-msgstr "Procurar updates disponíveis"
+#, fuzzy
+msgid "Chec_k"
+msgstr "_Verificar"
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Descrição"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr "Notas de Versão"
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr "Exibir Detalhes"
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Exibir progresso de arquivos únicos"
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Atualizações de Programas"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -546,23 +598,23 @@ msgstr ""
"Atualizações de Programas podem corrigir erros, eliminar vulnerabilidades de "
"segurança, e prover novas funcionalidades para você."
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr "At_ualizar"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr "Atualizar para a última versão do Ubuntu"
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr "_Verificar"
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr "_Ocultar esta informação no futuro"
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
msgstr "_Instalar Atualizações"
@@ -629,7 +681,8 @@ msgid "_Check for updates automatically:"
msgstr "Verifi_car por atualizações automaticamente:"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+#, fuzzy
+msgid "_Download updates in the background, but do not install them"
msgstr "_Obter atualizações em segundo plano, mas não instalá-las"
#: ../data/SoftwareProperties.glade.h:16
@@ -665,12 +718,13 @@ msgid "Comment:"
msgstr "Comment:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Distribution:"
+#, fuzzy
+msgid "Components:"
+msgstr "Components"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Sections:"
+msgid "Distribution:"
+msgstr "Distribution:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
msgid "Sections"
@@ -686,14 +740,14 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
-"Insira a linha completa do APT do canal que você quer "
-"adicionar\n"
+"Insira a linha completa do APT do canal que você quer adicionar"
+"big>\n"
"\n"
"A linha do APT contém o tipo, a localização e as seções do canal, por "
"exemplo \"deb http://ftp.debian.org sarge main\"."
@@ -723,10 +777,9 @@ msgid "Scanning CD-ROM"
msgstr "Procurando no CD-ROM"
#: ../data/SoftwarePropertiesDialogs.glade.h:24
+#, fuzzy
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] "_Adicionar Canal"
-msgstr[1] "_Adicionar Canais"
+msgstr "_Adicionar Canal"
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -777,101 +830,137 @@ msgstr ""
msgid "The window size"
msgstr "O tamanho da janela"
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
-msgstr ""
-"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+#, fuzzy
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 6.04 'Dapper Drake'"
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Atualizações de Segurança do Ubuntu 6.04"
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Updates"
msgstr "Atualizações do Ubuntu 6.04"
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+#, fuzzy
+msgid "Ubuntu 6.06 Backports"
msgstr "Backports do Ubuntu 6.04"
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Atualizações de Segurança do Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Atualizações do Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr "Backports do Ubuntu 5.10"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr "Suporte oficial"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Restrito por copyright"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Mantido pela Comunidade (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Não-livre (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 \"Sarge\""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr "http://security.debian.org/"
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Atualizações de Segurança do Debian 3.1 \"Sarge\""
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr "Debian \"Etch\" (testing)"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr "http://http.us.debian.org/debian/"
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian \"Sid\" (unstable)"
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr "Suportado Oficialmente"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr "Programa compatível com a DFSG mas com dependências não-livres"
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr "Programas não compatíveis com a DFSG"
+#~ msgid "Downloading file %li of %li at unknown speed"
+#~ msgstr "Obtendo arquivo %li de %li a uma velocidade desconhecida"
+
+#~ msgid "Installing updates"
+#~ msgstr "Instalando Atualizações"
+
+#~ msgid "Check for available updates"
+#~ msgstr "Procurar updates disponíveis"
+
+#~ msgid "Sections:"
+#~ msgstr "Sections:"
+
+#~ msgid "Oficially supported"
+#~ msgstr "Suportado Oficialmente"
+
#~ msgid "Reload the latest information about updates"
#~ msgstr "Recarregar as últimas informações sobre atualizações"
@@ -906,12 +995,12 @@ msgstr "Programas não compatíveis com a DFSG"
#~ msgid ""
#~ "There is not enough free space on your system to download the required "
-#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-get "
-#~ "clean'"
+#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-"
+#~ "get clean'"
#~ msgstr ""
#~ "Não há espaço suficiente no seu sistema para obter os pacotes requeridos. "
-#~ "Por favor libere algum espaço antes de tentar novamente. Como: 'sudo apt-get "
-#~ "clean'"
+#~ "Por favor libere algum espaço antes de tentar novamente. Como: 'sudo apt-"
+#~ "get clean'"
#~ msgid "Error fetching the packages"
#~ msgstr "Erro ao obter os pacotes"
@@ -921,8 +1010,8 @@ msgstr "Programas não compatíveis com a DFSG"
#~ "likely a network problem. Please check your network and try again. "
#~ msgstr ""
#~ "Alguns problemas ocorreram durante a obtenção dos pacotes. Isso é bem "
-#~ "provável que seja por problemas de rede. Por favor verifique a sua conexão "
-#~ "de rede e tente novamente. "
+#~ "provável que seja por problemas de rede. Por favor verifique a sua "
+#~ "conexão de rede e tente novamente. "
#~ msgid ""
#~ "%s packages are going to be removed.\n"
@@ -947,11 +1036,11 @@ msgstr "Programas não compatíveis com a DFSG"
#~ msgstr "Tem certeza que deseja cancelar?"
#~ msgid ""
-#~ "Canceling during a upgrade can leave the system in a unstable state. It is "
-#~ "strongly adviced to continue the operation. "
+#~ "Canceling during a upgrade can leave the system in a unstable state. It "
+#~ "is strongly adviced to continue the operation. "
#~ msgstr ""
-#~ "Cancelar durante a atualização pode deixar o sistema em um estado instável. "
-#~ "É fortemente recomendável que a operação continue. "
+#~ "Cancelar durante a atualização pode deixar o sistema em um estado "
+#~ "instável. É fortemente recomendável que a operação continue. "
#, fuzzy
#~ msgid "Sources"
@@ -974,16 +1063,13 @@ msgstr "Programas não compatíveis com a DFSG"
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
-
-#~ msgid "Components"
-#~ msgstr "Components"
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgid "Repository"
#~ msgstr "Repository"
@@ -1003,16 +1089,16 @@ msgstr "Programas não compatíveis com a DFSG"
#~ msgstr ""
#~ "Authentication keys\n"
#~ "\n"
-#~ "You can add and remove authentication keys in this dialogue. A key makes it "
-#~ "possible to check verify the integrity of the software you download."
+#~ "You can add and remove authentication keys in this dialogue. A key makes "
+#~ "it possible to check verify the integrity of the software you download."
#~ msgid "A_uthentication"
#~ msgstr "A_uthentication"
#, fuzzy
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
#~ "Add a new key file to the trusted keyring. Make sure that you got the key "
#~ "over a secure channel and that you trust the owner. "
@@ -1037,11 +1123,11 @@ msgstr "Programas não compatíveis com a DFSG"
#, fuzzy
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
-#~ "Restore the default keys shiped with the distribution. This will not change "
-#~ "user-installed keys."
+#~ "Restore the default keys shiped with the distribution. This will not "
+#~ "change user-installed keys."
#~ msgid "Set _maximum size for the package cache"
#~ msgstr "Set _maximum size for the package cache"
@@ -1074,11 +1160,13 @@ msgstr "Programas não compatíveis com a DFSG"
#~ msgid ""
#~ "This means that besides the actual upgrade of the packages some further "
#~ "action (such as installing or removing packages) is required. Please use "
-#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation."
+#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
+#~ "situation."
#~ msgstr ""
#~ "This means that besides the actual upgrade of the packages some further "
#~ "action (such as installing or removing packages) is required. Please use "
-#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation."
+#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
+#~ "situation."
#~ msgid "The following packages are not upgraded: "
#~ msgstr "The following packages are not upgraded: "
@@ -1096,18 +1184,15 @@ msgstr "Programas não compatíveis com a DFSG"
#~ msgid "Version %s: \n"
#~ msgstr "Version %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "Downloading changes..."
-
#~ msgid "The updates are being applied."
#~ msgstr "The updates are being applied."
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgid "Updating package list..."
#~ msgstr "Updating package list..."
@@ -1126,33 +1211,33 @@ msgstr "Programas não compatíveis com a DFSG"
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "There is a new release of Ubuntu available!"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgid "Never show this message again"
#~ msgstr "Never show this message again"
#, fuzzy
#~ msgid ""
-#~ "This usually means that another package management application (like apt-get "
-#~ "or aptitude) already running. Please close that application first"
+#~ "This usually means that another package management application (like apt-"
+#~ "get or aptitude) already running. Please close that application first"
#~ msgstr ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgid "Initializing and getting list of updates..."
#~ msgstr "Initializing and getting list of updates..."
@@ -1200,14 +1285,14 @@ msgstr "Programas não compatíveis com a DFSG"
#~ msgstr "Repositories changed"
#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources.list "
-#~ "is stored in %s.save. \n"
+#~ "The repository information has changes. A backup copy of your sources."
+#~ "list is stored in %s.save. \n"
#~ "\n"
#~ "You need to reload the package list from the servers for your changes to "
#~ "take effect. Do you want to do this now?"
#~ msgstr ""
-#~ "The repository information has changes. A backup copy of your sources.list "
-#~ "is stored in %s.save. \n"
+#~ "The repository information has changes. A backup copy of your sources."
+#~ "list is stored in %s.save. \n"
#~ "\n"
#~ "You need to reload the package list from the servers for your changes to "
#~ "take effect. Do you want to do this now?"
@@ -1215,10 +1300,10 @@ msgstr "Programas não compatíveis com a DFSG"
#, fuzzy
#~ msgid ""
#~ "Available Updates\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
\ No newline at end of file
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
diff --git a/po/ro.po b/po/ro.po
index 0d37d728..14f995fa 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-23 00:19+0000\n"
"Last-Translator: Dan Damian \n"
"Language-Team: Romanian \n"
@@ -17,43 +17,42 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n == 1 ? 0: (((n %\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
-#, fuzzy
+#: ../SoftwareProperties/SoftwareProperties.py:110
+#, fuzzy, python-format
msgid "Every %s days"
msgstr "La fiecare %s zile"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "După %s zile"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
#, fuzzy
msgid "Import key"
msgstr "Importă cheie"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
#, fuzzy
msgid "Error importing selected file"
msgstr "Eroare la importarea fişierului ales"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "Fişierul selectat nu pare a fi o cheie GPG sau poate fi corupt."
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Eroare la ştergerea cheii."
-#: ../SoftwareProperties/SoftwareProperties.py:406
+#: ../SoftwareProperties/SoftwareProperties.py:437
#, fuzzy
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"Cheia selectată nu poate fi ştearsă. Raportaţi acest lucru ca un bug "
"(eroare)."
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -64,11 +63,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "Introduceţi un nume pentru disc"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
#, fuzzy
msgid "Please insert a disc in the drive:"
msgstr "Introduceţi un disc în dispozitiv:"
@@ -91,6 +90,7 @@ msgstr ""
msgid "A essential package would have to be removed"
msgstr ""
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr ""
@@ -101,23 +101,24 @@ msgid ""
"this as a bug. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "Nu pot instala '%s'"
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
#, fuzzy
msgid ""
"It was impossible to install a required package. Please report this as a "
@@ -126,11 +127,12 @@ msgstr ""
"Nu am reuşit să instalez pachetul cerut. Puteţi raporta acest lucru ca bug "
"(eroare). "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -143,41 +145,42 @@ msgstr ""
msgid "Reading cache"
msgstr "Citire cache"
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -185,18 +188,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -209,98 +213,123 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Skip This Step"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
#, fuzzy
msgid "Checking package manager"
msgstr "Un alt manager de pachete rulează"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
#, fuzzy
msgid "Upgrading"
msgstr "Actualizare completă"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
-msgstr ""
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+#, fuzzy
+msgid "Applying changes"
+msgstr "Descarc modificările..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
@@ -308,7 +337,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
@@ -316,7 +345,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
@@ -324,49 +353,50 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
#, fuzzy
msgid "Your system has already been upgraded."
msgstr "Sistemul dvs. este la zi!"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
+#, python-format
msgid "Remove %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
+#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
+#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -374,6 +404,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -397,8 +428,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -411,38 +442,50 @@ msgid "Details"
msgstr "Detalii"
#: ../DistUpgrade/DistUpgrade.glade.h:10
-msgid "Downloading and installing the upgrades"
+msgid "Difference between the files"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:11
-msgid "Modifying the software channels"
+msgid "Downloading and installing the upgrades"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:12
-msgid "Preparing the upgrade"
+msgid "Modifying the software channels"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:13
-msgid "Restarting the system"
+msgid "Preparing the upgrade"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:14
-msgid "Terminal"
+msgid "Restarting the system"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:15
-msgid "Upgrading Ubuntu"
+msgid "Terminal"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:16
-msgid "_Report Bug"
+msgid "Upgrading Ubuntu"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:17
-msgid "_Restart Now"
+msgid "_Keep"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:18
+msgid "_Replace"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
#, fuzzy
msgid "_Resume Upgrade"
msgstr "Actualizare completă"
@@ -457,7 +500,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -476,53 +519,57 @@ msgid "Changes"
msgstr "Modificări"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
+msgid "Chec_k"
msgstr ""
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Descriere"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Actualizări software"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
#, fuzzy
msgid "U_pgrade"
msgstr "Actualizare completă"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
msgstr "_Instalează"
@@ -594,7 +641,7 @@ msgid "_Check for updates automatically:"
msgstr ""
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -626,12 +673,13 @@ msgid "Comment:"
msgstr "Comentariu:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Distribuţie:"
+#, fuzzy
+msgid "Components:"
+msgstr "Componente"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Secţiuni:"
+msgid "Distribution:"
+msgstr "Distribuţie:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
#, fuzzy
@@ -649,8 +697,8 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
#, fuzzy
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
@@ -658,9 +706,9 @@ msgstr ""
"Introduceţi linia APT completă a locaţiei pe care doriţi să o "
"adăugaţi\n"
"\n"
-"Linia APT conţine tipul, adresa şi conţinutul unei locaţii, de "
-"exemplu\"deb http://ftp.debian.org sarge main\". Puteţi găsi o "
-"descriere detaliată a sintaxei în documentaţie."
+"Linia APT conţine tipul, adresa şi conţinutul unei locaţii, de exemplu"
+"\"deb http://ftp.debian.org sarge main\". Puteţi găsi o descriere "
+"detaliată a sintaxei în documentaţie."
#: ../data/SoftwarePropertiesDialogs.glade.h:18
msgid "APT line:"
@@ -688,10 +736,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -739,111 +784,135 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
#, fuzzy
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Actualizări de securitate Ubuntu 5.04"
+#. Description
#: ../channels/Ubuntu.info.in:23
#, fuzzy
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Actualizări de securitate Ubuntu 5.04"
+#. Description
#: ../channels/Ubuntu.info.in:40
#, fuzzy
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr "Actualizări de securitate Ubuntu 5.04"
+#. Description
#: ../channels/Ubuntu.info.in:57
#, fuzzy
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr "Actualizări de securitate Ubuntu 5.04"
+#. Description
#: ../channels/Ubuntu.info.in:74
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Actualizări de securitate Ubuntu 5.04"
+#. Description
#: ../channels/Ubuntu.info.in:91
#, fuzzy
msgid "Ubuntu 5.10 Security Updates"
msgstr "Actualizări de securitate Ubuntu 5.04"
+#. Description
#: ../channels/Ubuntu.info.in:108
#, fuzzy
msgid "Ubuntu 5.10 Updates"
msgstr "Actualizări de securitate Ubuntu 5.04"
+#. Description
#: ../channels/Ubuntu.info.in:125
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "Actualizări de securitate Ubuntu 5.04"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
#, fuzzy
msgid "Officially supported"
msgstr "Pachete suportate oficial"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Copyright restrictiv"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Pachete întreţinute de comunitate (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Pachete non-libere (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
#, fuzzy
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Actualizări de securitate Debian Stable"
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr ""
-#: ../channels/Debian.info.in:51
-#, fuzzy
-msgid "Oficially supported"
-msgstr "Pachete suportate oficial"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr ""
+#~ msgid "Sections:"
+#~ msgstr "Secţiuni:"
+
+#, fuzzy
+#~ msgid "Oficially supported"
+#~ msgstr "Pachete suportate oficial"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Reîncarcă informaţiile despre pachete de pe server."
@@ -884,16 +953,13 @@ msgstr ""
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Actualizări disponibile\n"
#~ "\n"
-#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările apăsând "
-#~ "pe butonul Instalează."
-
-#~ msgid "Components"
-#~ msgstr "Componente"
+#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările "
+#~ "apăsând pe butonul Instalează."
#~ msgid "Repository"
#~ msgstr "Locaţie"
@@ -913,8 +979,8 @@ msgstr ""
#~ msgstr ""
#~ "Chei autentificare\n"
#~ "\n"
-#~ "Din acest dialog puteţi adăuga sau şterge chei de autentificare. Rolul unei "
-#~ "chei estede a permite verificarea integrităţii unui pachet software "
+#~ "Din acest dialog puteţi adăuga sau şterge chei de autentificare. Rolul "
+#~ "unei chei estede a permite verificarea integrităţii unui pachet software "
#~ "descărcat."
#~ msgid "A_uthentication"
@@ -922,8 +988,8 @@ msgstr ""
#, fuzzy
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
#~ "Adăugaţi o nouă cheie în keyring-ul de încredere. Asiguraţi-vă că aţi "
#~ "obţinut cheia printr-un canal sigur şi că aveţi încredere în proprietarul "
@@ -940,8 +1006,8 @@ msgstr ""
#, fuzzy
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
#~ "Restaurează cheile implicite furnizate împreună cu distribuţia. Această "
#~ "acţiune nu va influenţa cheile instalate ca utilizator."
@@ -972,15 +1038,12 @@ msgstr ""
#~ msgid "Version %s: \n"
#~ msgstr "Versiunea %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "Descarc modificările..."
-
#~ msgid "The updates are being applied."
#~ msgstr "Actualizările sunt în curs de aplicare."
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
#~ "Puteţi rula doar un singur manager de pachete la un moment dat. Vă rog să "
#~ "închideţi ceilalţi manageri mai întâi."
@@ -1003,8 +1066,8 @@ msgstr ""
#, fuzzy
#~ msgid ""
-#~ "This usually means that another package management application (like apt-get "
-#~ "or aptitude) already running. Please close that application first"
+#~ "This usually means that another package management application (like apt-"
+#~ "get or aptitude) already running. Please close that application first"
#~ msgstr ""
#~ "Puteţi rula doar un singur manager de pachete la un moment dat. Vă rog să "
#~ "închideţi ceilalţi manageri mai întâi."
@@ -1047,8 +1110,8 @@ msgstr ""
#~ msgstr "Locaţiile au fost schimbate"
#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources.list "
-#~ "is stored in %s.save. \n"
+#~ "The repository information has changes. A backup copy of your sources."
+#~ "list is stored in %s.save. \n"
#~ "\n"
#~ "You need to reload the package list from the servers for your changes to "
#~ "take effect. Do you want to do this now?"
@@ -1062,13 +1125,13 @@ msgstr ""
#, fuzzy
#~ msgid ""
#~ "Available Updates\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Actualizări disponibile\n"
#~ "\n"
-#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările apăsând "
-#~ "pe butonul Instalează."
+#~ "Pachetele următoare pot fi actualizate. Puteţi instala actualizările "
+#~ "apăsând pe butonul Instalează."
#~ msgid "0"
-#~ msgstr "0"
\ No newline at end of file
+#~ msgstr "0"
diff --git a/po/rw.po b/po/rw.po
index c9257649..25f6c428 100644
--- a/po/rw.po
+++ b/po/rw.po
@@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-18 12:07+0000\n"
"Last-Translator: Steve Murphy \n"
"Language-Team: Kinyarwanda \n"
@@ -24,42 +24,41 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
#, fuzzy
msgid "Error importing selected file"
msgstr "Kuzaza Byahiswemo IDOSIYE"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
#, 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:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
#, fuzzy
msgid "Error removing the key"
msgstr "i Urufunguzo"
-#: ../SoftwareProperties/SoftwareProperties.py:406
+#: ../SoftwareProperties/SoftwareProperties.py:437
#, fuzzy
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a"
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -67,11 +66,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -93,6 +92,7 @@ msgstr ""
msgid "A essential package would have to be removed"
msgstr ""
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr ""
@@ -104,34 +104,36 @@ msgid ""
"this as a bug. "
msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
#, fuzzy
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -144,42 +146,43 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
#, fuzzy
msgid "Error during update"
msgstr "i Urufunguzo"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -187,18 +190,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -211,162 +215,188 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Skip This Step"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
#, fuzzy
msgid "Checking package manager"
msgstr "Muyobozi ni"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
#, fuzzy
msgid "Upgrading"
msgstr "Byarangiye"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
-msgstr ""
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+#, fuzzy
+msgid "Applying changes"
+msgstr "Amahinduka"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
#, fuzzy
msgid "The upgrade aborts now. Please report this bug."
msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
#, fuzzy
msgid "Your system has already been upgraded."
msgstr "Sisitemu"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
+#, python-format
msgid "Remove %s"
msgstr ""
# #-#-#-#-# setup2.pot (PACKAGE VERSION) #-#-#-#-#
# setup2/source\ui\pages\plang.src:RESID_PAGE_PAGELANGUAGE.STR_PROG.text
# #-#-#-#-# setup2.pot (PACKAGE VERSION) #-#-#-#-#
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
+#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
+#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -374,6 +404,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -397,8 +428,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -411,39 +442,52 @@ msgid "Details"
msgstr "Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -476,59 +520,63 @@ msgid "Changes"
msgstr "Amahinduka"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
+msgid "Chec_k"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
msgstr ""
# #-#-#-#-# basctl.pot (PACKAGE VERSION) #-#-#-#-#
# basctl/source\basicide\moptions.src:RID_MACROOPTIONS.RID_FT_DESCR.text
# #-#-#-#-# basctl.pot (PACKAGE VERSION) #-#-#-#-#
-#: ../data/UpdateManager.glade.h:11
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Isobanuramiterere"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Ibihuzagihe bya porogaramumudasobwa"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
#, fuzzy
msgid "U_pgrade"
msgstr "Byarangiye"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
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) #-#-#-#-#
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
msgstr "Kwinjiza porogaramu"
@@ -599,7 +647,7 @@ msgid "_Check for updates automatically:"
msgstr ""
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -632,12 +680,12 @@ msgstr "Distribution:"
+msgid "Components:"
msgstr "Sections:"
+msgid "Distribution:"
msgstr "Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
@@ -694,8 +742,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
#, fuzzy
@@ -744,111 +791,133 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
#, fuzzy
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "5"
+#. Description
#: ../channels/Ubuntu.info.in:23
#, fuzzy
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr "5"
+#. Description
#: ../channels/Ubuntu.info.in:40
#, fuzzy
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr "5"
+#. Description
#: ../channels/Ubuntu.info.in:57
#, fuzzy
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr "5"
+#. Description
#: ../channels/Ubuntu.info.in:74
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "5"
+#. Description
#: ../channels/Ubuntu.info.in:91
#, fuzzy
msgid "Ubuntu 5.10 Security Updates"
msgstr "5"
+#. Description
#: ../channels/Ubuntu.info.in:108
#, fuzzy
msgid "Ubuntu 5.10 Updates"
msgstr "5"
+#. Description
#: ../channels/Ubuntu.info.in:125
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "5"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
#, fuzzy
msgid "Restricted copyright"
msgstr "Uburenganzira bw'umuhimbyi"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
#, fuzzy
msgid "Non-free (Multiverse)"
msgstr "Kigenga"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
#, fuzzy
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "4. 10"
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr ""
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr ""
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr ""
+#, fuzzy
+#~ msgid "Sections:"
+#~ msgstr "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr "Components"
-#~ msgstr "Repository"
#~ msgstr "> Ukoresha: Utubuto"
@@ -994,7 +1059,8 @@ msgstr ""
#~ msgid ""
#~ "This means that besides the actual upgrade of the packages some further "
#~ "action (such as installing or removing packages) is required. Please use "
-#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the situation."
+#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
+#~ "situation."
#~ msgstr ""
#~ "i Bya i Igikorwa Nka gukora iyinjizaporogaramu:%s Cyangwa ni Bya ngombwa "
#~ "Gukoresha Cyangwa Kubona Kuri i"
@@ -1018,18 +1084,14 @@ msgstr ""
#~ msgid "Version %s: \n"
#~ msgstr "Verisiyo \n"
-#, fuzzy
-#~ msgid "Downloading changes..."
-#~ msgstr "Amahinduka"
-
#, fuzzy
#~ msgid "The updates are being applied."
#~ msgstr "Byashyizweho"
#, fuzzy
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
#~ "Gukoresha Porogaramu ku i Igihe Gufunga iyi Ikindi Porogaramu Itangira"
@@ -1056,11 +1118,11 @@ msgstr ""
#, fuzzy
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
-#~ "Kuri a Verisiyo Bya Verisiyo Oya Kubona Umutekano Cyangwa Ikindi Ibyangombwa "
-#~ "HTTP www org kugirango Ibisobanuro"
+#~ "Kuri a Verisiyo Bya Verisiyo Oya Kubona Umutekano Cyangwa Ikindi "
+#~ "Ibyangombwa HTTP www org kugirango Ibisobanuro"
#, fuzzy
#~ msgid "There is a new release of Ubuntu available!"
@@ -1068,8 +1130,8 @@ msgstr ""
#, fuzzy
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr "A Gishya Na: i ni Bihari HTTP www org kugirango Amabwiriza"
#, fuzzy
@@ -1078,8 +1140,8 @@ msgstr ""
#, fuzzy
#~ msgid ""
-#~ "This usually means that another package management application (like apt-get "
-#~ "or aptitude) already running. Please close that application first"
+#~ "This usually means that another package management application (like apt-"
+#~ "get or aptitude) already running. Please close that application first"
#~ msgstr ""
#~ "Gukoresha Porogaramu ku i Igihe Gufunga iyi Ikindi Porogaramu Itangira"
@@ -1125,9 +1187,9 @@ msgstr ""
#, fuzzy
#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources.list "
-#~ "is stored in %s.save. \n"
+#~ "The repository information has changes. A backup copy of your sources."
+#~ "list is stored in %s.save. \n"
#~ "\n"
#~ "You need to reload the package list from the servers for your changes to "
#~ "take effect. Do you want to do this now?"
-#~ msgstr "Kubika."
\ No newline at end of file
+#~ msgstr "Kubika."
diff --git a/po/sk.po b/po/sk.po
index a0b58669..2de6a42d 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -7,49 +7,48 @@
msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
-"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-26 01:43+0000\n"
"Last-Translator: Martin Mancuska \n"
"Language-Team: Slovak \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
-"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr "Každých %s dní"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "Po %s dňoch"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr "Importovať kľúč"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Chyba pri importovaní vybraného súboru"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "Vybraný súbor nemusí obsahovať GPG kľúč alebo môže byť poškodený."
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Chyba pri odstraňovaní kľúča"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr "Vybraný kľúč nemohol byť odstránený. Prosím, nahláste to ako bug."
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -60,11 +59,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "Prosím, zadajte názov disku"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr "Prosím, vložte disk do mechaniky:"
@@ -88,6 +87,7 @@ msgstr "Nemôžem upgradovať požadované meta-balíčky"
msgid "A essential package would have to be removed"
msgstr "Základný balíček by musel byt odstránený"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr "Nemôžem vypočítať upgrade"
@@ -100,11 +100,12 @@ msgstr ""
"Počas počítania upgradu sa vyskytol neriešiteľný problém. Prosím, nahláste "
"to ako bug. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr "Chyba pri overovaní niektorých balíčkov"
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
@@ -114,23 +115,24 @@ msgstr ""
"problémom v sieti. Môžete to skúsiť neskôr. Nižšie je uvedený zoznam "
"neoverených balíčkov."
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "Nemôžem inštalovať '%s'"
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr ""
"Nebolo možné nainštalovať požadovaný balíček. Prosím, nahláste to ako bug. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -143,41 +145,42 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -185,18 +188,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -209,96 +213,120 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Remove"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+msgid "Applying changes"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
@@ -306,7 +334,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
@@ -314,7 +342,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
@@ -322,48 +350,49 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -371,6 +400,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -394,8 +424,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -407,38 +437,50 @@ msgid "Details"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:10
-msgid "Downloading and installing the upgrades"
+msgid "Difference between the files"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:11
-msgid "Modifying the software channels"
+msgid "Downloading and installing the upgrades"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:12
-msgid "Preparing the upgrade"
+msgid "Modifying the software channels"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:13
-msgid "Restarting the system"
+msgid "Preparing the upgrade"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:14
-msgid "Terminal"
+msgid "Restarting the system"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:15
-msgid "Upgrading Ubuntu"
+msgid "Terminal"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:16
-msgid "_Report Bug"
+msgid "Upgrading Ubuntu"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:17
-msgid "_Restart Now"
+msgid "_Keep"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:18
+msgid "_Replace"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr ""
@@ -452,7 +494,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -471,52 +513,56 @@ msgid "Changes"
msgstr ""
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
+msgid "Chec_k"
msgstr ""
#: ../data/UpdateManager.glade.h:11
-msgid "Description"
+msgid "Check the software channels for new updates"
msgstr ""
#: ../data/UpdateManager.glade.h:12
-msgid "Release Notes"
+msgid "Description"
msgstr ""
#: ../data/UpdateManager.glade.h:13
-msgid "Show details"
+msgid "Release Notes"
msgstr ""
#: ../data/UpdateManager.glade.h:14
-msgid "Show progress of single files"
+msgid "Show details"
msgstr ""
#: ../data/UpdateManager.glade.h:15
-msgid "Software Updates"
+msgid "Show progress of single files"
msgstr ""
#: ../data/UpdateManager.glade.h:16
+msgid "Software Updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr ""
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
msgstr ""
@@ -580,7 +626,7 @@ msgid "_Check for updates automatically:"
msgstr ""
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -610,11 +656,11 @@ msgid "Comment:"
msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
+msgid "Components:"
msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
+msgid "Distribution:"
msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:12
@@ -631,8 +677,8 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
@@ -662,10 +708,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -712,96 +755,114 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr ""
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr ""
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr ""
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr ""
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
-msgstr ""
\ No newline at end of file
+msgstr ""
diff --git a/po/sv.po b/po/sv.po
index af2800c4..1c46fa96 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: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-27 18:10+0000\n"
"Last-Translator: Robin Sonefors \n"
"Language-Team: Swedish \n"
@@ -17,40 +17,38 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr "Var %s dag"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "Efter %s dagar"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr "Importera nyckel"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Fel vid import av vald fil"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
"Den valda filen verkar inte vara en GPG-nyckel eller så är filen trasig."
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Fel vid borttagning av nyckeln"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
-msgstr ""
-"Nyckeln du valde kan inte tas bort. Var vänlig anmäl det som en bugg."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
+msgstr "Nyckeln du valde kan inte tas bort. Var vänlig anmäl det som en bugg."
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -61,11 +59,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "Skriv in namnet för skivan"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr "Sätt in en skiva i enheten:"
@@ -89,6 +87,7 @@ msgstr "Kan inte uppdatera obligatoriska meta-paket"
msgid "A essential package would have to be removed"
msgstr "Ett grundläggande paket skulle behövas tas bort"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr "Det gick inte beräkna uppdateringen"
@@ -101,11 +100,12 @@ msgstr ""
"Ett problem som inte gick att lösa uppstod när uppdateringen kontrolerades. "
"Rapportera gärna detta som en bugg. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr "Det gick inte att autentisiera vissa paket"
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
@@ -115,12 +115,12 @@ msgstr ""
"nätverksfel. Det kan hjälpa med att försöka senare. Se nedan för en lista "
"med incke autentisierade paket."
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "Kan inte installera '%s'"
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
@@ -128,11 +128,12 @@ msgstr ""
"Det var inte möjligt att installera ett obligatoriskt paket. Var god "
"rapportera detta som en bugg. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr "Kan inte gissa meta-paket"
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -150,22 +151,23 @@ msgstr ""
msgid "Reading cache"
msgstr "Läser cache"
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr "Ingen giltig källa funnen"
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
"Ingen giltig källa för uppdatering hittades när dina förråd söktes igenom.\n"
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr "Information om förråd ogiltig"
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
@@ -173,11 +175,11 @@ msgstr ""
"Uppdatering av informationen om förråd orsakade en ogiltig fil. Var god "
"rabortera detta som en bug."
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr "Fel vid uppdatering"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
@@ -186,11 +188,11 @@ msgstr ""
"av nätverks problem, var god kontrolera din nätverks anslutning och försök "
"igen."
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr "Inte tillräckligt med ledigt diskutrymme"
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -201,18 +203,20 @@ msgstr ""
"papperskorg och ta bort temporära paket från tidigare uppdateringar genom "
"att köra 'sudo apt-get clean'."
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr "Vill du starta uppdateringen?"
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr "Det gick inte att installera uppdateringarna"
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
+#, fuzzy
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
"Uppdateringen avbryter nu. Ditt system kan vara i ett instabilt läget. "
"Vänligen försök med 'sudo apt-get install -f' eller Synaptic för att fixa "
@@ -230,15 +234,25 @@ msgstr ""
"Uppdeateringen avbryter nu. Var god kontrollerar din internetanslutning "
"eller installationsmedia och försök igen. "
-#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+#: ../DistUpgrade/DistUpgradeControler.py:273
+#, fuzzy
+msgid "Remove obsolete packages?"
msgstr "Ta bort föråldrade paket?"
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+#, fuzzy
+msgid "_Remove"
+msgstr "Ta bort"
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr "Fel inträffade vid utförandet"
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
@@ -247,147 +261,165 @@ msgstr ""
"information. "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr "Kontrolerar pakethanterare"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr "Uppdaterar förrådsinformation"
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr "Ber om bekräftelse"
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr "Uppdaterar"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr "Söker efter föråldrad mjukvara"
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr "Systemuppdateringarna är klara"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr "Mata in \"%s\" i enheten \"%s\""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr "Hämtningen är färdig"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr "Hämtar hem fil %li av %li med en hastighet av %s/s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr "%s återstår"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
-#, python-format
-msgid "Downloading file %li of %li at unknown speed"
-msgstr "Hämtar hem fil %li av %li med en okänd hastighet"
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
+#, fuzzy, python-format
+msgid "Downloading file %li of %li"
+msgstr "Hämtar hem fil %li av %li med en hastighet av %s/s"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
-msgstr "Installerar uppdateringar"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+#, fuzzy
+msgid "Applying changes"
+msgstr "Hämtar ändringar..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr "Det gick inte installera \"%s\""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr "Uppdateringen avbryts. Var vänlig rapportera denna bugg."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr "Ett kritiskt fel uppstod"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
"Var vänlig rapportera detta som en bugg och inkludera ~/dist-upgrade.log och "
"~/dist-upgrade-apt.log i din rapport. Uppdateringen avbryts. "
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] "%s paket kommer att tas bort."
msgstr[1] "%s paket kommer att tas bort."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] "%s nytt paket kommer att installeras."
msgstr[1] "%s nya paket kommer att installeras."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] "%s packet kommer att uppgraderas."
msgstr[1] "%s packet kommer att uppgraderas."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr "Du behöver ladda ner totalt %s."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr "Uppdateringen kan ta flera timmar och kan inte avbrytas under tiden."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
"För att förhindra att data försvinner rekomenderas du att stänga alla "
"program och dokument."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr "Kunde inte hitta några uppdateringar"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr "Ditt system har redan uppdaterats."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr "Tabort %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr "Installera %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr "Uppdatera %s"
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr "Omstart krävs"
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -396,6 +428,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -423,9 +456,10 @@ msgid "Start the upgrade?"
msgstr "Starta uppdateringen?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
+#, fuzzy
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
"Uppdaterar till Ubuntu \"Dapper\" "
"6.04"
@@ -439,38 +473,51 @@ msgid "Details"
msgstr "Detaljer"
#: ../DistUpgrade/DistUpgrade.glade.h:10
+msgid "Difference between the files"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
msgstr "Hämtar och installerar uppdateringarna"
-#: ../DistUpgrade/DistUpgrade.glade.h:11
+#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
msgstr "Ändra förråden för program"
-#: ../DistUpgrade/DistUpgrade.glade.h:12
+#: ../DistUpgrade/DistUpgrade.glade.h:13
msgid "Preparing the upgrade"
msgstr "Förbereder uppdateringen"
-#: ../DistUpgrade/DistUpgrade.glade.h:13
+#: ../DistUpgrade/DistUpgrade.glade.h:14
msgid "Restarting the system"
msgstr "Startar om systemet"
-#: ../DistUpgrade/DistUpgrade.glade.h:14
+#: ../DistUpgrade/DistUpgrade.glade.h:15
msgid "Terminal"
msgstr "Terminalfönster"
-#: ../DistUpgrade/DistUpgrade.glade.h:15
+#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
msgstr "Uppdaterar Ubuntu"
-#: ../DistUpgrade/DistUpgrade.glade.h:16
+#: ../DistUpgrade/DistUpgrade.glade.h:17
+msgid "_Keep"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "_Uppdatera"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
msgstr "_Rapportera Bugg"
-#: ../DistUpgrade/DistUpgrade.glade.h:17
+#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
msgstr "_Starta om nu"
-#: ../DistUpgrade/DistUpgrade.glade.h:18
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr "_Återuppta uppdateringen"
@@ -488,8 +535,9 @@ msgstr ""
"\"Programvaruinställningar\""
#: ../data/UpdateManager.glade.h:4
+#, fuzzy
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -512,30 +560,36 @@ msgid "Changes"
msgstr "Ändringar"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
-msgstr "Kontrollera efter tillgängliga uppdateringar"
+#, fuzzy
+msgid "Chec_k"
+msgstr "_Kontrollera"
#: ../data/UpdateManager.glade.h:11
+#, fuzzy
+msgid "Check the software channels for new updates"
+msgstr "All programvara från denna kanal är aktuell."
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Beskrivning"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr "Utgåveanteckningar"
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr "Visa detaljer"
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Visa förlopp för enstaka filer"
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Programvaruuppdateringar"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -543,23 +597,23 @@ msgstr ""
"Mjukvaruuppdateringar kan åtgärda fel, avlägsna säkerhetshål eller "
"sårbarheter och förse programmet med nya funktioner."
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr "_Uppdateringar"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr "Uppdatera till senaste versionen av Ubuntu"
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr "_Kontrollera"
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr "_Dölj denna information i framtiden"
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
msgstr "_Installera Uppdateringar"
@@ -626,7 +680,8 @@ msgid "_Check for updates automatically:"
msgstr "Leta efter uppdateringar _automatiskt:"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+#, fuzzy
+msgid "_Download updates in the background, but do not install them"
msgstr "_Hämta uppdateringar i bakgrunden, men installera dom inte"
#: ../data/SoftwareProperties.glade.h:16
@@ -662,12 +717,13 @@ msgid "Comment:"
msgstr "Kommentar:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Distribution:"
+#, fuzzy
+msgid "Components:"
+msgstr "Komponenter"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Avdelningar:"
+msgid "Distribution:"
+msgstr "Distribution:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
msgid "Sections"
@@ -683,17 +739,17 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
-"Skriv in en komplett APT-rad för kanalen du vill lägga "
-"till\n"
+"Skriv in en komplett APT-rad för kanalen du vill lägga till"
+"big>\n"
"\n"
-"APT-raden inehåller typ, plats och avdelningar för kanalen, till exempel "
-"\"deb http://ftp.debian.org sarge main\"."
+"APT-raden inehåller typ, plats och avdelningar för kanalen, till exempel "
+"\"deb http://ftp.debian.org sarge main\"."
#: ../data/SoftwarePropertiesDialogs.glade.h:18
msgid "APT line:"
@@ -720,10 +776,9 @@ msgid "Scanning CD-ROM"
msgstr "Söker igenom CD-skivan"
#: ../data/SoftwarePropertiesDialogs.glade.h:24
+#, fuzzy
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] "_Läggtill kanal"
-msgstr[1] "_Läggtill kanal"
+msgstr "_Läggtill kanal"
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -774,101 +829,137 @@ msgstr ""
msgid "The window size"
msgstr "Fönstrets storlek"
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
-msgstr ""
-"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+#, fuzzy
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 6.04 'Dapper Drake'"
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Ubuntu 6.04 Säkerhetsuppdateringar"
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Updates"
msgstr "Ubuntu 6.04 Uppdateringar"
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+#, fuzzy
+msgid "Ubuntu 6.06 Backports"
msgstr "Ubuntu 6.04 Backåtanpassningar"
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 Säkerhetsuppdateringar"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 Uppdateringar"
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 Bakåtanpassningar"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr "Stöds officiellt"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Begränsad upphovsrätt"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Gemenskapsunderhållen (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Ickefri (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 \"Sarge\""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr "http://security.debian.org/"
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Debian 3.1 \"Sarge\" Säkerhetsuppdateringar"
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr "Debian \"Etch\" (testing)"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr "http://http.us.debian.org/debian/"
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian \"Sid\" (unstable)"
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr "Stöds officiellt"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr "DFSG-kompatibel mjukvara med beroenden till ickefri"
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr "Inte DFSG-kompatibel mjukvara"
+#~ msgid "Downloading file %li of %li at unknown speed"
+#~ msgstr "Hämtar hem fil %li av %li med en okänd hastighet"
+
+#~ msgid "Installing updates"
+#~ msgstr "Installerar uppdateringar"
+
+#~ msgid "Check for available updates"
+#~ msgstr "Kontrollera efter tillgängliga uppdateringar"
+
+#~ msgid "Sections:"
+#~ msgstr "Avdelningar:"
+
+#~ msgid "Oficially supported"
+#~ msgstr "Stöds officiellt"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Läs om paketinformationen från servern."
@@ -888,8 +979,8 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ "Need to get the changes from the central server"
#~ msgstr ""
#~ "Nätverksinställningar\n"
-#~ "Använd detta verktyg för att konfigurera det sätt som ditt system kommer åt "
-#~ "andra datorer"
+#~ "Använd detta verktyg för att konfigurera det sätt som ditt system kommer "
+#~ "åt andra datorer"
#~ msgid "Show available updates and choose which to install"
#~ msgstr "Visa tillgängliga uppdateringar och välj vilka som ska installeras"
@@ -927,9 +1018,6 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgid "Packages to install:"
#~ msgstr "Paket att installera:"
-#~ msgid "Components"
-#~ msgstr "Komponenter"
-
#, fuzzy
#~ msgid "Repository"
#~ msgstr "Säkerhet"
@@ -977,7 +1065,8 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgstr "Följande kanaler är våra kanaltips! "
#~ msgid "Changes not found, the server may not be updated yet."
-#~ msgstr "Ändringar kunde inte hittas, servern har kanske inte uppdaterats än."
+#~ msgstr ""
+#~ "Ändringar kunde inte hittas, servern har kanske inte uppdaterats än."
#~ msgid ""
#~ "Failed to download changes. Please check if there is an active internet "
@@ -989,9 +1078,6 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgid "Version %s: \n"
#~ msgstr "Version %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "Hämtar ändringar..."
-
#~ msgid "The updates are being applied."
#~ msgstr "Uppdateringarna verkställs."
@@ -999,11 +1085,11 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgstr "Uppgradering slutförd"
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
-#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det andra "
-#~ "programmet först."
+#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det "
+#~ "andra programmet först."
#, fuzzy
#~ msgid "Updating package list..."
@@ -1034,11 +1120,11 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#, fuzzy
#~ msgid ""
-#~ "This usually means that another package management application (like apt-get "
-#~ "or aptitude) already running. Please close that application first"
+#~ "This usually means that another package management application (like apt-"
+#~ "get or aptitude) already running. Please close that application first"
#~ msgstr ""
-#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det andra "
-#~ "programmet först."
+#~ "Du kan endast köra ett pakethanteringsprogram på samma gång. Stäng det "
+#~ "andra programmet först."
#~ msgid "Initializing and getting list of updates..."
#~ msgstr "Initierar och hämtar lista med uppdateringar..."
@@ -1204,16 +1290,18 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ "Försäkra dig om att du angav e-postadressen och aktiveringskoden korrekt"
#~ msgid ""
-#~ "Unable to show help because the help files were missing. Please report this "
-#~ "to your vendor."
+#~ "Unable to show help because the help files were missing. Please report "
+#~ "this to your vendor."
#~ msgstr ""
-#~ "Kan inte visa hjälp eftersom hjälpfilerna saknas. Rapportera detta till din "
-#~ "leverantör."
+#~ "Kan inte visa hjälp eftersom hjälpfilerna saknas. Rapportera detta till "
+#~ "din leverantör."
#~ msgid ""
-#~ "Unable to show help because there are no applications available to view help."
+#~ "Unable to show help because there are no applications available to view "
+#~ "help."
#~ msgstr ""
-#~ "Kan inte visa hjälp eftersom inga program för att visa hjälp är tillgängliga."
+#~ "Kan inte visa hjälp eftersom inga program för att visa hjälp är "
+#~ "tillgängliga."
#~ msgid "Are you sure you want to open %d package information windows?"
#~ msgstr "Är du säker på att du vill öppna %d fönster med paketinformation?"
@@ -1460,10 +1548,11 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgstr "Löser beroenden"
#~ msgid ""
-#~ "You must agree to the licenses covering this software before installing it."
+#~ "You must agree to the licenses covering this software before installing "
+#~ "it."
#~ msgstr ""
-#~ "Du måste acceptera villkoren i licenserna som rör denna programvara innan du "
-#~ "kan installera den."
+#~ "Du måste acceptera villkoren i licenserna som rör denna programvara innan "
+#~ "du kan installera den."
#~ msgid "I Agree"
#~ msgstr "Jag accepterar"
@@ -1971,8 +2060,8 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgstr "Kanalprenumerationer på kanal %s"
#~ msgid ""
-#~ "You do not have permission to subscribe or unsubscribe from channels. You "
-#~ "will be unable to make any changes to the subscriptions."
+#~ "You do not have permission to subscribe or unsubscribe from channels. "
+#~ "You will be unable to make any changes to the subscriptions."
#~ msgstr ""
#~ "Du har inte rättighet att prenumerera eller säga upp prenumerationer på "
#~ "kanaler. Du kommer inte att kunna göra ändringar i prenumerationer."
@@ -1993,8 +2082,8 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgstr "Privilegium"
#~ msgid ""
-#~ "If you remove superuser privileges from yourself, you will be unable to re-"
-#~ "add them.\n"
+#~ "If you remove superuser privileges from yourself, you will be unable to "
+#~ "re-add them.\n"
#~ "\n"
#~ "Are you sure you want to do this?"
#~ msgstr ""
@@ -2033,9 +2122,6 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgid "Are you sure you want to delete '%s'?"
#~ msgstr "Är du säker på att du vill ta bort \"%s\"?"
-#~ msgid "Remove"
-#~ msgstr "Ta bort"
-
#~ msgid "Privileges"
#~ msgstr "Privilegier"
@@ -2119,8 +2205,8 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgstr "Information"
#~ msgid ""
-#~ "Unable to show help because it was not found or because you don't have any "
-#~ "help viewers available."
+#~ "Unable to show help because it was not found or because you don't have "
+#~ "any help viewers available."
#~ msgstr ""
#~ "Kan inte visa hjälp eftersom den inte hittades eller eftersom du inte har "
#~ "några hjälpvisare tillgängliga."
@@ -2230,8 +2316,10 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgid "Executive Summary"
#~ msgstr "Sammanfattning"
-#~ msgid "Update packages individually (NOTE: This is an unsupported operation)"
-#~ msgstr "Uppdatera paket individuellt (OBSERVERA: Denna operation stöds inte)"
+#~ msgid ""
+#~ "Update packages individually (NOTE: This is an unsupported operation)"
+#~ msgstr ""
+#~ "Uppdatera paket individuellt (OBSERVERA: Denna operation stöds inte)"
#~ msgid "Actual widget tag"
#~ msgstr "Riktig widgettagg"
@@ -2375,7 +2463,8 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgstr "Städar upp..."
#~ msgid ""
-#~ "The packages you requested are being downloaded and installed on your system."
+#~ "The packages you requested are being downloaded and installed on your "
+#~ "system."
#~ msgstr ""
#~ "Paketen du begärde håller på att hämtas och installeras på ditt system."
@@ -2481,9 +2570,9 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ "packages. You must free up some disk space before you can continue. Some "
#~ "options include:"
#~ msgstr ""
-#~ "Du har inte tillräckligt med diskutrymme för att kunna hämta de "
-#~ "begärda paketen. Du måste skapa ledigt utrymme innan du kan fortsätta. Det "
-#~ "finns en del alternativ:"
+#~ "Du har inte tillräckligt med diskutrymme för att kunna hämta "
+#~ "de begärda paketen. Du måste skapa ledigt utrymme innan du kan fortsätta. "
+#~ "Det finns en del alternativ:"
#~ msgid "Removing some packages from your system"
#~ msgstr "Tar bort en del paket från ditt system"
@@ -2495,13 +2584,14 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgstr "Töm din cache."
#~ msgid ""
-#~ "Warning! There may not be sufficient disk space "
-#~ "to install this package, and installation of this package may fail. You "
-#~ "should free up some disk space before continuing."
+#~ "Warning! There may not be sufficient disk "
+#~ "space to install this package, and installation of this package may fail. "
+#~ "You should free up some disk space before continuing."
#~ msgstr ""
#~ "Varning! Det kan finnas otillräckligt med "
-#~ "diskutrymme för att installera detta paket, och installation av detta paket "
-#~ "kan misslyckas. Du bör skapa en del ledigt diskutrymme innan du fortsätter."
+#~ "diskutrymme för att installera detta paket, och installation av detta "
+#~ "paket kan misslyckas. Du bör skapa en del ledigt diskutrymme innan du "
+#~ "fortsätter."
#~ msgid "1 Package"
#~ msgstr "1 paket"
@@ -2519,24 +2609,25 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgstr "nödvändiga installationer"
#~ msgid "Please wait, loading page..."
-#~ msgstr "Var vänlig vänta, läser in sidan..."
+#~ msgstr ""
+#~ "Var vänlig vänta, läser in sidan..."
#~ msgid ""
#~ "You have no packages from this channel currently installed on your system."
#~ msgstr ""
-#~ "Du har för närvarande inte några paket från denna kanal installerade på ditt "
-#~ "system."
+#~ "Du har för närvarande inte några paket från denna kanal installerade på "
+#~ "ditt system."
#~ msgid ""
-#~ "You can visit the channel's about page to "
-#~ "get more information about what software is available, or you can go "
+#~ "You can visit the channel's about page "
+#~ "to get more information about what software is available, or you can go "
#~ "directly to the install page to "
#~ "install software."
#~ msgstr ""
-#~ "Du kan besöka kanalens om-sida för att få "
-#~ "mer information om vilken programvara som är tillgänglig, eller gå direkt "
-#~ "till installationssidan för att "
-#~ "installera program."
+#~ "Du kan besöka kanalens om-sida för att "
+#~ "få mer information om vilken programvara som är tillgänglig, eller gå "
+#~ "direkt till installationssidan för "
+#~ "att installera program."
#~ msgid "View the about page."
#~ msgstr "Visa om-sidan."
@@ -2548,49 +2639,46 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgstr "Gå tillbaka till sammanfattningen."
#~ msgid ""
-#~ "You don't have any packages installed from this channel. The following pre-"
-#~ "defined sets of packages are available, or you may select individual "
+#~ "You don't have any packages installed from this channel. The following "
+#~ "pre-defined sets of packages are available, or you may select individual "
#~ "packages from the Install page."
#~ msgstr ""
#~ "Du har inga paket installerade från denna kanal. Följande fördefinierade "
#~ "paket är tillgängliga, eller så kan du välja enstaka paket från installationssidan."
-#~ msgid "All of the software from this channel is up-to-date."
-#~ msgstr "All programvara från denna kanal är aktuell."
-
#~ msgid ""
-#~ "To install new software from this channel, visit the install page."
+#~ "To install new software from this channel, visit the install page."
#~ msgstr ""
-#~ "För att installera ny programvara går du till installationssidan."
+#~ "För att installera ny programvara går du till installationssidan."
#~ msgid ""
-#~ "To remove already installed software from this channel, visit the remove page."
+#~ "To remove already installed software from this channel, visit the remove page."
#~ msgstr ""
-#~ "För att ta bort redan installerad programvara från denna kanal går du till "
-#~ "borttagningssidan."
+#~ "För att ta bort redan installerad programvara från denna kanal går du "
+#~ "till borttagningssidan."
#~ msgid "Unsubscribe from this channel."
#~ msgstr ""
-#~ "Säg upp prenumerationen på denna "
-#~ "kanal."
+#~ "Säg upp prenumerationen på "
+#~ "denna kanal."
#~ msgid ""
-#~ "There is 1 update available in this channel, totalling %s of "
-#~ "data to be downloaded."
+#~ "There is 1 update available in this channel, totalling %s "
+#~ "of data to be downloaded."
#~ msgstr ""
#~ "Det finns 1 uppdatering tillgänglig i denna kanal, som kräver att "
#~ "%s data hämtas."
#~ msgid ""
-#~ "There are %s updates available in this channel, totalling %s "
-#~ "of data to be downloaded."
+#~ "There are %s updates available in this channel, totalling %s"
+#~ "b> of data to be downloaded."
#~ msgstr ""
-#~ "Det finns %s uppdateringar tillgängliga i denna kanal, som kräver att "
-#~ "%s data hämtas."
+#~ "Det finns %s uppdateringar tillgängliga i denna kanal, som kräver "
+#~ "att %s data hämtas."
#~ msgid "Essential Updates"
#~ msgstr "Nödvändiga uppdateringar"
@@ -2622,34 +2710,36 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ "ditt system.
"
#~ msgid ""
-#~ "You can go to the Update page to view "
-#~ "available updates for your software in this channel, or return to the Summary to view all available updates.
"
+#~ "You can go to the Update page to "
+#~ "view available updates for your software in this channel, or return to "
+#~ "the Summary to view all available updates."
+#~ "
"
#~ msgstr ""
-#~ "Du kan gå till uppdateringssidan för "
-#~ "att se de uppdateringar till din programvara som finns i denna kanal, eller "
-#~ "gå tillbaka till sammanfattningen för att se "
-#~ "alla tillgängliga uppdateringar.
"
+#~ "Du kan gå till uppdateringssidan "
+#~ "för att se de uppdateringar till din programvara som finns i denna kanal, "
+#~ "eller gå tillbaka till sammanfattningen "
+#~ "för att se alla tillgängliga uppdateringar.
"
#~ msgid ""
#~ "You can go to the Summary to view all "
#~ "available updates for your system.
"
#~ msgstr ""
-#~ "Du kan gå till sammanfattningen för att "
-#~ "se alla uppdateringar som är tillgängliga för ditt system.
"
+#~ "Du kan gå till sammanfattningen för "
+#~ "att se alla uppdateringar som är tillgängliga för ditt system.
"
#~ msgid ""
#~ "The following packages from this channel are available for "
#~ "installation."
#~ msgstr ""
-#~ "Följande paket från denna kanal är tillgängliga för installation."
+#~ "Följande paket från denna kanal är tillgängliga för "
+#~ "installation."
#~ msgid ""
-#~ " Package names that are in gray indicate that "
-#~ "a newer version of this package is already installed."
+#~ " Package names that are in gray indicate "
+#~ "that a newer version of this package is already installed."
#~ msgstr ""
-#~ " Paketnamn som är grå indikerar att en nyare "
-#~ "version av detta paket redan är installerat."
+#~ " Paketnamn som är grå indikerar att en "
+#~ "nyare version av detta paket redan är installerat."
#~ msgid "Name:"
#~ msgstr "Namn:"
@@ -2691,18 +2781,18 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgstr "Du prenumererar för närvarande på alla tillgängliga kanaler!"
#~ msgid ""
-#~ "There is one update available for your system, totalling %s of "
-#~ "data to be downloaded."
+#~ "There is one update available for your system, totalling %s "
+#~ "of data to be downloaded."
#~ msgstr ""
-#~ "Det finns en uppdatering tillgänglig för ditt system, som kräver att "
-#~ "%s data hämtas."
+#~ "Det finns en uppdatering tillgänglig för ditt system, som kräver "
+#~ "att %s data hämtas."
#~ msgid ""
-#~ "There are %s updates available for your system, totalling %s "
-#~ "of data to be downloaded."
+#~ "There are %s updates available for your system, totalling %s"
+#~ "b> of data to be downloaded."
#~ msgstr ""
-#~ "Det finns %s uppdateringar tillgängliga för ditt system, som kräver "
-#~ "att %s data hämtas."
+#~ "Det finns %s uppdateringar tillgängliga för ditt system, som "
+#~ "kräver att %s data hämtas."
#~ msgid " Of these updates, one is urgent."
#~ msgstr " Utav dessa uppdateringar är en brådskande."
@@ -2720,7 +2810,8 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgstr "Synlig felsökningsnivå, går från 0 (ingenting) till 6 (allting)"
#~ msgid "Log file debugging level, ranges from 0 (nothing) to 6 (everything)"
-#~ msgstr "Felsökningsnivå för loggfil, går från 0 (ingenting) till 6 (allting)"
+#~ msgstr ""
+#~ "Felsökningsnivå för loggfil, går från 0 (ingenting) till 6 (allting)"
#~ msgid "The XAuthority file (usually from GDM)"
#~ msgstr "XAuthority-filen (vanligtvis från GDM)"
@@ -2742,11 +2833,11 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgstr "Hämtar kanalgrafik..."
#~ msgid ""
-#~ "An error occurred trying to parse the channel list. You should ensure that "
-#~ "you are running a supported distribution and try again later."
+#~ "An error occurred trying to parse the channel list. You should ensure "
+#~ "that you are running a supported distribution and try again later."
#~ msgstr ""
-#~ "Ett fel inträffade vid försök att tolka kanallistan. Du bör försäkra dig om "
-#~ "att du använder en distribution som stöds och försöka igen senare."
+#~ "Ett fel inträffade vid försök att tolka kanallistan. Du bör försäkra dig "
+#~ "om att du använder en distribution som stöds och försöka igen senare."
#~ msgid "Navigation"
#~ msgstr "Navigering"
@@ -2952,4 +3043,4 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgid "translator-credits"
#~ msgstr ""
#~ "Christian Rose\n"
-#~ "Skicka synpunkter på översättningen till sv@li.org"
\ No newline at end of file
+#~ "Skicka synpunkter på översättningen till sv@li.org"
diff --git a/po/uk.po b/po/uk.po
index 8d118735..db306f06 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -5,48 +5,47 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-23 11:26+0000\n"
"Last-Translator: Serhey Kusyumoff \n"
"Language-Team: Ukrainian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
-"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr "Кожні %s днів"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "Через %s днів"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr "Імпортувати ключ"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Помилка імпорту вибраного файлу"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "Вибраний файл, можливо, не є файлом GPG ключа або він пошкоджений."
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Помилка видалення ключа"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку."
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -54,11 +53,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "Введіть назву диску"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr "Вставте диск в пристрій:"
@@ -82,6 +81,7 @@ msgstr "Не можливо поновити необхідні meta-пакун
msgid "A essential package would have to be removed"
msgstr "Це призведе довидалення базового пакунку системи"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr "Не можливо розрахувати поновлення"
@@ -93,34 +93,36 @@ msgid ""
"this as a bug. "
msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr "Помилка підписів в деяких пакунках"
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "Не можливо встановити '%s'"
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
#, fuzzy
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr "Не можливо підібрати meta-пакунок"
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -133,42 +135,43 @@ msgstr ""
msgid "Reading cache"
msgstr "Зчитування кешу"
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr "Не знайдено"
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr "Помилка в даних про репозиторій"
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
#, fuzzy
msgid "Error during update"
msgstr "Помилка підчас поновлення"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr "Недостатньо місця на диску"
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -176,18 +179,20 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr "Бажаєте почати апгрейд системи?"
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr "Неможливо провести апргрейд системи"
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
+#, fuzzy
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
"Апргрейд системи щойно зупинено. Система тепер може працювати нестабільно. "
"Виконайте команду 'sudo apt-get install -f', або скористайдесь програмою "
@@ -205,15 +210,24 @@ msgstr ""
"Апргрейд системи щойно перервано. Будь ласка, перевірте зєднання з "
"інтернетом чи носії та спробуйте знов. "
-#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+#: ../DistUpgrade/DistUpgradeControler.py:273
+#, fuzzy
+msgid "Remove obsolete packages?"
msgstr "Видалити непотрібні пакунки?"
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
@@ -222,86 +236,102 @@ msgstr ""
"нижче. "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr "Перевірка програми управління пакунками"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr "Отримання інформації про репозиторій"
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr "Запит підтвердження"
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
#, fuzzy
msgid "Upgrading"
msgstr "Оновлення завершено"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr "Пошук програм, що не використовуються"
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr "Апргрейд системи завершено."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr "Вставте '%s' в пристрій '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr "Завантадення пакунків завершено"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr "Завантажується файл %li of %li at %s/s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr "%s залишилось"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
-#, python-format
-msgid "Downloading file %li of %li at unknown speed"
-msgstr "Завантажується файл %li of %li на невизначенії швидкості"
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
+#, fuzzy, python-format
+msgid "Downloading file %li of %li"
+msgstr "Завантажується файл %li of %li at %s/s"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
#, fuzzy
-msgid "Installing updates"
-msgstr "Встановлення оновлень..."
+msgid "Applying changes"
+msgstr "Завантаження змін..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr "Не можливо встановити '%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
#, fuzzy
msgid "The upgrade aborts now. Please report this bug."
msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr "Виникла невиправна помилка"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
"Будь ласка, повідмте це я помилку, включивши в повідомлення файли ~/dist-"
"upgrade.log and ~/dist-upgrade-apt.log . Апргрейд щойно перервано. "
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
@@ -309,7 +339,7 @@ msgstr[0] "%s пакунків буде видалено."
msgstr[1] ""
msgstr[2] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
@@ -317,7 +347,7 @@ msgstr[0] "%s пакунків буде встановлено."
msgstr[1] ""
msgstr[2] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
@@ -325,50 +355,51 @@ msgstr[0] "буде проведено апргрейд %s пакунків."
msgstr[1] ""
msgstr[2] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr "Потрібно завантажити всього %s пакунків."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
"Апрейд може продовжуватись декілька годин, і не може бути перервано протягом "
"всього часу."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr "Не знайдено пакунків для апгрейду"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr "Апгрейд вашої системи вже проведено."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
+#, fuzzy, python-format
msgid "Remove %s"
msgstr "Видалити %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
+#, fuzzy, python-format
msgid "Install %s"
msgstr "Встановити %s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
+#, fuzzy, python-format
msgid "Upgrade %s"
msgstr "Апргрейд %s"
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr "Необхідно перезавантажити систему"
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -378,6 +409,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -403,8 +435,8 @@ msgstr "Почати апгрейд системи?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -416,38 +448,51 @@ msgid "Details"
msgstr "Подробиці"
#: ../DistUpgrade/DistUpgrade.glade.h:10
+msgid "Difference between the files"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
msgstr "Завантаження та встановлення пакунків для апгрейду"
-#: ../DistUpgrade/DistUpgrade.glade.h:11
+#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
msgstr ""
-#: ../DistUpgrade/DistUpgrade.glade.h:12
+#: ../DistUpgrade/DistUpgrade.glade.h:13
msgid "Preparing the upgrade"
msgstr "Підготовка до апгрейду системи"
-#: ../DistUpgrade/DistUpgrade.glade.h:13
+#: ../DistUpgrade/DistUpgrade.glade.h:14
msgid "Restarting the system"
msgstr "Перезавантаження системи"
-#: ../DistUpgrade/DistUpgrade.glade.h:14
+#: ../DistUpgrade/DistUpgrade.glade.h:15
msgid "Terminal"
msgstr "Термінал"
-#: ../DistUpgrade/DistUpgrade.glade.h:15
+#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
msgstr "Апгрейд системи Ubuntu"
-#: ../DistUpgrade/DistUpgrade.glade.h:16
+#: ../DistUpgrade/DistUpgrade.glade.h:17
+msgid "_Keep"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "Перезавантажити"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
msgstr "П_овідомити про помилку"
-#: ../DistUpgrade/DistUpgrade.glade.h:17
+#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
msgstr "_Перезавантажити"
-#: ../DistUpgrade/DistUpgrade.glade.h:18
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr "П_родовжити апгрейд системи"
@@ -461,7 +506,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -480,52 +525,56 @@ msgid "Changes"
msgstr "Зміни"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
-msgstr "Пошук пакунків для апгрейду"
+msgid "Chec_k"
+msgstr ""
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Опис"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Оновлення програм"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr ""
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
msgstr "Встановлення оновлень..."
@@ -597,7 +646,7 @@ msgid "_Check for updates automatically:"
msgstr "Перевіряти оновлення кожні"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -628,12 +677,13 @@ msgid "Comment:"
msgstr "Коментар:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Дистрибутив:"
+#, fuzzy
+msgid "Components:"
+msgstr "Компоненти"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Розділи:"
+msgid "Distribution:"
+msgstr "Дистрибутив:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
#, fuzzy
@@ -651,14 +701,14 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
#, fuzzy
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
-"Введіть повний рядок APT репозиторію, який ви бажаєте "
-"додати\n"
+"Введіть повний рядок APT репозиторію, який ви бажаєте додати"
+"big>\n"
"\n"
"Рядок APT містить тип, адресу та вміст репозиторію, наприклад \"deb "
"http://ftp.debian.org sarge main\". Докладні приклади можна знайти у "
@@ -690,10 +740,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -741,111 +788,145 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
#, fuzzy
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Оновлення Ubuntu 5.04"
+#. Description
#: ../channels/Ubuntu.info.in:23
#, fuzzy
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Оновлення безпеки Ubuntu 5.04"
+#. Description
#: ../channels/Ubuntu.info.in:40
#, fuzzy
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr "Оновлення Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:57
#, fuzzy
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr "Оновлення Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:74
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "CD диск з Ubuntu 5.10 \"Breezy Badger\""
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Оновлення безпеки Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Оновлення Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:125
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "Оновлення Ubuntu 5.10"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
#, fuzzy
msgid "Officially supported"
msgstr "Офіціально підтримуються"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Обмежені авторські права"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Підтримується спільнотою (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Не-вільний (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 \"Sarge\""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
#, fuzzy
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Оновлення безпеки стабільного Debian"
+#. Description
#: ../channels/Debian.info.in:34
#, fuzzy
msgid "Debian \"Etch\" (testing)"
msgstr "Тестовий Debian"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
#, fuzzy
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian поза США (Нестабільний)"
-#: ../channels/Debian.info.in:51
-#, fuzzy
-msgid "Oficially supported"
-msgstr "Офіціально підтримуються"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr ""
+#~ msgid "Downloading file %li of %li at unknown speed"
+#~ msgstr "Завантажується файл %li of %li на невизначенії швидкості"
+
+#, fuzzy
+#~ msgid "Installing updates"
+#~ msgstr "Встановлення оновлень..."
+
+#~ msgid "Check for available updates"
+#~ msgstr "Пошук пакунків для апгрейду"
+
+#~ msgid "Sections:"
+#~ msgstr "Розділи:"
+
+#, fuzzy
+#~ msgid "Oficially supported"
+#~ msgstr "Офіціально підтримуються"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Перезавантажити з сервера інформацію про пакет"
@@ -886,9 +967,6 @@ msgstr ""
#~ msgid "day(s)"
#~ msgstr "діб"
-#~ msgid "Components"
-#~ msgstr "Компоненти"
-
#~ msgid "Repository"
#~ msgstr "Репозиторій"
@@ -910,8 +988,8 @@ msgstr ""
#~ "дає змогу перевірити цілісність завантаженого програмного забезпечення."
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
#~ "Додайте новий ключ до в'язки довірених ключів. Перевірте, що ви отримали "
#~ "ключ безпечним каналом та ви довіряєте власнику. "
@@ -941,8 +1019,8 @@ msgstr ""
#~ msgstr "Максимальний розмір (Мб):"
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
#~ "Відновити початкові ключі, що постачались з дистрибутивом. Встановлені "
#~ "користувачем ключі не будуть змінені."
@@ -974,13 +1052,13 @@ msgstr ""
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Доступні оновлення\n"
#~ "\n"
-#~ "Знайдено наступні пакети для оновлення. Їх можна оновити натиснувши кнопку "
-#~ "Встановити."
+#~ "Знайдено наступні пакети для оновлення. Їх можна оновити натиснувши "
+#~ "кнопку Встановити."
#~ msgid "Cancel downloading the changelog"
#~ msgstr "Скасувати завантаження записів changelog"
@@ -1067,9 +1145,6 @@ msgstr ""
#~ msgid "Version %s: \n"
#~ msgstr "Версія %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "Завантаження змін..."
-
#~ msgid "There are no updated packages"
#~ msgstr "Немає оновлених пакетів"
@@ -1086,7 +1161,8 @@ msgstr ""
#~ msgstr[2] "Ви виділили %s пакетів оновлення, розмір %s"
#~ msgid "You have selected %s out of %s updated package, size %s"
-#~ msgid_plural "You have selected %s out of %s updated packages, total size %s"
+#~ msgid_plural ""
+#~ "You have selected %s out of %s updated packages, total size %s"
#~ msgstr[0] "Ви виділили %s з %s пакетів оновлення, загальний розмір %s"
#~ msgstr[1] "Ви виділили %s з %s пакетів оновлення, загальний розмір %s"
#~ msgstr[2] "Ви виділили %s з %s пакетів оновлення, загальний розмір %s"
@@ -1095,11 +1171,11 @@ msgstr ""
#~ msgstr "Застосовуються оновлення."
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
-#~ "Одночасно можна запускати лише один менеджер пакетів. Спочатку закрийте іншу "
-#~ "програму.close this other application first."
+#~ "Одночасно можна запускати лише один менеджер пакетів. Спочатку закрийте "
+#~ "іншу програму.close this other application first."
#~ msgid "Updating package list..."
#~ msgstr "Оновлення списку пакетів..."
@@ -1115,22 +1191,22 @@ msgstr ""
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
-#~ "Поновіть систему на більш нову версію Ubuntu Linux. Для встановленої версії "
-#~ "не випускаються виправлення безпеки та інші критичні оновлення. Дивіться "
-#~ "інформацію про оновлення на http://www.ubuntulinux.org"
+#~ "Поновіть систему на більш нову версію Ubuntu Linux. Для встановленої "
+#~ "версії не випускаються виправлення безпеки та інші критичні оновлення. "
+#~ "Дивіться інформацію про оновлення на http://www.ubuntulinux.org"
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "Доступний новий випуск Ubuntu!"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
-#~ "Доступний новий випуск з кодовою назвою '%s'. Інструкції оновлення дивіться "
-#~ "на http://www.ubuntulinux.org/"
+#~ "Доступний новий випуск з кодовою назвою '%s'. Інструкції оновлення "
+#~ "дивіться на http://www.ubuntulinux.org/"
#~ msgid "Never show this message again"
#~ msgstr "Не показуйте це повідомлення знову"
@@ -1142,4 +1218,4 @@ msgstr ""
#~ "Failed to download changes. Please check if there is an active internet "
#~ "connection."
#~ msgstr ""
-#~ "не вдається завантажити зміни. Перевірте чи активне з'єднання з Інтернет."
\ No newline at end of file
+#~ "не вдається завантажити зміни. Перевірте чи активне з'єднання з Інтернет."
diff --git a/po/update-manager.pot b/po/update-manager.pot
index 838cf650..7ee20ee1 100644
--- a/po/update-manager.pot
+++ b/po/update-manager.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-03 11:03+0200\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -479,7 +479,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -502,7 +502,7 @@ msgid "Chec_k"
msgstr ""
#: ../data/UpdateManager.glade.h:11
-msgid "Check for available updates"
+msgid "Check the software channels for new updates"
msgstr ""
#: ../data/UpdateManager.glade.h:12
@@ -787,7 +787,7 @@ msgid "Ubuntu 5.10 Backports"
msgstr ""
#. CompDescription
-#: ../channels/Ubuntu.info.in:128
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr ""
@@ -842,11 +842,6 @@ msgstr ""
msgid "Debian \"Sid\" (unstable)"
msgstr ""
-#. CompDescription
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr ""
-
#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
diff --git a/po/vi.po b/po/vi.po
index 3459aff4..dc08edf5 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager Gnome HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-23 00:20+0000\n"
"Last-Translator: Clytie Siddall \n"
"Language-Team: Vietnamese \n"
@@ -16,39 +16,37 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0\n"
"X-Generator: LocFactoryEditor 1.2.2\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "Gặp lỗi khi nhập tâp tin đã chọn"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
-msgstr ""
-"Có lẽ tập tin đã chọn không phai là tập tin khóa GPG, hoặc nó bị hỏng."
+msgstr "Có lẽ tập tin đã chọn không phai là tập tin khóa GPG, hoặc nó bị hỏng."
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "Gặp lỗi khi gỡ bỏ khóa"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+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:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -56,11 +54,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -82,6 +80,7 @@ msgstr ""
msgid "A essential package would have to be removed"
msgstr ""
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr ""
@@ -93,34 +92,36 @@ msgid ""
"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. "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
#, fuzzy
msgid ""
"It was impossible to install a required package. 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. "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -133,42 +134,43 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
#, fuzzy
msgid "Error during update"
msgstr "Gặp lỗi khi gỡ bỏ khóa"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -176,18 +178,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -200,159 +203,184 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Skip This Step"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
#, fuzzy
msgid "Checking package manager"
msgstr "Một bộ quản lý gói khác đang chạy"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
#, fuzzy
msgid "Upgrading"
msgstr "Nâng cấp xong"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
#, fuzzy
-msgid "Installing updates"
-msgstr "Đang cài đặt bản cập nhật..."
+msgid "Applying changes"
+msgstr "Đang tài về các thay đổi..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
#, fuzzy
msgid "The upgrade aborts now. Please report this 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."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
+#, python-format
msgid "Remove %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
+#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
+#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -360,6 +388,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -383,8 +412,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -397,38 +426,51 @@ msgid "Details"
msgstr "Chi tiết"
#: ../DistUpgrade/DistUpgrade.glade.h:10
-msgid "Downloading and installing the upgrades"
+msgid "Difference between the files"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:11
-msgid "Modifying the software channels"
+msgid "Downloading and installing the upgrades"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:12
-msgid "Preparing the upgrade"
+msgid "Modifying the software channels"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:13
-msgid "Restarting the system"
+msgid "Preparing the upgrade"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:14
-msgid "Terminal"
+msgid "Restarting the system"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:15
-msgid "Upgrading Ubuntu"
+msgid "Terminal"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:16
-msgid "_Report Bug"
+msgid "Upgrading Ubuntu"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:17
-msgid "_Restart Now"
+msgid "_Keep"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "Tải lại"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr ""
@@ -442,7 +484,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -461,53 +503,56 @@ msgid "Changes"
msgstr "Đổi"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
-msgid "Check for available updates"
-msgstr "Đang kiểm tra có cập nhật..."
+msgid "Chec_k"
+msgstr ""
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Mô tả"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "Bản cập nhật phần mềm"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr ""
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
msgstr "Đang cài đặt bản cập nhật..."
@@ -579,7 +624,7 @@ msgid "_Check for updates automatically:"
msgstr "Kiểm tra có cập nhật sau mỗi"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -610,12 +655,13 @@ msgid "Comment:"
msgstr "Ghi chú :"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "Bản phát hành:"
+#, fuzzy
+msgid "Components:"
+msgstr "Thành phần"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "Phần:"
+msgid "Distribution:"
+msgstr "Bản phát hành:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
#, fuzzy
@@ -633,8 +679,8 @@ msgstr "Địa chỉ định vị:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
#, fuzzy
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
@@ -671,8 +717,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -720,111 +765,143 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
#, fuzzy
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Bản cập nhật Ubuntu 5.04"
+#. Description
#: ../channels/Ubuntu.info.in:23
#, fuzzy
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Bản cập nhật bảo mặt Ubuntu 5.04"
+#. Description
#: ../channels/Ubuntu.info.in:40
#, fuzzy
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr "Bản cập nhật Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:57
#, fuzzy
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr "Bản cập nhật Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:74
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Đĩa CD chứa « Breezy Badger » của Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Bản cập nhật bảo mặt Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Bản cập nhật Ubuntu 5.10"
+#. Description
#: ../channels/Ubuntu.info.in:125
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "Bản cập nhật Ubuntu 5.10"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
#, fuzzy
msgid "Officially supported"
msgstr "Được hỗ trợ một cách chính thức"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "Bản quyền bị giới hạn"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "Do cộng đồng bảo quản (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "Không tự do (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 « Sarge »"
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
#, fuzzy
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Bản cập nhật bảo mặt ổn định Debian"
+#. Description
#: ../channels/Debian.info.in:34
#, fuzzy
msgid "Debian \"Etch\" (testing)"
msgstr "Thử ra Debian"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
#, fuzzy
msgid "Debian \"Sid\" (unstable)"
msgstr "Không Mỹ Debian (Bất định)"
-#: ../channels/Debian.info.in:51
-#, fuzzy
-msgid "Oficially supported"
-msgstr "Được hỗ trợ một cách chính thức"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr ""
+#, fuzzy
+#~ msgid "Installing updates"
+#~ msgstr "Đang cài đặt bản cập nhật..."
+
+#, fuzzy
+#~ msgid "Check for available updates"
+#~ msgstr "Đang kiểm tra có cập nhật..."
+
+#~ msgid "Sections:"
+#~ msgstr "Phần:"
+
+#, fuzzy
+#~ msgid "Oficially supported"
+#~ msgstr "Được hỗ trợ một cách chính thức"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Tải lại thông tin gói từ máy phục vụ."
@@ -865,9 +942,6 @@ msgstr ""
#~ msgid "day(s)"
#~ msgstr "ngày"
-#~ msgid "Components"
-#~ msgstr "Thành phần"
-
#~ msgid "Repository"
#~ msgstr "Kho"
@@ -885,12 +959,12 @@ msgstr ""
#~ msgstr ""
#~ "Khóa xác thực\n"
#~ "\n"
-#~ "Bạn có thể thêm và gỡ bỏ khóa xác thực dùng hộp thoại này. Khóa cho phép bạn "
-#~ "thẩm tra toàn vẹn của phần mềm đã tải về."
+#~ "Bạn có thể thêm và gỡ bỏ khóa xác thực dùng hộp thoại này. Khóa cho phép "
+#~ "bạn thẩm tra toàn vẹn của phần mềm đã tải về."
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
#~ msgstr ""
#~ "Thêm tập tin khóa mới vào vòng khóa tin cây. Hãy đảm bảo bạn đã nhận khóa "
#~ "này qua kênh bảo mật, và bạn tin cây người sở hữu khóa này. "
@@ -920,11 +994,11 @@ msgstr ""
#~ msgstr "Cỡ tối đa, theo MB:"
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr ""
-#~ "Phục hồi các khóa mặc định có sẵn trong bản phát hành. Tuy nhiên, hành động "
-#~ "này sẽ không sửa đổi khóa nào tự cài đặt."
+#~ "Phục hồi các khóa mặc định có sẵn trong bản phát hành. Tuy nhiên, hành "
+#~ "động này sẽ không sửa đổi khóa nào tự cài đặt."
#~ msgid "Set _maximum size for the package cache"
#~ msgstr "Đặt cỡ tối _đa cho bộ nhớ tạm gói"
@@ -953,13 +1027,13 @@ msgstr ""
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Bản nâng cấp công bố\n"
#~ "\n"
-#~ "Tìm thấy có thể nâng cấp những gói theo đây. Để nâng cấp gói, chỉ đơn giản "
-#~ "hãy sử dụng nút « Cài đặt »."
+#~ "Tìm thấy có thể nâng cấp những gói theo đây. Để nâng cấp gói, chỉ đơn "
+#~ "giản hãy sử dụng nút « Cài đặt »."
#~ msgid "Cancel downloading the changelog"
#~ msgstr "Thôi tải về Bản ghi đổi..."
@@ -1033,9 +1107,6 @@ msgstr ""
#~ msgid "Version %s: \n"
#~ msgstr "Phiên bản %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "Đang tài về các thay đổi..."
-
#~ msgid "There are no updated packages"
#~ msgstr "Không có gói nào đã cập nhật."
@@ -1048,18 +1119,19 @@ msgstr ""
#~ msgstr[0] "Bạn đã chọn tất cả %s gói đã cập nhật: cỡ tổng là %s"
#~ msgid "You have selected %s out of %s updated package, size %s"
-#~ msgid_plural "You have selected %s out of %s updated packages, total size %s"
+#~ msgid_plural ""
+#~ "You have selected %s out of %s updated packages, total size %s"
#~ msgstr[0] "Bạn đã chọn %s trong %s gói đã cập nhật: cỡ tổng là %s"
#~ msgid "The updates are being applied."
#~ msgstr "Đang áp dụng những bản cập nhật."
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr ""
-#~ "Bạn có thể chạy chỉ một ứng dụng quản lý gói trong một thời gian thôi. Vui "
-#~ "lòng đóng ứng dụng khác trước khi tiếp tục."
+#~ "Bạn có thể chạy chỉ một ứng dụng quản lý gói trong một thời gian thôi. "
+#~ "Vui lòng đóng ứng dụng khác trước khi tiếp tục."
#~ msgid "Updating package list..."
#~ msgstr "Đạng cập nhật danh sách gói..."
@@ -1075,22 +1147,22 @@ msgstr ""
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
-#~ "Xin hãy nâng cấp đến một phiên bản Linux Ubuntu mới hơn, vì phiên bản hiện "
-#~ "thời của bạn sẽ không còn nhận lại bản cập nhật bảo mật. Hãy xem "
+#~ "Xin hãy nâng cấp đến một phiên bản Linux Ubuntu mới hơn, vì phiên bản "
+#~ "hiện thời của bạn sẽ không còn nhận lại bản cập nhật bảo mật. Hãy xem "
#~ " để tìm thông tin nâng cấp."
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "Có một bản phát hành Ubuntu mới công bố."
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
#~ msgstr ""
-#~ "Có một bản phát hành mới có tên mã « %s ». Hãy xem "
-#~ " để tìm hướng dẫn nâng cấp."
+#~ "Có một bản phát hành mới có tên mã « %s ». Hãy xem để tìm hướng dẫn nâng cấp."
#~ msgid "Never show this message again"
#~ msgstr "Đừng hiện thông điệp này lần nữa."
@@ -1102,5 +1174,5 @@ msgstr ""
#~ "Failed to download changes. Please check if there is an active internet "
#~ "connection."
#~ msgstr ""
-#~ "Không tải thay đổi về được. Bạn hãy kiểm tra có kết nối đến Mạng hoạt động "
-#~ "chưa."
\ No newline at end of file
+#~ "Không tải thay đổi về được. Bạn hãy kiểm tra có kết nối đến Mạng hoạt "
+#~ "động chưa."
diff --git a/po/xh.po b/po/xh.po
index 13febe9a..43526cf6 100644
--- a/po/xh.po
+++ b/po/xh.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-notifier\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-18 12:11+0000\n"
"Last-Translator: Canonical Ltd \n"
"Language-Team: Xhosa \n"
@@ -17,38 +17,37 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -56,11 +55,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -82,6 +81,7 @@ msgstr ""
msgid "A essential package would have to be removed"
msgstr ""
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr ""
@@ -92,33 +92,35 @@ msgid ""
"this as a bug. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -131,41 +133,42 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -173,18 +176,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -197,159 +201,183 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Remove"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-#, fuzzy
-msgid "Installing updates"
-msgstr "Seka zonke izihlaziyo"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+msgid "Applying changes"
+msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
+#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -357,6 +385,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -380,8 +409,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -393,38 +422,50 @@ msgid "Details"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:10
-msgid "Downloading and installing the upgrades"
+msgid "Difference between the files"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:11
-msgid "Modifying the software channels"
+msgid "Downloading and installing the upgrades"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:12
-msgid "Preparing the upgrade"
+msgid "Modifying the software channels"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:13
-msgid "Restarting the system"
+msgid "Preparing the upgrade"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:14
-msgid "Terminal"
+msgid "Restarting the system"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:15
-msgid "Upgrading Ubuntu"
+msgid "Terminal"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:16
-msgid "_Report Bug"
+msgid "Upgrading Ubuntu"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:17
-msgid "_Restart Now"
+msgid "_Keep"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:18
+msgid "_Replace"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr ""
@@ -438,7 +479,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -457,53 +498,57 @@ msgid "Changes"
msgstr ""
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
+msgid "Chec_k"
msgstr ""
#: ../data/UpdateManager.glade.h:11
-msgid "Description"
+msgid "Check the software channels for new updates"
msgstr ""
#: ../data/UpdateManager.glade.h:12
-msgid "Release Notes"
+msgid "Description"
msgstr ""
#: ../data/UpdateManager.glade.h:13
-msgid "Show details"
+msgid "Release Notes"
msgstr ""
#: ../data/UpdateManager.glade.h:14
-msgid "Show progress of single files"
+msgid "Show details"
msgstr ""
#: ../data/UpdateManager.glade.h:15
+msgid "Show progress of single files"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:16
#, fuzzy
msgid "Software Updates"
msgstr "Bonisa izihlaziyo"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr ""
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
msgstr "Bonisa izihlaziyo"
@@ -572,7 +617,7 @@ msgid "_Check for updates automatically:"
msgstr ""
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -604,11 +649,12 @@ msgid "Comment:"
msgstr "Uluhlu lwezinto ezikhethwayo zeenkqubo zekhompyutha"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr ""
+#, fuzzy
+msgid "Components:"
+msgstr "Uluhlu lwezinto ezikhethwayo zeenkqubo zekhompyutha"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
+msgid "Distribution:"
msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:12
@@ -626,8 +672,8 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
@@ -657,9 +703,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -707,100 +751,122 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr ""
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr ""
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr ""
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr ""
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr ""
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr ""
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr ""
+#, fuzzy
+#~ msgid "Installing updates"
+#~ msgstr "Seka zonke izihlaziyo"
+
#, fuzzy
#~ msgid "Add Software Channels"
#~ msgstr "Bonisa izihlaziyo"
@@ -841,8 +907,8 @@ msgstr ""
#~ msgstr ""
#~ "Ulwazi oluhlaziyiweyo\n"
#~ "\n"
-#~ "Kukho iinkqubo zekhompyutha zasemva kohlaziyo zolwazi olukhoyo. Nceda funda "
-#~ "olu lwazi lulandelayo ngocoselelo."
+#~ "Kukho iinkqubo zekhompyutha zasemva kohlaziyo zolwazi olukhoyo. Nceda "
+#~ "funda olu lwazi lulandelayo ngocoselelo."
#~ msgid "Run now"
-#~ msgstr "Phumeza inkqubo ngoku"
\ No newline at end of file
+#~ msgstr "Phumeza inkqubo ngoku"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index dadb16bb..49aefbdc 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-26 12:31+0000\n"
"Last-Translator: firingstone \n"
"Language-Team: zh_CN \n"
@@ -16,38 +16,37 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr "每%s天"
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr "%s天后"
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr "导入密钥"
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "在导入所选文件时出错"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "所选文件可能不是GPG密钥文件或者已经损坏."
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "删除密钥时候出错"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr "你所选择的密钥不能被删除。请汇报这个bug"
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -58,11 +57,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr "请输入光盘的名称"
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr "请将光盘插入到光驱里:"
@@ -74,7 +73,9 @@ msgstr "破损的软件包"
msgid ""
"Your system contains broken packages that couldn't be fixed with this "
"software. Please fix them first using synaptic or apt-get before proceeding."
-msgstr "你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者apt-get修复它们。"
+msgstr ""
+"你的系统包含有破损的软件包而不能通过此软件修复。 在你继续前请先用新立得或者"
+"apt-get修复它们。"
#: ../DistUpgrade/DistUpgradeCache.py:135
msgid "Can't upgrade required meta-packages"
@@ -84,6 +85,7 @@ msgstr "不能升级要求的元包"
msgid "A essential package would have to be removed"
msgstr "一个必要的软件包会被删除"
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr "无法计算升级"
@@ -94,33 +96,37 @@ msgid ""
"this as a bug. "
msgstr "在计算升级时遇到一个无法解决的问题。请汇报这个bug。 "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr "在认证一些软件包时出错"
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
-msgstr "无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软件包的列表。"
+msgstr ""
+"无法认证一些软件包。这可能是暂时的网络问题。你可以在稍后再试。以下是未认证软"
+"件包的列表。"
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr "无法安装'%s'"
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr "无法安装要求的软件包。请汇报这个bug。 "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr "无法猜出元包"
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -128,68 +134,76 @@ msgid ""
" Please install one of the packages above first using synaptic or apt-get "
"before proceeding."
msgstr ""
-"你的系统没有一个ubuntu-desktop,kubuntu-desktop或eubuntu-"
-"desktop软件包所以无法确定你运行的ubuntu的版本。 请在继续前先用新立得或apt-get安装以上所举软件包中的一个。"
+"你的系统没有一个ubuntu-desktop,kubuntu-desktop或eubuntu-desktop软件包所以无法"
+"确定你运行的ubuntu的版本。 请在继续前先用新立得或apt-get安装以上所举软件包中"
+"的一个。"
#: ../DistUpgrade/DistUpgradeControler.py:42
msgid "Reading cache"
msgstr "正在读取缓存"
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr "未找到有效记录"
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr "在检查你的源的信息时未能找到有效的升级记录\n"
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr "源的信息无效"
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr "升级源的信息时产生一个无效文件。请汇报这个bug。"
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
msgstr "升级时出错"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr "升级时候出错。这通常是一些网络问题,请检查你的网络连接后再试。"
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr "磁盘空间不足"
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
"trash and remove temporary packages of former installations using 'sudo apt-"
"get clean'."
-msgstr "升级已被取消。请清理出至少%s的磁盘空间。清空你的回收站并通过'sudo apt-get clean'命令来删除之前安装的临时软件包。"
+msgstr ""
+"升级已被取消。请清理出至少%s的磁盘空间。清空你的回收站并通过'sudo apt-get "
+"clean'命令来删除之前安装的临时软件包。"
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr "你要开始升级么?"
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr "无法安装升级"
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
+#, fuzzy
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
-msgstr "升级现在取消。你的系统可能处于不稳定状态。请试着用'sudo apt-get install -f'或者新立得来修复你的系统。"
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
+msgstr ""
+"升级现在取消。你的系统可能处于不稳定状态。请试着用'sudo apt-get install -f'或"
+"者新立得来修复你的系统。"
#: ../DistUpgrade/DistUpgradeControler.py:230
msgid "Could not download the upgrades"
@@ -201,156 +215,184 @@ msgid ""
"installation media and try again. "
msgstr "升级现在取消。请检查你的网络连接活重新放置安装媒体后再试。 "
-#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+#: ../DistUpgrade/DistUpgradeControler.py:273
+#, fuzzy
+msgid "Remove obsolete packages?"
msgstr "删除陈旧的软件包?"
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Remove"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr "确认时出错"
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr "在清理时发生问题。更多信息请查看以下消息。 "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
msgstr "正在检查软件包管理器"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr "更新源的信息"
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr "请求确认"
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
msgstr "正在更新"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr "寻找陈旧的软件包"
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr "系统更新完毕"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr "请将'%s'插入光驱'%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr "下载完成"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr "正在下载文件%li来自%li速度是%s/s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr "还剩%s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
-#, python-format
-msgid "Downloading file %li of %li at unknown speed"
-msgstr "正在下载文件%li来自%li速度未知"
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
+#, fuzzy, python-format
+msgid "Downloading file %li of %li"
+msgstr "正在下载文件%li来自%li速度是%s/s"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
-msgid "Installing updates"
-msgstr "安装更新"
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
+#, fuzzy
+msgid "Applying changes"
+msgstr "正在下载更改..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr "无法安装'%s'"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
msgstr "升级被取消。请报告这个bug。"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr "出现致命错误"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-"请报告这个bug并在你的报告中包括这些文件~/dist-upgrade.log和~/dist-upgrade-apt.log。升级现在取消。 "
+"请报告这个bug并在你的报告中包括这些文件~/dist-upgrade.log和~/dist-upgrade-"
+"apt.log。升级现在取消。 "
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] "%s软件包将被删除。"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] "%s新的软件包将被安装。"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] "%s软件包将被升级"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr "你下载了总体的%s。"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr "升级会持续几个小时且不能在此后的任何时候被终止"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr "关闭所有打开的程序和文档以防止数据丢失。"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr "不能找到任何升级"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr "你的系统已经升级。"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
msgstr "删除%s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
msgstr "安装%s"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
msgstr "升级%s"
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr "需要重启"
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr "升级已经完成并需要重启。你要现在重启么?"
@@ -358,6 +400,7 @@ msgstr "升级已经完成并需要重启。你要现在重启么?"
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -382,9 +425,10 @@ msgid "Start the upgrade?"
msgstr "开始升级?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
+#, fuzzy
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
"升级到 Ubuntu \"Dapper\" 6.04"
@@ -397,38 +441,51 @@ msgid "Details"
msgstr "详细信息"
#: ../DistUpgrade/DistUpgrade.glade.h:10
+msgid "Difference between the files"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
msgstr "下载并安装升级"
-#: ../DistUpgrade/DistUpgrade.glade.h:11
+#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
msgstr "调整软件途径"
-#: ../DistUpgrade/DistUpgrade.glade.h:12
+#: ../DistUpgrade/DistUpgrade.glade.h:13
msgid "Preparing the upgrade"
msgstr "正在准备升级"
-#: ../DistUpgrade/DistUpgrade.glade.h:13
+#: ../DistUpgrade/DistUpgrade.glade.h:14
msgid "Restarting the system"
msgstr "正在重启系统"
-#: ../DistUpgrade/DistUpgrade.glade.h:14
+#: ../DistUpgrade/DistUpgrade.glade.h:15
msgid "Terminal"
msgstr "终端"
-#: ../DistUpgrade/DistUpgrade.glade.h:15
+#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
msgstr "升级Ubuntu"
-#: ../DistUpgrade/DistUpgrade.glade.h:16
+#: ../DistUpgrade/DistUpgrade.glade.h:17
+msgid "_Keep"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "重新载入(_R)"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
msgstr "报告Bug(_R)"
-#: ../DistUpgrade/DistUpgrade.glade.h:17
+#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
msgstr "现在重启(_R)"
-#: ../DistUpgrade/DistUpgrade.glade.h:18
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr "继续升级(_R)"
@@ -441,11 +498,13 @@ msgid ""
msgstr ""
"你必须手动检测升级\n"
"\n"
-"你的系统未自动检测升级。你可以通过编辑\"系统\" -> \"管理\" -> \"软件性能\"改变."
+"你的系统未自动检测升级。你可以通过编辑\"系统\" -> \"管理\" -> \"软件性能\"改"
+"变."
#: ../data/UpdateManager.glade.h:4
+#, fuzzy
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -467,52 +526,57 @@ msgid "Changes"
msgstr "更改"
#: ../data/UpdateManager.glade.h:10
-msgid "Check for available updates"
-msgstr "检查有效的更新"
+#, fuzzy
+msgid "Chec_k"
+msgstr "检查(_C)"
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "描述"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr "发布说明"
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr "显示详情"
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "显示单个文件进度"
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "软件更新"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr "软件更行可以为你修复错误,消除安全漏洞及提供新的特性"
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr "升级(_p)"
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr "升级到最新版本的Ubuntu"
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr "检查(_C)"
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr "在以后隐藏该信息(_H)"
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
msgstr "安装更新(_I)"
@@ -557,7 +621,9 @@ msgid ""
"Only security updates from the official Ubuntu servers will be installed "
"automatically. The software package \"unattended-upgrades\" needs to be "
"installed therefor"
-msgstr "只有来自官方Ubuntu服务器的安全更新才会被自动安装。为此,名为\"unattended-upgrades\"软件包需要被安装。"
+msgstr ""
+"只有来自官方Ubuntu服务器的安全更新才会被自动安装。为此,名为\"unattended-"
+"upgrades\"软件包需要被安装。"
#: ../data/SoftwareProperties.glade.h:11
msgid "Restore _Defaults"
@@ -576,7 +642,8 @@ msgid "_Check for updates automatically:"
msgstr "自动检查更新(_C)"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+#, fuzzy
+msgid "_Download updates in the background, but do not install them"
msgstr "在后台下载更新,但是不安装(_D)"
#: ../data/SoftwareProperties.glade.h:16
@@ -609,12 +676,13 @@ msgid "Comment:"
msgstr "注释:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "发行版:"
+#, fuzzy
+msgid "Components:"
+msgstr "组件"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "节:"
+msgid "Distribution:"
+msgstr "发行版:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
msgid "Sections"
@@ -630,14 +698,15 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
"输入你想增加的完整的频道 APT 命令行\n"
-"APT 命令行包含频道的类型,位置和部分,例如:\"deb http://ftp.debian.org sarge main\"。"
+"APT 命令行包含频道的类型,位置和部分,例如:\"deb http://ftp.debian.org "
+"sarge main\"。"
#: ../data/SoftwarePropertiesDialogs.glade.h:18
msgid "APT line:"
@@ -665,8 +734,7 @@ msgstr "正在扫描CD-ROM"
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] "添加路径(_A)"
+msgstr "添加路径(_A)"
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -689,7 +757,9 @@ 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 "如果自动检查更新被禁用,你将不得不手动重载频道列表。本选项允许隐藏此种情况下要出现的提醒语。"
+msgstr ""
+"如果自动检查更新被禁用,你将不得不手动重载频道列表。本选项允许隐藏此种情况下"
+"要出现的提醒语。"
#: ../data/update-manager.schemas.in.h:2
msgid "Remind to reload the channel list"
@@ -713,101 +783,137 @@ msgstr "储存包含变动和描述列表的扩展器的状态"
msgid "The window size"
msgstr "窗口大小"
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
-msgstr ""
-"http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Ubuntu.info.in:6
-msgid "Ubuntu 6.04 'Dapper Drake'"
+#, fuzzy
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 6.04 'Dapper Drake'"
+#. Description
#: ../channels/Ubuntu.info.in:23
-msgid "Ubuntu 6.04 Security Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Ubuntu 6.04 安全更新"
+#. Description
#: ../channels/Ubuntu.info.in:40
-msgid "Ubuntu 6.04 Updates"
+#, fuzzy
+msgid "Ubuntu 6.06 Updates"
msgstr "Ubuntu 6.04 更新"
+#. Description
#: ../channels/Ubuntu.info.in:57
-msgid "Ubuntu 6.04 Backports"
+#, fuzzy
+msgid "Ubuntu 6.06 Backports"
msgstr "Ubuntu 6.04 移植"
+#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 'Breezy Badger'"
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 安全更新"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 更新"
+#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 移植"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
msgstr "官方支持"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "版权限制"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "社区维护(Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "非自由(Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 \"Sarge\""
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr "http://security.debian.org/"
+#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Debian 3.1 \"Sarge\" 安全更新"
+#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
msgstr "Debian \"Etch\" (测试)"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr "http://http.us.debian.org/debian/"
+#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian \"Sid\" (非稳定)"
-#: ../channels/Debian.info.in:51
-msgid "Oficially supported"
-msgstr "官方支持"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr "带有非自由依赖关系的DFSG兼容软件"
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr "非DFSG兼容软件"
+#~ msgid "Downloading file %li of %li at unknown speed"
+#~ msgstr "正在下载文件%li来自%li速度未知"
+
+#~ msgid "Installing updates"
+#~ msgstr "安装更新"
+
+#~ msgid "Check for available updates"
+#~ msgstr "检查有效的更新"
+
+#~ msgid "Sections:"
+#~ msgstr "节:"
+
+#~ msgid "Oficially supported"
+#~ msgstr "官方支持"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "从服务器重新装入软件包信息。"
@@ -839,9 +945,6 @@ msgstr "非DFSG兼容软件"
#~ msgid "Packages to install:"
#~ msgstr "要安装的软件包:"
-#~ msgid "Components"
-#~ msgstr "组件"
-
#~ msgid "Repository"
#~ msgstr "仓库"
@@ -887,9 +990,6 @@ msgstr "非DFSG兼容软件"
#~ msgid "Version %s: \n"
#~ msgstr "版本 %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "正在下载更改..."
-
#~ msgid "The updates are being applied."
#~ msgstr "更新已经应用。"
@@ -955,4 +1055,4 @@ msgstr "非DFSG兼容软件"
#~ msgstr "美国限制出口的软件"
#~ msgid "Repositories changed"
-#~ msgstr "仓库已变更"
\ No newline at end of file
+#~ msgstr "仓库已变更"
diff --git a/po/zh_HK.po b/po/zh_HK.po
index 9d70cc15..8b89dbb0 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: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-23 00:20+0000\n"
"Last-Translator: Abel Cheung \n"
"Language-Team: Chinese (traditional) \n"
@@ -15,38 +15,37 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "匯入指定檔案時發生錯誤"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "選定的檔案可能不是 GPG 密碼匙,或者內容已損壞。"
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "移除密碼匙時發生錯誤"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr "你選定的密碼匙無法移除,請匯報問題。"
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -54,11 +53,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -80,6 +79,7 @@ msgstr ""
msgid "A essential package would have to be removed"
msgstr ""
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr ""
@@ -91,34 +91,36 @@ msgid ""
"this as a bug. "
msgstr "你選定的密碼匙無法移除,請匯報問題。 "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
#, fuzzy
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr "你選定的密碼匙無法移除,請匯報問題。 "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -131,42 +133,43 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
#, fuzzy
msgid "Error during update"
msgstr "移除密碼匙時發生錯誤"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -174,18 +177,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -198,162 +202,187 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Remove"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
#, fuzzy
msgid "Checking package manager"
msgstr "另一個套件管理員正在執行中"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
#, fuzzy
msgid "Upgrading"
msgstr "完成升級"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
#, fuzzy
-msgid "Installing updates"
-msgstr "正在安裝軟件更新..."
+msgid "Applying changes"
+msgstr "正在下載更改紀錄..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
#, fuzzy
msgid "The upgrade aborts now. Please report this bug."
msgstr "你選定的密碼匙無法移除,請匯報問題。"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
+#, python-format
msgid "Remove %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
+#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
+#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -361,6 +390,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -384,8 +414,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -398,38 +428,51 @@ msgid "Details"
msgstr "細節"
#: ../DistUpgrade/DistUpgrade.glade.h:10
-msgid "Downloading and installing the upgrades"
+msgid "Difference between the files"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:11
-msgid "Modifying the software channels"
+msgid "Downloading and installing the upgrades"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:12
-msgid "Preparing the upgrade"
+msgid "Modifying the software channels"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:13
-msgid "Restarting the system"
+msgid "Preparing the upgrade"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:14
-msgid "Terminal"
+msgid "Restarting the system"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:15
-msgid "Upgrading Ubuntu"
+msgid "Terminal"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:16
-msgid "_Report Bug"
+msgid "Upgrading Ubuntu"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:17
-msgid "_Restart Now"
+msgid "_Keep"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "重新載入"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr ""
@@ -443,7 +486,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -462,53 +505,56 @@ msgid "Changes"
msgstr "更改紀錄"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
-msgid "Check for available updates"
-msgstr "正在檢查更新套件..."
+msgid "Chec_k"
+msgstr ""
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "詳細說明"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "軟件更新"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr ""
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
msgstr "正在安裝軟件更新..."
@@ -580,7 +626,7 @@ msgid "_Check for updates automatically:"
msgstr "檢查軟件更新間隔:"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -611,12 +657,13 @@ msgid "Comment:"
msgstr "備註:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "發行版本:"
+#, fuzzy
+msgid "Components:"
+msgstr "元件"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "分類:"
+msgid "Distribution:"
+msgstr "發行版本:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
#, fuzzy
@@ -634,16 +681,16 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
#, fuzzy
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
"請輸入整行你想加入的 APT 軟件庫位置\n"
"\n"
-"該行的內容包括 APT 軟件庫的類型、位置和內容,例如: \"deb http://ftp.debian.org sarge "
-"main\"。你可以在文件中尋找有關該行的格式的詳細描述。"
+"該行的內容包括 APT 軟件庫的類型、位置和內容,例如: \"deb http://ftp."
+"debian.org sarge main\"。你可以在文件中尋找有關該行的格式的詳細描述。"
#: ../data/SoftwarePropertiesDialogs.glade.h:18
msgid "APT line:"
@@ -671,9 +718,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -721,111 +766,143 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
#, fuzzy
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 5.04 更新"
+#. Description
#: ../channels/Ubuntu.info.in:23
#, fuzzy
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Ubuntu 5.04 安全性更新"
+#. Description
#: ../channels/Ubuntu.info.in:40
#, fuzzy
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr "Ubuntu 5.10 更新"
+#. Description
#: ../channels/Ubuntu.info.in:57
#, fuzzy
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr "Ubuntu 5.10 更新"
+#. Description
#: ../channels/Ubuntu.info.in:74
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 光碟 “Breezy Badger”"
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 安全性更新"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 更新"
+#. Description
#: ../channels/Ubuntu.info.in:125
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 更新"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
#, fuzzy
msgid "Officially supported"
msgstr "官方支援"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "版權受限"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "協力維護軟件 (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "非自由軟件 (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 “Sarge”"
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
#, fuzzy
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Debian 穩定版安全性更新"
+#. Description
#: ../channels/Debian.info.in:34
#, fuzzy
msgid "Debian \"Etch\" (testing)"
msgstr "Debian 測試版"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
#, fuzzy
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian Non-US (不穩定版)"
-#: ../channels/Debian.info.in:51
-#, fuzzy
-msgid "Oficially supported"
-msgstr "官方支援"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr ""
+#, fuzzy
+#~ msgid "Installing updates"
+#~ msgstr "正在安裝軟件更新..."
+
+#, fuzzy
+#~ msgid "Check for available updates"
+#~ msgstr "正在檢查更新套件..."
+
+#~ msgid "Sections:"
+#~ msgstr "分類:"
+
+#, fuzzy
+#~ msgid "Oficially supported"
+#~ msgstr "官方支援"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "由伺服器重新載入套件資料。"
@@ -866,9 +943,6 @@ msgstr ""
#~ msgid "day(s)"
#~ msgstr "日"
-#~ msgid "Components"
-#~ msgstr "元件"
-
#~ msgid "Repository"
#~ msgstr "軟件庫"
@@ -886,12 +960,15 @@ msgstr ""
#~ msgstr ""
#~ "認證用密碼匙\n"
#~ "\n"
-#~ "你可以在本對話窗內加減認證用的密碼匙。這些密碼匙可以用來檢查下載的軟件是否完整。"
+#~ "你可以在本對話窗內加減認證用的密碼匙。這些密碼匙可以用來檢查下載的軟件是否"
+#~ "完整。"
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
-#~ msgstr "將新的密碼匙檔加入你信任的密碼匙圈之內。請確保該密碼匙是經安全的途徑獲得的,而且屬於你信任的擁有者。 "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
+#~ msgstr ""
+#~ "將新的密碼匙檔加入你信任的密碼匙圈之內。請確保該密碼匙是經安全的途徑獲得"
+#~ "的,而且屬於你信任的擁有者。 "
#~ msgid "Add repository..."
#~ msgstr "加入軟件庫..."
@@ -918,9 +995,10 @@ msgstr ""
#~ msgstr "大小上限 (MB):"
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
-#~ msgstr "將發行版本提供的預設密碼匙還原。這個程序不會更改用戶自行安裝的密碼匙。"
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
+#~ msgstr ""
+#~ "將發行版本提供的預設密碼匙還原。這個程序不會更改用戶自行安裝的密碼匙。"
#~ msgid "Set _maximum size for the package cache"
#~ msgstr "指定套件快取的大小上限(_M)"
@@ -949,8 +1027,8 @@ msgstr ""
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Available Updates\n"
#~ "\n"
@@ -1025,9 +1103,6 @@ msgstr ""
#~ msgid "Version %s: \n"
#~ msgstr "版本 %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "正在下載更改紀錄..."
-
#~ msgid "There are no updated packages"
#~ msgstr "沒有任何套件需要更新"
@@ -1043,7 +1118,8 @@ msgstr ""
#, fuzzy
#~ msgid "You have selected %s out of %s updated package, size %s"
-#~ msgid_plural "You have selected %s out of %s updated packages, total size %s"
+#~ msgid_plural ""
+#~ "You have selected %s out of %s updated packages, total size %s"
#~ msgstr[0] "你選取了 %2$s 個更新套件中的 %1$s 個,大小為 %3$s"
#~ msgstr[1] "你選取了 %2$s 個更新套件中的 %1$s 個,大小總共為 %3$s"
@@ -1051,8 +1127,8 @@ msgstr ""
#~ msgstr "現在安裝更新套件。"
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr "你在任何時候只可以執行一個套件管理員程式。請關閉其它程式。"
#~ msgid "Updating package list..."
@@ -1069,19 +1145,21 @@ msgstr ""
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
-#~ "請升級至新版本的 Ubuntu Linux。你現在用的版本不會再有任何安全性更新或重要的更新。有關升級的資料,請瀏覽 "
-#~ "http://www.ubuntulinux.org 。"
+#~ "請升級至新版本的 Ubuntu Linux。你現在用的版本不會再有任何安全性更新或重要"
+#~ "的更新。有關升級的資料,請瀏覽 http://www.ubuntulinux.org 。"
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "Ubuntu 已推出新版本!"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
-#~ msgstr "名稱為 “%s” 的新版本已經推出。請瀏覽 http://www.ubuntulinux.org/ 獲取有關升級的指引。"
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
+#~ msgstr ""
+#~ "名稱為 “%s” 的新版本已經推出。請瀏覽 http://www.ubuntulinux.org/ 獲取有關"
+#~ "升級的指引。"
#~ msgid "Never show this message again"
#~ msgstr "以後不再顯示此訊息"
@@ -1092,4 +1170,4 @@ msgstr ""
#~ msgid ""
#~ "Failed to download changes. Please check if there is an active internet "
#~ "connection."
-#~ msgstr "無法下載更改紀錄。請檢查網絡連線是否正常。"
\ No newline at end of file
+#~ msgstr "無法下載更改紀錄。請檢查網絡連線是否正常。"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index eb026544..02a9cb7f 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: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-03-22 23:28+0000\n"
+"POT-Creation-Date: 2006-04-07 21:25+0200\n"
"PO-Revision-Date: 2006-03-23 00:20+0000\n"
"Last-Translator: Abel Cheung \n"
"Language-Team: Chinese (traditional) \n"
@@ -15,38 +15,37 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../SoftwareProperties/SoftwareProperties.py:104
+#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:134
+#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:382
+#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:392
+#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
msgstr "匯入指定檔案時發生錯誤"
-#: ../SoftwareProperties/SoftwareProperties.py:393
+#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "選定的檔案可能不是 GPG 金鑰,或者內容已損壞。"
-#: ../SoftwareProperties/SoftwareProperties.py:405
+#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
msgstr "移除金鑰時發生錯誤"
-#: ../SoftwareProperties/SoftwareProperties.py:406
-msgid ""
-"The key you selected could not be removed. Please report this as a bug."
+#: ../SoftwareProperties/SoftwareProperties.py:437
+msgid "The key you selected could not be removed. Please report this as a bug."
msgstr "您選定的金鑰無法移除,請匯報問題。"
-#: ../SoftwareProperties/SoftwareProperties.py:447
+#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -54,11 +53,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:504
+#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:520
+#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -80,6 +79,7 @@ msgstr ""
msgid "A essential package would have to be removed"
msgstr ""
+#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
msgstr ""
@@ -91,34 +91,36 @@ msgid ""
"this as a bug. "
msgstr "您選定的金鑰無法移除,請匯報問題。 "
-#: ../DistUpgrade/DistUpgradeCache.py:168
+#. FIXME: maybe ask a question here? instead of failing?
+#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:169
+#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
"It was not possible to authenticate some packages. This may be a transient "
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:232
+#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:233
+#: ../DistUpgrade/DistUpgradeCache.py:234
#, fuzzy
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr "您選定的金鑰無法移除,請匯報問題。 "
-#: ../DistUpgrade/DistUpgradeCache.py:240
+#. FIXME: provide a list
+#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
msgstr ""
-#: ../DistUpgrade/DistUpgradeCache.py:241
+#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
"Your system does not contain a ubuntu-desktop, kubuntu-desktop or edubuntu-"
"desktop package and it was not possible to detect which version of ubuntu "
@@ -131,42 +133,43 @@ msgstr ""
msgid "Reading cache"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:107
+#. FIXME: offer to write a new self.sources.list entry
+#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:108
+#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:125
+#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:126
+#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:171
+#: ../DistUpgrade/DistUpgradeControler.py:170
#, fuzzy
msgid "Error during update"
msgstr "移除金鑰時發生錯誤"
-#: ../DistUpgrade/DistUpgradeControler.py:172
+#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:191
+#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:192
+#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
msgid ""
"The upgrade aborts now. Please free at least %s of disk space. Empty your "
@@ -174,18 +177,19 @@ msgid ""
"get clean'."
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:198
+#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:214
+#. installing the packages failed, can't be retried
+#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:215
+#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
-"The upgrade aborts now. Your system can be in an unusable state. Please try "
-"'sudo apt-get install -f' or Synaptic to fix your system."
+"The upgrade aborts now. Your system can be in an unusable state. A recovery "
+"is now run (dpkg --configure -a)."
msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -198,162 +202,187 @@ msgid ""
"installation media and try again. "
msgstr ""
+#: ../DistUpgrade/DistUpgradeControler.py:273
+msgid "Remove obsolete packages?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeControler.py:274
+msgid "_Skip This Step"
+msgstr ""
+
#: ../DistUpgrade/DistUpgradeControler.py:274
-msgid "Remove obsolete Packages?"
+msgid "_Remove"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:281
+#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:282
+#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
#. sanity check (check for ubuntu-desktop, brokenCache etc)
-#: ../DistUpgrade/DistUpgradeControler.py:296
-#: ../DistUpgrade/DistUpgradeControler.py:319
+#. then open the cache (again)
+#: ../DistUpgrade/DistUpgradeControler.py:299
+#: ../DistUpgrade/DistUpgradeControler.py:325
#, fuzzy
msgid "Checking package manager"
msgstr "另一個套件管理員正在執行中"
-#: ../DistUpgrade/DistUpgradeControler.py:311
+#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:325
+#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:329
+#: ../DistUpgrade/DistUpgradeControler.py:335
#, fuzzy
msgid "Upgrading"
msgstr "完成升級"
-#: ../DistUpgrade/DistUpgradeControler.py:336
+#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
msgstr ""
-#: ../DistUpgrade/DistUpgradeControler.py:341
+#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:77
+#. print "mediaChange %s %s" % (medium, drive)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:95
+#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:106
+#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:107
+#: ../DistUpgrade/DistUpgradeViewGtk.py:108
+#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:109
+#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
-msgid "Downloading file %li of %li at unknown speed"
+msgid "Downloading file %li of %li"
msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
-#: ../DistUpgrade/DistUpgradeViewGtk.py:135
+#. -> longer term, move this code into python-apt
+#: ../DistUpgrade/DistUpgradeViewGtk.py:140
#, fuzzy
-msgid "Installing updates"
-msgstr "正在安裝軟體更新..."
+msgid "Applying changes"
+msgstr "正在下載更改紀錄..."
-#: ../DistUpgrade/DistUpgradeViewGtk.py:148
+#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:149
+#: ../DistUpgrade/DistUpgradeViewGtk.py:158
#, fuzzy
msgid "The upgrade aborts now. Please report this bug."
msgstr "您選定的金鑰無法移除,請匯報問題。"
-#: ../DistUpgrade/DistUpgradeViewGtk.py:228
+#. self.expander.set_expanded(True)
+#: ../DistUpgrade/DistUpgradeViewGtk.py:171
+#, python-format
+msgid ""
+"Replace configuration file\n"
+"'%s'?"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:188
+msgid "The 'diff' command was not found"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:229
+#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
-"Please report this as a bug and include the files ~/dist-upgrade.log and "
-"~/dist-upgrade-apt.log in your report. The upgrade aborts now. "
+"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
+"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:311
+#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:317
+#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:323
+#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
msgstr[0] ""
msgstr[1] ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:330
+#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:334
+#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:337
+#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:343
+#. FIXME: this should go into DistUpgradeController
+#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:344
+#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:353
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:434
+#, python-format
msgid "Remove %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:355
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:436
+#, python-format
msgid "Install %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeViewGtk.py:357
-#, fuzzy
+#: ../DistUpgrade/DistUpgradeViewGtk.py:438
+#, python-format
msgid "Upgrade %s"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:67
+#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
msgstr ""
-#: ../DistUpgrade/DistUpgradeView.py:68
+#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
@@ -361,6 +390,7 @@ msgstr ""
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
#. view.setStep(i+1)
+#. app.openCache()
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
@@ -384,8 +414,8 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
-"Upgrading to Ubuntu \"Dapper\" "
-"6.04"
+"Upgrading to Ubuntu \"Dapper\" 6.06"
+"span>"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -398,38 +428,51 @@ msgid "Details"
msgstr "細節"
#: ../DistUpgrade/DistUpgrade.glade.h:10
-msgid "Downloading and installing the upgrades"
+msgid "Difference between the files"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:11
-msgid "Modifying the software channels"
+msgid "Downloading and installing the upgrades"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:12
-msgid "Preparing the upgrade"
+msgid "Modifying the software channels"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:13
-msgid "Restarting the system"
+msgid "Preparing the upgrade"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:14
-msgid "Terminal"
+msgid "Restarting the system"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:15
-msgid "Upgrading Ubuntu"
+msgid "Terminal"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:16
-msgid "_Report Bug"
+msgid "Upgrading Ubuntu"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:17
-msgid "_Restart Now"
+msgid "_Keep"
msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:18
+#, fuzzy
+msgid "_Replace"
+msgstr "重新載入"
+
+#: ../DistUpgrade/DistUpgrade.glade.h:19
+msgid "_Report Bug"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:20
+msgid "_Restart Now"
+msgstr ""
+
+#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
msgstr ""
@@ -443,7 +486,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:4
msgid ""
-"Checking for available updates\n"
+"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
@@ -462,53 +505,56 @@ msgid "Changes"
msgstr "更改紀錄"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
-msgid "Check for available updates"
-msgstr "正在檢查更新套件..."
+msgid "Chec_k"
+msgstr ""
#: ../data/UpdateManager.glade.h:11
+msgid "Check the software channels for new updates"
+msgstr ""
+
+#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "詳細說明"
-#: ../data/UpdateManager.glade.h:12
+#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:13
+#: ../data/UpdateManager.glade.h:14
msgid "Show details"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
+#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
-#: ../data/UpdateManager.glade.h:15
+#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
msgstr "軟體更新"
-#: ../data/UpdateManager.glade.h:16
+#: ../data/UpdateManager.glade.h:17
msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-#: ../data/UpdateManager.glade.h:17
+#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
msgstr ""
-#: ../data/UpdateManager.glade.h:18
+#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
msgstr ""
-#: ../data/UpdateManager.glade.h:19
+#: ../data/UpdateManager.glade.h:20
msgid "_Check"
msgstr ""
-#: ../data/UpdateManager.glade.h:20
+#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
msgstr ""
-#: ../data/UpdateManager.glade.h:21
+#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
msgstr "正在安裝軟體更新..."
@@ -580,7 +626,7 @@ msgid "_Check for updates automatically:"
msgstr "檢查軟體更新間隔:"
#: ../data/SoftwareProperties.glade.h:15
-msgid "_Download updates in the backgound, but do not install them"
+msgid "_Download updates in the background, but do not install them"
msgstr ""
#: ../data/SoftwareProperties.glade.h:16
@@ -611,12 +657,13 @@ msgid "Comment:"
msgstr "備註:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-msgid "Distribution:"
-msgstr "發行版本:"
+#, fuzzy
+msgid "Components:"
+msgstr "元件"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
-msgid "Sections:"
-msgstr "分類:"
+msgid "Distribution:"
+msgstr "發行版本:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
#, fuzzy
@@ -634,16 +681,16 @@ msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
#, fuzzy
msgid ""
-"Enter the complete APT line of the channel that you want to "
-"add\n"
+"Enter the complete APT line of the channel that you want to add"
+"big>\n"
"\n"
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
"請輸入整行您想加入的 APT 軟體庫位置\n"
"\n"
-"該行的內容包括 APT 軟體庫的類型、位置和內容,例如: \"deb http://ftp.debian.org sarge "
-"main\"。您可以在文件中尋找有關該行的格式的詳細描述。"
+"該行的內容包括 APT 軟體庫的類型、位置和內容,例如: \"deb http://ftp."
+"debian.org sarge main\"。您可以在文件中尋找有關該行的格式的詳細描述。"
#: ../data/SoftwarePropertiesDialogs.glade.h:18
msgid "APT line:"
@@ -671,9 +718,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgid_plural "_Add Channels"
-msgstr[0] ""
-msgstr[1] ""
+msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -721,111 +766,143 @@ msgstr ""
msgid "The window size"
msgstr ""
+#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Ubuntu.info.in:6
#, fuzzy
-msgid "Ubuntu 6.04 'Dapper Drake'"
+msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 5.04 更新"
+#. Description
#: ../channels/Ubuntu.info.in:23
#, fuzzy
-msgid "Ubuntu 6.04 Security Updates"
+msgid "Ubuntu 6.06 Security Updates"
msgstr "Ubuntu 5.04 安全性更新"
+#. Description
#: ../channels/Ubuntu.info.in:40
#, fuzzy
-msgid "Ubuntu 6.04 Updates"
+msgid "Ubuntu 6.06 Updates"
msgstr "Ubuntu 5.10 更新"
+#. Description
#: ../channels/Ubuntu.info.in:57
#, fuzzy
-msgid "Ubuntu 6.04 Backports"
+msgid "Ubuntu 6.06 Backports"
msgstr "Ubuntu 5.10 更新"
+#. Description
#: ../channels/Ubuntu.info.in:74
#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
msgstr "Ubuntu 5.10 光碟 “Breezy Badger”"
+#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
msgstr "Ubuntu 5.10 安全性更新"
+#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
msgstr "Ubuntu 5.10 更新"
+#. Description
#: ../channels/Ubuntu.info.in:125
#, fuzzy
msgid "Ubuntu 5.10 Backports"
msgstr "Ubuntu 5.10 更新"
-#: ../channels/Ubuntu.info.in:128
+#. CompDescription
+#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
#, fuzzy
msgid "Officially supported"
msgstr "官方支援"
+#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
msgstr "版權受限"
+#. CompDescription
#: ../channels/Ubuntu.info.in:134
msgid "Community maintained (Universe)"
msgstr "協力維護軟體 (Universe)"
+#. CompDescription
#: ../channels/Ubuntu.info.in:137
msgid "Non-free (Multiverse)"
msgstr "非自由軟體 (Multiverse)"
+#. ChangelogURI
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
msgstr "Debian 3.1 “Sarge”"
+#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:20
#, fuzzy
msgid "Debian 3.1 \"Sarge\" Security Updates"
msgstr "Debian 穩定版安全性更新"
+#. Description
#: ../channels/Debian.info.in:34
#, fuzzy
msgid "Debian \"Etch\" (testing)"
msgstr "Debian 測試版"
+#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
msgstr ""
+#. Description
#: ../channels/Debian.info.in:48
#, fuzzy
msgid "Debian \"Sid\" (unstable)"
msgstr "Debian Non-US (不穩定版)"
-#: ../channels/Debian.info.in:51
-#, fuzzy
-msgid "Oficially supported"
-msgstr "官方支援"
-
+#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
msgstr ""
+#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
msgstr ""
+#, fuzzy
+#~ msgid "Installing updates"
+#~ msgstr "正在安裝軟體更新..."
+
+#, fuzzy
+#~ msgid "Check for available updates"
+#~ msgstr "正在檢查更新套件..."
+
+#~ msgid "Sections:"
+#~ msgstr "分類:"
+
+#, fuzzy
+#~ msgid "Oficially supported"
+#~ msgstr "官方支援"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "由伺服器重新載入套件資料。"
@@ -866,9 +943,6 @@ msgstr ""
#~ msgid "day(s)"
#~ msgstr "日"
-#~ msgid "Components"
-#~ msgstr "元件"
-
#~ msgid "Repository"
#~ msgstr "軟體庫"
@@ -886,12 +960,15 @@ msgstr ""
#~ msgstr ""
#~ "認證用金鑰\n"
#~ "\n"
-#~ "您可以在本對話窗內加減認證用的金鑰。這些金鑰可以用來檢查下載的軟體是否完整。"
+#~ "您可以在本對話窗內加減認證用的金鑰。這些金鑰可以用來檢查下載的軟體是否完"
+#~ "整。"
#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received the "
-#~ "key over a secure channel and that you trust the owner. "
-#~ msgstr "將新的金鑰檔加入您信任的鑰匙圈之內。請確保該金鑰是經安全的途徑獲得的,而且屬於您信任的擁有者。 "
+#~ "Add a new key file to the trusted keyring. Make sure that you received "
+#~ "the key over a secure channel and that you trust the owner. "
+#~ msgstr ""
+#~ "將新的金鑰檔加入您信任的鑰匙圈之內。請確保該金鑰是經安全的途徑獲得的,而且"
+#~ "屬於您信任的擁有者。 "
#~ msgid "Add repository..."
#~ msgstr "加入軟體庫..."
@@ -918,8 +995,8 @@ msgstr ""
#~ msgstr "大小上限 (MB):"
#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not change "
-#~ "user installed keys."
+#~ "Restore the default keys shipped with the distribution. This will not "
+#~ "change user installed keys."
#~ msgstr "將發行版本提供的預設金鑰還原。這個程序不會更改用戶自行安裝的金鑰。"
#~ msgid "Set _maximum size for the package cache"
@@ -949,8 +1026,8 @@ msgstr ""
#~ msgid ""
#~ "Available Updates\n"
#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them by "
-#~ "using the Install button."
+#~ "The following packages are found to be upgradable. You can upgrade them "
+#~ "by using the Install button."
#~ msgstr ""
#~ "Available Updates\n"
#~ "\n"
@@ -1025,9 +1102,6 @@ msgstr ""
#~ msgid "Version %s: \n"
#~ msgstr "版本 %s: \n"
-#~ msgid "Downloading changes..."
-#~ msgstr "正在下載更改紀錄..."
-
#~ msgid "There are no updated packages"
#~ msgstr "沒有任何套件需要更新"
@@ -1043,7 +1117,8 @@ msgstr ""
#, fuzzy
#~ msgid "You have selected %s out of %s updated package, size %s"
-#~ msgid_plural "You have selected %s out of %s updated packages, total size %s"
+#~ msgid_plural ""
+#~ "You have selected %s out of %s updated packages, total size %s"
#~ msgstr[0] "您選取了 %2$s 個更新套件中的 %1$s 個,大小為 %3$s"
#~ msgstr[1] "您選取了 %2$s 個更新套件中的 %1$s 個,大小總共為 %3$s"
@@ -1051,8 +1126,8 @@ msgstr ""
#~ msgstr "現在安裝更新套件。"
#~ msgid ""
-#~ "You can run only one package management application at the same time. Please "
-#~ "close this other application first."
+#~ "You can run only one package management application at the same time. "
+#~ "Please close this other application first."
#~ msgstr "您在任何時候只可以執行一個套件管理員程式。請關閉其它程式。"
#~ msgid "Updating package list..."
@@ -1069,19 +1144,21 @@ msgstr ""
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. Please "
-#~ "see http://www.ubuntulinux.org for upgrade information."
+#~ "running will no longer get security fixes or other critical updates. "
+#~ "Please see http://www.ubuntulinux.org for upgrade information."
#~ msgstr ""
-#~ "請升級至新版本的 Ubuntu Linux。您現在用的版本不會再有任何安全性更新或重要的更新。有關升級的資訊,請瀏覽 "
-#~ "http://www.ubuntulinux.org 。"
+#~ "請升級至新版本的 Ubuntu Linux。您現在用的版本不會再有任何安全性更新或重要"
+#~ "的更新。有關升級的資訊,請瀏覽 http://www.ubuntulinux.org 。"
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "Ubuntu 已推出新版本!"
#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see "
-#~ "http://www.ubuntulinux.org/ for upgrade instructions."
-#~ msgstr "名稱為 “%s” 的新版本已經推出。請瀏覽 http://www.ubuntulinux.org/ 獲取有關升級的指引。"
+#~ "A new release with the codename '%s' is available. Please see http://www."
+#~ "ubuntulinux.org/ for upgrade instructions."
+#~ msgstr ""
+#~ "名稱為 “%s” 的新版本已經推出。請瀏覽 http://www.ubuntulinux.org/ 獲取有關"
+#~ "升級的指引。"
#~ msgid "Never show this message again"
#~ msgstr "以後不再顯示此訊息"
@@ -1092,4 +1169,4 @@ msgstr ""
#~ msgid ""
#~ "Failed to download changes. Please check if there is an active internet "
#~ "connection."
-#~ msgstr "無法下載更改紀錄。請檢查網路連線是否正常。"
\ No newline at end of file
+#~ msgstr "無法下載更改紀錄。請檢查網路連線是否正常。"
--
cgit v1.2.3
From 8dd37d4317dbbbe8ce51bb95bc0f295367603efa Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Mon, 10 Apr 2006 10:52:53 +0200
Subject: * po/POTFILES.in: added missing files * po/*: make update-po
---
debian/changelog | 1 +
po/POTFILES.in | 9 +-
po/bg.po | 248 +++++++++++++++++++++++++++++++++++++++------
po/br.po | 208 +++++++++++++++++++++++++++++++++++++-
po/cs.po | 225 +++++++++++++++++++++++++++++++++++++++--
po/da.po | 216 ++++++++++++++++++++++++++++++++++++++-
po/de.po | 274 ++++++++++++++++++++++++++++++++++++++++---------
po/el.po | 224 ++++++++++++++++++++++++++++++++++++++--
po/en_CA.po | 272 +++++++++++++++++++++++++++++++++++++++----------
po/en_GB.po | 268 +++++++++++++++++++++++++++++++++++++++---------
po/es.po | 274 ++++++++++++++++++++++++++++++++++++++++---------
po/fi.po | 271 ++++++++++++++++++++++++++++++++++++++++---------
po/fr.po | 274 ++++++++++++++++++++++++++++++++++++++++---------
po/gl.po | 248 +++++++++++++++++++++++++++++++++++++++------
po/he.po | 243 ++++++++++++++++++++++++++++++++++++++------
po/hu.po | 273 ++++++++++++++++++++++++++++++++++++++++---------
po/it.po | 248 ++++++++++++++++++++++++++++++++++++++++-----
po/ja.po | 267 +++++++++++++++++++++++++++++++++++++++---------
po/lt.po | 221 +++++++++++++++++++++++++++++++++++++++-
po/mk.po | 249 +++++++++++++++++++++++++++++++++++++++------
po/nb.po | 271 ++++++++++++++++++++++++++++++++++++++++---------
po/ne.po | 264 +++++++++++++++++++++++++++++++++++++++---------
po/nl.po | 208 +++++++++++++++++++++++++++++++++++++-
po/no.po | 266 +++++++++++++++++++++++++++++++++++++++---------
po/pa.po | 217 +++++++++++++++++++++++++++++++++++++--
po/pl.po | 275 +++++++++++++++++++++++++++++++++++++++++---------
po/pt.po | 228 +++++++++++++++++++++++++++++++++++++++--
po/pt_BR.po | 274 ++++++++++++++++++++++++++++++++++++++++---------
po/ro.po | 265 ++++++++++++++++++++++++++++++++++++++++--------
po/rw.po | 262 ++++++++++++++++++++++++++++++++++++++---------
po/sk.po | 213 +++++++++++++++++++++++++++++++++++++-
po/sv.po | 268 ++++++++++++++++++++++++++++++++++++++++--------
po/uk.po | 248 +++++++++++++++++++++++++++++++++++++++------
po/update-manager.pot | 208 +++++++++++++++++++++++++++++++++++++-
po/vi.po | 245 ++++++++++++++++++++++++++++++++++++++------
po/xh.po | 212 ++++++++++++++++++++++++++++++++++++--
po/zh_CN.po | 238 ++++++++++++++++++++++++++++++++++++++-----
po/zh_HK.po | 242 ++++++++++++++++++++++++++++++++++++++------
po/zh_TW.po | 242 ++++++++++++++++++++++++++++++++++++++------
39 files changed, 8042 insertions(+), 1117 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index ea48e906..08179c32 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
update-manager (0.42.2ubuntu12) dapper; urgency=low
* channels/*.in: typo fix
+ * po/POTFILES.in: add missing files (ubuntu: #38738)
--
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 2bb2cb6f..5fc754e5 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -6,6 +6,12 @@ DistUpgrade/DistUpgradeViewGtk.py
DistUpgrade/DistUpgradeView.py
DistUpgrade/dist-upgrade.py
DistUpgrade/DistUpgrade.glade
+UpdateManager/DistUpgradeFetcher.py
+UpdateManager/MetaRelease.py
+UpdateManager/fakegconf.py
+UpdateManager/ReleaseNotesViewer.py
+UpdateManager/GtkProgress.py
+UpdateManager/UpdateManager.py
data/UpdateManager.glade
data/SoftwareProperties.glade
data/SoftwarePropertiesDialogs.glade
@@ -13,4 +19,5 @@ data/update-manager.desktop.in
data/update-manager.schemas.in
[type: gettext/rfc822deb] channels/Ubuntu.info.in
[type: gettext/rfc822deb] channels/Debian.info.in
-[type: python] src/update-manager
+[type: python] update-manager
+[type: python] gnome-software-properties
diff --git a/po/bg.po b/po/bg.po
index 873e8737..a22a69bb 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-23 00:18+0000\n"
"Last-Translator: Rostislav Raykov \n"
"Language-Team: Bulgarian \n"
@@ -486,6 +486,221 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr ""
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Ключа, който сте избрали, не може да бъде премахнат. Докладвайте това като "
+"грешка. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Сваляне на промените"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+msgid "Upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Идентифициране"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+"Неуспех при сваляне на промените. Проверете дали има активна връзка към "
+"интернет."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Проверка за обновления..."
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "Версия %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Сваляне на промените"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "Програмите са обновени до последните версии!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Инсталиране на обновленията..."
+msgstr[1] "Инсталиране на обновленията..."
+
+#: ../UpdateManager/UpdateManager.py:439
+#, fuzzy, python-format
+msgid "Download size: %s"
+msgstr "Сваляне на промените"
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Допълнителна информация"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "Вашата дистрибуция вече не се поддържа"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -530,10 +745,6 @@ msgstr "Описание"
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
@@ -900,14 +1111,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#, fuzzy
-#~ msgid "Installing updates"
-#~ msgstr "Инсталиране на обновленията..."
-
-#, fuzzy
-#~ msgid "Check for available updates"
-#~ msgstr "Проверка за обновления..."
-
#~ msgid "Sections:"
#~ msgstr "Раздели:"
@@ -1053,9 +1256,6 @@ msgstr ""
#~ msgid "Cancel downloading the changelog"
#~ msgstr "Отказ на свалянето на дневника на промените"
-#~ msgid "Downloading Changes"
-#~ msgstr "Сваляне на промените"
-
#, fuzzy
#~ msgid "Debian sarge"
#~ msgstr "Debian 3.1 „Sarge“"
@@ -1125,18 +1325,12 @@ msgstr ""
#~ msgid "Choose a key-file"
#~ msgstr "Избор на ключов файл"
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "Програмите са обновени до последните версии!"
-
#~ msgid "There is one package available for updating."
#~ msgstr "Има един пакет наличен за обновяване."
#~ msgid "There are %s packages available for updating."
#~ msgstr "Има %s пакета налични за обновяване."
-#~ msgid "Version %s: \n"
-#~ msgstr "Версия %s: \n"
-
#~ msgid "There are no updated packages"
#~ msgstr "Няма пакети за обновяване"
@@ -1175,9 +1369,6 @@ msgstr ""
#~ msgid "New version:"
#~ msgstr "Нова версия:"
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "Вашата дистрибуция вече не се поддържа"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1202,10 +1393,3 @@ msgstr ""
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr "Няма открити промени. Сървърът може би не е обновен."
-
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Неуспех при сваляне на промените. Проверете дали има активна връзка към "
-#~ "интернет."
diff --git a/po/br.po b/po/br.po
index 8b561b8c..4a310507 100644
--- a/po/br.po
+++ b/po/br.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Breton
\n"
@@ -469,6 +469,208 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr ""
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+msgid "Downloading the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+msgid "Upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+msgid "Authentication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+msgid "Cannot install all available updates"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:390
+msgid "Downloading the list of changes..."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:428
+msgid "Your system is up-to-date"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:437
+#, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+msgid "Hide details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+msgid "Your distribution is not supported anymore"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -513,10 +715,6 @@ msgstr ""
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
diff --git a/po/cs.po b/po/cs.po
index ecfe543d..bde3d12e 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-26 19:43+0000\n"
"Last-Translator: Texis \n"
"Language-Team: Czech \n"
@@ -516,6 +516,222 @@ msgstr "_Restartovat nyní"
msgid "_Resume Upgrade"
msgstr "_Pokračovat v upgradu"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
+msgid "Could not find the release notes"
+msgstr "Žádné upgrady nebyly nalezeny."
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
+msgid "Could not download the release notes"
+msgstr "Nelze stáhnout upgrady"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
+msgid "Could not run the upgrade tool"
+msgstr "Nelze nainstalovat upgrady"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Při výpočtu upgradu nastal neřešitelný problém. Prosím oznamte to jako "
+"chybu. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Stahují a instalují se upgrady"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "Upgradovat %s"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Ověření"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr "Stahuji soubor %li z %li rychlostí %s/s"
+
+#: ../UpdateManager/GtkProgress.py:111
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr "Stahuji soubor %li z %li neznámou rychlostí"
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Zobrazit a nainstalovat dostupné aktualizace"
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Stahuji soubor %li z %li rychlostí %s/s"
+
+#: ../UpdateManager/UpdateManager.py:428
+msgid "Your system is up-to-date"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Zobrazit a nainstalovat dostupné aktualizace"
+msgstr[1] "Zobrazit a nainstalovat dostupné aktualizace"
+msgstr[2] "Zobrazit a nainstalovat dostupné aktualizace"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Zobrazit detaily"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr "Zobrazit detaily"
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
+msgid "Update is complete"
+msgstr "Stahování bylo dokončeno"
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+msgid "Your distribution is not supported anymore"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -570,10 +786,6 @@ msgstr "Popis"
msgid "Release Notes"
msgstr "Poznámky k vydáni"
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr "Zobrazit detaily"
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Zobrazit průběh stahování jednotlivých souborů"
@@ -935,9 +1147,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr "Žádný DFSG kompatibilní Software"
-#~ msgid "Downloading file %li of %li at unknown speed"
-#~ msgstr "Stahuji soubor %li z %li neznámou rychlostí"
-
#~ msgid "Installing updates"
#~ msgstr "Instaluji aktualizace"
diff --git a/po/da.po b/po/da.po
index 522cb919..25d17280 100644
--- a/po/da.po
+++ b/po/da.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-31 07:38+0000\n"
"Last-Translator: Lennart Hansen \n"
"Language-Team: Danish \n"
@@ -491,6 +491,216 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr ""
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
+msgid "Could not find the release notes"
+msgstr "Kan ikke installere opgraderingerne"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
+msgid "Could not download the release notes"
+msgstr "Kan ikke hente opgraderingerne"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
+msgid "Could not run the upgrade tool"
+msgstr "Kan ikke installere opgraderingerne"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Der er forkommet et uløseligt problem imens beregning af upgraderings tid. "
+"Raporter venligst denne fejl. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Kan ikke hente opgraderingerne"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+msgid "Upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+msgid "Authentication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Kan ikke installere opgraderingerne"
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:390
+msgid "Downloading the list of changes..."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:428
+msgid "Your system is up-to-date"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Kan ikke installere opgraderingerne"
+msgstr[1] "Kan ikke installere opgraderingerne"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+msgid "Hide details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+msgid "Your distribution is not supported anymore"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -535,10 +745,6 @@ msgstr ""
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
diff --git a/po/de.po b/po/de.po
index 86ae3958..f2d2aa70 100644
--- a/po/de.po
+++ b/po/de.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-23 11:00+0000\n"
"Last-Translator: Julian Turner \n"
"Language-Team: German GNOME Translations \n"
@@ -532,6 +532,233 @@ msgstr "_Neu starten"
msgid "_Resume Upgrade"
msgstr "_Aktualisierung fortsetzen"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
+msgid "Could not find the release notes"
+msgstr "Konnte keine Aktualisierungen finden"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
+msgid "Could not download the release notes"
+msgstr "Konnte die Aktualisierungen nicht herunterladen"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
+msgid "Could not run the upgrade tool"
+msgstr "Konnte die Aktualisierungen nicht installieren"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Ein unlösbares Problem trat beim Ausrechnen der Aktualisierung auf. Bitte "
+"erstellen Sie hierfür einen Fehlerbericht. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Lade Aktualisierungen herunter und installiere"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "Aktualisiere %s"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "A_uthentifizierung"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr "Lade Datei %li von %li mit %s/s herunter"
+
+#: ../UpdateManager/GtkProgress.py:111
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr "Lade Datei %li von %li mit unbekannter Geschwindigkeit herunter"
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+"Das Herunterladen der Änderungen ist fehlgeschlagen. Bitte prüfen Sie, ob "
+"eine Internetverbindung besteht."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Verfügbare Aktualisierungen anzeigen und installieren"
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+#, fuzzy
+msgid "The following updates will be skipped:"
+msgstr "Die folgenden Pakete wurden nicht aktualisiert: "
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "Version %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Lade Datei %li von %li mit %s/s herunter"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "Das System ist auf dem aktuellen Stand!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Verfügbare Aktualisierungen anzeigen und installieren"
+msgstr[1] "Verfügbare Aktualisierungen anzeigen und installieren"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Details zeigen"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr "Details zeigen"
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
+msgid "Update is complete"
+msgstr "Herunterladen abgeschlossen"
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr "Geänderte Repositories"
+
+#: ../UpdateManager/UpdateManager.py:584
+#, fuzzy
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+"Die Repository-Informationen wurden geändert. Eine Sicherheitskopie der "
+"Datei »sources.list« wurde als »%s.save« gespeichert.\n"
+"\n"
+"Um die Änderungen zu übernehmen, müssen die Paketinformationen der Server "
+"neu abgerufen werden. Wollen Sie dies jetzt tun?"
+
+#: ../UpdateManager/UpdateManager.py:617
+#, fuzzy, python-format
+msgid "New version: %s (Size: %s)"
+msgstr "Neue Version: %s"
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "Diese Distribution wird nicht länger unterstützt"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -582,10 +809,6 @@ msgstr "Beschreibung"
msgid "Release Notes"
msgstr "Notizen zur Veröffentlichung"
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr "Details zeigen"
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Fortschritt der einzelnen Dateien anzeigen"
@@ -958,9 +1181,6 @@ msgstr "DFSG-kompatible Software mit unfreien Abhängigkeiten"
msgid "Non-DFSG-compatible Software"
msgstr "Nicht DFSG-kompatible Software"
-#~ msgid "Downloading file %li of %li at unknown speed"
-#~ msgstr "Lade Datei %li von %li mit unbekannter Geschwindigkeit herunter"
-
#~ msgid "Installing updates"
#~ msgstr "Aktualisierungen werden installiert"
@@ -1138,24 +1358,11 @@ msgstr "Nicht DFSG-kompatible Software"
#~ "notwendig sind. Verwenden Sie bitte die »Intelligente Aktualisierung« von "
#~ "Synaptic oder »apt-get dist-upgrade« zur Behebung des Problems."
-#~ msgid "The following packages are not upgraded: "
-#~ msgstr "Die folgenden Pakete wurden nicht aktualisiert: "
-
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr ""
#~ "Die Änderungen wurden nicht gefunden. Möglicherweise ist der Server noch "
#~ "nicht aktualisiert."
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Das Herunterladen der Änderungen ist fehlgeschlagen. Bitte prüfen Sie, ob "
-#~ "eine Internetverbindung besteht."
-
-#~ msgid "Version %s: \n"
-#~ msgstr "Version %s: \n"
-
#~ msgid "The updates are being applied."
#~ msgstr "Die Aktualisierungen werden ausgeführt."
@@ -1169,18 +1376,9 @@ msgstr "Nicht DFSG-kompatible Software"
#~ msgid "Updating package list..."
#~ msgstr "Paketliste wird aktualisiert..."
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "Das System ist auf dem aktuellen Stand!"
-
#~ msgid "There are no updates available."
#~ msgstr "Es sind keine Aktualisierungen verfügbar."
-#~ msgid "New version: %s"
-#~ msgstr "Neue Version: %s"
-
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "Diese Distribution wird nicht länger unterstützt"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1258,22 +1456,6 @@ msgstr "Nicht DFSG-kompatible Software"
#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image "
-#~ msgid "Repositories changed"
-#~ msgstr "Geänderte Repositories"
-
-#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources."
-#~ "list is stored in %s.save. \n"
-#~ "\n"
-#~ "You need to reload the package list from the servers for your changes to "
-#~ "take effect. Do you want to do this now?"
-#~ msgstr ""
-#~ "Die Repository-Informationen wurden geändert. Eine Sicherheitskopie der "
-#~ "Datei »sources.list« wurde als »%s.save« gespeichert.\n"
-#~ "\n"
-#~ "Um die Änderungen zu übernehmen, müssen die Paketinformationen der Server "
-#~ "neu abgerufen werden. Wollen Sie dies jetzt tun?"
-
#, fuzzy
#~ msgid ""
#~ "Available Updates\n"
diff --git a/po/el.po b/po/el.po
index ad7dbfac..8471985a 100644
--- a/po/el.po
+++ b/po/el.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: el\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-23 07:09+0000\n"
"Last-Translator: Kostas Papadimas \n"
"Language-Team: Greek \n"
@@ -526,6 +526,221 @@ msgstr "Επανε_κκίνηση τώρα"
msgid "_Resume Upgrade"
msgstr "_Συνέχεια αναβάθμισης"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
+msgid "Could not find the release notes"
+msgstr "Δεν βρέθηκαν αναβαθμίσεις"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
+msgid "Could not download the release notes"
+msgstr "Αδυναμία λήψης των αναβαθμίσεων"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
+msgid "Could not run the upgrade tool"
+msgstr "Αδυναμία εγκατάστασης των αναβαθμίσεων"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Συνέβηκε ένα ανεπίλυτο πρόβλημα κατά τον υπολογισμό της αναβάθμισης. "
+"Παρακαλώ αναφέρετε το ως σφάλμα. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Λήψη και εγκατάσταση των αναβαθμίσεων"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "Αναβάθμιση %s"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Πιστοποίηση"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr "Λήψη αρχείου %li από %li με %s/s"
+
+#: ../UpdateManager/GtkProgress.py:111
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr "Λήψη αρχείου %li από %li με άγνωστη ταχύτητα"
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Προβολή και εγκατάσταση διαθέσιμων ενημερώσεων"
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Λήψη αρχείου %li από %li με %s/s"
+
+#: ../UpdateManager/UpdateManager.py:428
+msgid "Your system is up-to-date"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Προβολή και εγκατάσταση διαθέσιμων ενημερώσεων"
+msgstr[1] "Προβολή και εγκατάσταση διαθέσιμων ενημερώσεων"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Εμφάνιση λεπτομερειών"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr "Εμφάνιση λεπτομερειών"
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
+msgid "Update is complete"
+msgstr "Η λήψη ολοκληρώθηκε"
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+msgid "Your distribution is not supported anymore"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -581,10 +796,6 @@ msgstr "Περιγραφή"
msgid "Release Notes"
msgstr "Σημειώσεις έκδοσης"
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr "Εμφάνιση λεπτομερειών"
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Εμφάνιση προόδου μοναδικών αρχείων"
@@ -950,9 +1161,6 @@ msgstr "Λογισμικό συμβατό με DFSG με μη Ελεύθερες
msgid "Non-DFSG-compatible Software"
msgstr "Λογισμικό μη συμβατό με DFSG"
-#~ msgid "Downloading file %li of %li at unknown speed"
-#~ msgstr "Λήψη αρχείου %li από %li με άγνωστη ταχύτητα"
-
#~ msgid "Installing updates"
#~ msgstr "Εγκατάσταση ενημερώσεων"
diff --git a/po/en_CA.po b/po/en_CA.po
index 040b0940..533ea694 100644
--- a/po/en_CA.po
+++ b/po/en_CA.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-23 00:18+0000\n"
"Last-Translator: Adam Weinberger \n"
"Language-Team: Canadian English \n"
@@ -484,6 +484,226 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr "Upgrade finished"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"The key you selected could not be removed. Please report this as a bug. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+msgid "Downloading the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "Upgrade finished"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "A_uthentication"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+"Failed to download changes. Please check if there is an active internet "
+"connection."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+msgid "Cannot install all available updates"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+#, fuzzy
+msgid "The following updates will be skipped:"
+msgstr "The following packages are not upgraded: "
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "Version %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Cancel downloading the ChangeLog"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "Your system is up-to-date!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Installing updates..."
+msgstr[1] "Installing updates..."
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Details"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr "Repositories changed"
+
+#: ../UpdateManager/UpdateManager.py:584
+#, fuzzy
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+"The repository information has changes. A backup copy of your sources.list "
+"is stored in %s.save. \n"
+"\n"
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+
+#: ../UpdateManager/UpdateManager.py:617
+#, fuzzy, python-format
+msgid "New version: %s (Size: %s)"
+msgstr "New version: %s"
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "Your distribution is no longer supported"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -528,10 +748,6 @@ msgstr "Description"
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
@@ -901,10 +1117,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#, fuzzy
-#~ msgid "Installing updates"
-#~ msgstr "Installing updates..."
-
#~ msgid "Sections:"
#~ msgstr "Sections:"
@@ -948,10 +1160,6 @@ msgstr ""
#~ msgid "Automatically check for updates"
#~ msgstr "Automatically check for software _updates."
-#, fuzzy
-#~ msgid "Cancel downloading of the changelog"
-#~ msgstr "Cancel downloading the ChangeLog"
-
#~ msgid "Choose a key-file"
#~ msgstr "Choose a key-file"
@@ -1066,22 +1274,9 @@ msgstr ""
#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
#~ "situation."
-#~ msgid "The following packages are not upgraded: "
-#~ msgstr "The following packages are not upgraded: "
-
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr "Changes not found, the server may not be updated yet."
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-
-#~ msgid "Version %s: \n"
-#~ msgstr "Version %s: \n"
-
#~ msgid "The updates are being applied."
#~ msgstr "The updates are being applied."
@@ -1095,18 +1290,9 @@ msgstr ""
#~ msgid "Updating package list..."
#~ msgstr "Updating package list..."
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "Your system is up-to-date!"
-
#~ msgid "There are no updates available."
#~ msgstr "There are no updates available."
-#~ msgid "New version: %s"
-#~ msgstr "New version: %s"
-
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "Your distribution is no longer supported"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1179,22 +1365,6 @@ msgstr ""
#~ msgid "Ubuntu CD Image Automatic Signing Key "
#~ msgstr "Ubuntu CD Image Automatic Signing Key "
-#~ msgid "Repositories changed"
-#~ msgstr "Repositories changed"
-
-#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources."
-#~ "list is stored in %s.save. \n"
-#~ "\n"
-#~ "You need to reload the package list from the servers for your changes to "
-#~ "take effect. Do you want to do this now?"
-#~ msgstr ""
-#~ "The repository information has changes. A backup copy of your sources."
-#~ "list is stored in %s.save. \n"
-#~ "\n"
-#~ "You need to reload the package list from the servers for your changes to "
-#~ "take effect. Do you want to do this now?"
-
#, fuzzy
#~ msgid ""
#~ "Available Updates\n"
diff --git a/po/en_GB.po b/po/en_GB.po
index 2e1e9c89..d1ad361c 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-23 00:18+0000\n"
"Last-Translator: Abigail Brady \n"
"Language-Team: \n"
@@ -483,6 +483,226 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr ""
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"The key you selected could not be removed. Please report this as a bug. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Downloading Changes"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+msgid "Upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "A_uthentication"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+"Failed to download changes. Please check if there is an active internet "
+"connection."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+msgid "Cannot install all available updates"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+#, fuzzy
+msgid "The following updates will be skipped:"
+msgstr "The following packages are not upgraded: "
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "Version %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Downloading Changes"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "Your system is up-to-date!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Installing updates..."
+msgstr[1] "Installing updates..."
+
+#: ../UpdateManager/UpdateManager.py:439
+#, fuzzy, python-format
+msgid "Download size: %s"
+msgstr "Downloading Changes"
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Details"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr "Repositories changed"
+
+#: ../UpdateManager/UpdateManager.py:584
+#, fuzzy
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+"The repository information has changes. A backup copy of your sources.list "
+"is stored in %s.save. \n"
+"\n"
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "Your distribution is no longer supported"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -527,10 +747,6 @@ msgstr "Description"
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
@@ -901,10 +1117,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#, fuzzy
-#~ msgid "Installing updates"
-#~ msgstr "Installing updates..."
-
#~ msgid "Sections:"
#~ msgstr "Sections:"
@@ -1051,9 +1263,6 @@ msgstr ""
#~ msgid "Cancel downloading the changelog"
#~ msgstr "Cancel downloading the changelog"
-#~ msgid "Downloading Changes"
-#~ msgstr "Downloading Changes"
-
#, fuzzy
#~ msgid "Debian sarge"
#~ msgstr "Debian 3.1 \"Sarge\""
@@ -1121,9 +1330,6 @@ msgstr ""
#~ msgid "Choose a key-file"
#~ msgstr "Choose a key-file"
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "Your system is up-to-date!"
-
#, fuzzy
#~ msgid "There is one package available for updating."
#~ msgstr "There are no updates available."
@@ -1132,9 +1338,6 @@ msgstr ""
#~ msgid "There are %s packages available for updating."
#~ msgstr "There are no updates available."
-#~ msgid "Version %s: \n"
-#~ msgstr "Version %s: \n"
-
#~ msgid "There are no updated packages"
#~ msgstr "There are no updated packages"
@@ -1173,9 +1376,6 @@ msgstr ""
#~ msgid "New version:"
#~ msgstr "New version:"
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "Your distribution is no longer supported"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1201,13 +1401,6 @@ msgstr ""
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr "Changes not found, the server may not be updated yet."
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-
#~ msgid "A_uthentication"
#~ msgstr "A_uthentication"
@@ -1217,22 +1410,6 @@ msgstr ""
#~ msgid "Ubuntu Update Manager"
#~ msgstr "Ubuntu Update Manager"
-#~ msgid "Repositories changed"
-#~ msgstr "Repositories changed"
-
-#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources."
-#~ "list is stored in %s.save. \n"
-#~ "\n"
-#~ "You need to reload the package list from the servers for your changes to "
-#~ "take effect. Do you want to do this now?"
-#~ msgstr ""
-#~ "The repository information has changes. A backup copy of your sources."
-#~ "list is stored in %s.save. \n"
-#~ "\n"
-#~ "You need to reload the package list from the servers for your changes to "
-#~ "take effect. Do you want to do this now?"
-
#~ msgid ""
#~ "This means that some dependencies of the installed packages are not "
#~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation."
@@ -1253,6 +1430,3 @@ msgstr ""
#~ "action (such as installing or removing packages) is required. Please use "
#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
#~ "situation."
-
-#~ msgid "The following packages are not upgraded: "
-#~ msgstr "The following packages are not upgraded: "
diff --git a/po/es.po b/po/es.po
index 7ba2d0f6..6d7accac 100644
--- a/po/es.po
+++ b/po/es.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: es\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-23 11:17+0000\n"
"Last-Translator: Ricardo Pérez López \n"
"Language-Team: Spanish \n"
@@ -531,6 +531,233 @@ msgstr "_Reiniciar ahora"
msgid "_Resume Upgrade"
msgstr "_Continuar actualización"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
+msgid "Could not find the release notes"
+msgstr "No se ha podido encontrar ninguna actualización"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
+msgid "Could not download the release notes"
+msgstr "No se han podido descargar las actualizaciones"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
+msgid "Could not run the upgrade tool"
+msgstr "No se han podido instalar las actualizaciones"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Ha ocurrido un problema imposible de resolver cuando se calculaba la "
+"actualización. Por favor, informe de ésto como un error: "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Descargando e instalando las actualizaciones"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "Actualizar %s"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Autenticación"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr "Descargando archivo %li de %li a %s/s"
+
+#: ../UpdateManager/GtkProgress.py:111
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr "Descargando archivo %li de %li a velocidad desconocida"
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+"Hubo un fallo al descargar el informe de cambios. Compruebe si tiene alguna "
+"conexión activa."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Muestra e instala las actualizaciones disponibles"
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+#, fuzzy
+msgid "The following updates will be skipped:"
+msgstr "Los siguientes paquetes no están actualizados: "
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "Versión %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Descargando archivo %li de %li a %s/s"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "¡Su sistema está actualizado!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Muestra e instala las actualizaciones disponibles"
+msgstr[1] "Muestra e instala las actualizaciones disponibles"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Mostrar detalles"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr "Mostrar detalles"
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
+msgid "Update is complete"
+msgstr "La descarga se ha completado"
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr "Hay cambios en los repositorios"
+
+#: ../UpdateManager/UpdateManager.py:584
+#, fuzzy
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+"La información del repositorio ha cambiado. Se guardará una copia de su "
+"sources.list en %s.save. \n"
+"\n"
+"Necesita recargar la lista de paquetes de los servidores para que sus "
+"cambios hagan efecto. ¿Quiere hacer esto ahora?"
+
+#: ../UpdateManager/UpdateManager.py:617
+#, fuzzy, python-format
+msgid "New version: %s (Size: %s)"
+msgstr "Nueva versión: %s"
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "Su distribución ya no esta soportada"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -586,10 +813,6 @@ msgstr "Descripción"
msgid "Release Notes"
msgstr "Notas de publicación"
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr "Mostrar detalles"
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Mostrar el progreso de cada archivo individua"
@@ -956,9 +1179,6 @@ msgstr "Software compatible con la DFSG con dependencias no libres"
msgid "Non-DFSG-compatible Software"
msgstr "Software no compatible con la DFSG"
-#~ msgid "Downloading file %li of %li at unknown speed"
-#~ msgstr "Descargando archivo %li de %li a velocidad desconocida"
-
#~ msgid "Installing updates"
#~ msgstr "Instalando actualizaciones"
@@ -1127,24 +1347,11 @@ msgstr "Software no compatible con la DFSG"
#~ "Utilice la \"Actualización inteligente\" de synaptic o \"apt-get dist-"
#~ "upgrade\" para arreglar la situación."
-#~ msgid "The following packages are not upgraded: "
-#~ msgstr "Los siguientes paquetes no están actualizados: "
-
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr ""
#~ "No se ha encontrado el informe de cambios, puede que el servidor no este "
#~ "actualizado aún."
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Hubo un fallo al descargar el informe de cambios. Compruebe si tiene "
-#~ "alguna conexión activa."
-
-#~ msgid "Version %s: \n"
-#~ msgstr "Versión %s: \n"
-
#~ msgid "The updates are being applied."
#~ msgstr "Se están aplicando las actualizaciones."
@@ -1158,18 +1365,9 @@ msgstr "Software no compatible con la DFSG"
#~ msgid "Updating package list..."
#~ msgstr "Actualizando lista de paquetes..."
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "¡Su sistema está actualizado!"
-
#~ msgid "There are no updates available."
#~ msgstr "No hay actualizaciones disponibles."
-#~ msgid "New version: %s"
-#~ msgstr "Nueva versión: %s"
-
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "Su distribución ya no esta soportada"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1246,22 +1444,6 @@ msgstr "Software no compatible con la DFSG"
#~ "Clave de firmado automático de las imágenes de CD de Ubuntu "
#~ ""
-#~ msgid "Repositories changed"
-#~ msgstr "Hay cambios en los repositorios"
-
-#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources."
-#~ "list is stored in %s.save. \n"
-#~ "\n"
-#~ "You need to reload the package list from the servers for your changes to "
-#~ "take effect. Do you want to do this now?"
-#~ msgstr ""
-#~ "La información del repositorio ha cambiado. Se guardará una copia de su "
-#~ "sources.list en %s.save. \n"
-#~ "\n"
-#~ "Necesita recargar la lista de paquetes de los servidores para que sus "
-#~ "cambios hagan efecto. ¿Quiere hacer esto ahora?"
-
#, fuzzy
#~ msgid ""
#~ "Available Updates\n"
diff --git a/po/fi.po b/po/fi.po
index 375b2e60..c3242a87 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-27 10:27+0000\n"
"Last-Translator: Marko Kervinen \n"
"Language-Team: Finnish \n"
@@ -521,6 +521,231 @@ msgstr "_Uudelleenkäynnistä nyt"
msgid "_Resume Upgrade"
msgstr "_Jatka päivitystä"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
+msgid "Could not find the release notes"
+msgstr "Päivityksiä ei löytynyt"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
+msgid "Could not download the release notes"
+msgstr "Ei voitu ladata päivityksiä"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
+msgid "Could not run the upgrade tool"
+msgstr "Ei voitu asentaa päivityksiä"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Tehtäessä päivitykseen liittyviä tarkistuksia tapahtui virhe jota ei voitu "
+"korjata. Ilmoita tästä virheraportilla. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Ladataan ja asennetaan päivityksiä"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "Päivitä %s"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Varmennus"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr "Ladataan tiedostoa %li/%li nopeudella %s/s"
+
+#: ../UpdateManager/GtkProgress.py:111
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr "Ladataan tiedostoa %li/%li tuntemattomalla nopeudella"
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr "Muutosten lataus epäonnistui. Tarkista, että Internet-yhteys toimii."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Näytä ja asenna saatavilla olevat päivitykset"
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+#, fuzzy
+msgid "The following updates will be skipped:"
+msgstr "Seuraavia paketteja ei päivitetä: "
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "Versio: %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Ladataan tiedostoa %li/%li nopeudella %s/s"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "Järjestelmäsi on ajan tasalla!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Näytä ja asenna saatavilla olevat päivitykset"
+msgstr[1] "Näytä ja asenna saatavilla olevat päivitykset"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Näytä yksityiskohdat"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr "Näytä yksityiskohdat"
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
+msgid "Update is complete"
+msgstr "Lataus on valmis"
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr "Varastot muuttuneet"
+
+#: ../UpdateManager/UpdateManager.py:584
+#, fuzzy
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+"Varastotiedoissa on muutoksia. Varmuuskopio tiedostosta sources.list on "
+"tallennettu nimellä %s.save. \n"
+"\n"
+"Ohjelmapakettien luettelo täytyy ladata uudelleen palvelimelta, jotta "
+"muutoksesi tulevat voimaan. Haluatko tehdä tämän nyt?"
+
+#: ../UpdateManager/UpdateManager.py:617
+#, fuzzy, python-format
+msgid "New version: %s (Size: %s)"
+msgstr "Uusi versio: %s"
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "Jakeluasi ei enää tueta"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -575,10 +800,6 @@ msgstr "Kuvaus"
msgid "Release Notes"
msgstr "Julkaisutiedot"
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr "Näytä yksityiskohdat"
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Näytä edistyminen yksittäisten tiedostojen osalta"
@@ -945,9 +1166,6 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgid "Remove obsolete Packages?"
#~ msgstr "Poista vanhentuneet paketit?"
-#~ msgid "Downloading file %li of %li at unknown speed"
-#~ msgstr "Ladataan tiedostoa %li/%li tuntemattomalla nopeudella"
-
#~ msgid "Installing updates"
#~ msgstr "Asennetaan päivityksiä"
@@ -1181,22 +1399,6 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgid "Choose a key-file"
#~ msgstr "Valitse avaintiedosto"
-#~ msgid "Repositories changed"
-#~ msgstr "Varastot muuttuneet"
-
-#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources."
-#~ "list is stored in %s.save. \n"
-#~ "\n"
-#~ "You need to reload the package list from the servers for your changes to "
-#~ "take effect. Do you want to do this now?"
-#~ msgstr ""
-#~ "Varastotiedoissa on muutoksia. Varmuuskopio tiedostosta sources.list on "
-#~ "tallennettu nimellä %s.save. \n"
-#~ "\n"
-#~ "Ohjelmapakettien luettelo täytyy ladata uudelleen palvelimelta, jotta "
-#~ "muutoksesi tulevat voimaan. Haluatko tehdä tämän nyt?"
-
#~ msgid ""
#~ "This means that some dependencies of the installed packages are not "
#~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation."
@@ -1218,21 +1420,9 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ "Synaptic-ohjelman \"Smart Upgrade\"-toimintoa tai \"apt-get dist-upgrade"
#~ "\"-komentoa korjataksesi ongelman."
-#~ msgid "The following packages are not upgraded: "
-#~ msgstr "Seuraavia paketteja ei päivitetä: "
-
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr "Muutoksia ei löytynyt, palvelinta ei ole ehkä vielä päivitetty."
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Muutosten lataus epäonnistui. Tarkista, että Internet-yhteys toimii."
-
-#~ msgid "Version %s: \n"
-#~ msgstr "Versio: %s: \n"
-
#~ msgid "The updates are being applied."
#~ msgstr "Päivityksiä asennetaan."
@@ -1246,18 +1436,9 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgid "Updating package list..."
#~ msgstr "Päivitetään pakettiluetteloa..."
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "Järjestelmäsi on ajan tasalla!"
-
#~ msgid "There are no updates available."
#~ msgstr "Päivityksiä ei saatavilla."
-#~ msgid "New version: %s"
-#~ msgstr "Uusi versio: %s"
-
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "Jakeluasi ei enää tueta"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
diff --git a/po/fr.po b/po/fr.po
index 3581ccca..75914ce5 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager 0.37.2\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-04-02 06:12+0000\n"
"Last-Translator: Alexandre Patenaude \n"
"Language-Team: French \n"
@@ -528,6 +528,233 @@ msgstr "_Redémarrer Maintenant"
msgid "_Resume Upgrade"
msgstr "_Reprendre la mise à jour"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
+msgid "Could not find the release notes"
+msgstr "Aucune mise à jour n'est disponible"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
+msgid "Could not download the release notes"
+msgstr "Les mises à jour n'ont pu être téléchargées"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
+msgid "Could not run the upgrade tool"
+msgstr "Les mises à jour n'ont pu être installées"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Un problème insoluble est apparu lors du calcul de la mise à jour. Merci de "
+"signaler ce bogue. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Téléchargement et installation des mises à jour"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "Mettre à jour %s"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Authentification"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr "Téléchargement du fichier %li sur %li à %s/s"
+
+#: ../UpdateManager/GtkProgress.py:111
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr "Téléchargement du fichier %li sur %li à une vitesse inconnue"
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+"Échec du téléchargement des changements. Veuillez vérifier que votre "
+"connexion internet est activée."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Afficher et installer les mises à jour disponibles"
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+#, fuzzy
+msgid "The following updates will be skipped:"
+msgstr "Les paquets suivants ne seront pas mis à jour : "
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "Version %s : \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Téléchargement du fichier %li sur %li à %s/s"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "Votre système est à jour !"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Afficher et installer les mises à jour disponibles"
+msgstr[1] "Afficher et installer les mises à jour disponibles"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Montrer les détails"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr "Montrer les détails"
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
+msgid "Update is complete"
+msgstr "Le téléchargement est terminé"
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr "Les dépôts ont été modifiés"
+
+#: ../UpdateManager/UpdateManager.py:584
+#, fuzzy
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+"Les informations des dépôts ont changés. Une sauvegarde de votre sources."
+"list à été copiée à %s.save. \n"
+" \n"
+"Vous devez recharger la liste des paquets depuis les serveurs pour que vos "
+"changements soient effectifs. Voulez-vous le faire maintenant ?"
+
+#: ../UpdateManager/UpdateManager.py:617
+#, fuzzy, python-format
+msgid "New version: %s (Size: %s)"
+msgstr "Nouvelle version : %s"
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "Votre distribution n'est plus supportée"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -584,10 +811,6 @@ msgstr "Description"
msgid "Release Notes"
msgstr "Notes de publication"
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr "Montrer les détails"
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Afficher l'avancement des fichiers individuels"
@@ -960,9 +1183,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
-#~ msgid "Downloading file %li of %li at unknown speed"
-#~ msgstr "Téléchargement du fichier %li sur %li à une vitesse inconnue"
-
#~ msgid "Installing updates"
#~ msgstr "Installation des mises à jour"
@@ -1133,24 +1353,11 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
#~ "utiliser Synaptic « Mise à jour intelligente » ou « apt-get dist-"
#~ "upgrade » pour régler la situation."
-#~ msgid "The following packages are not upgraded: "
-#~ msgstr "Les paquets suivants ne seront pas mis à jour : "
-
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr ""
#~ "Changements non trouvés, le serveur n'a peut-être pas encore été mis à "
#~ "jour."
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Échec du téléchargement des changements. Veuillez vérifier que votre "
-#~ "connexion internet est activée."
-
-#~ msgid "Version %s: \n"
-#~ msgstr "Version %s : \n"
-
#~ msgid "The updates are being applied."
#~ msgstr "Les mises à jour ont été appliquées."
@@ -1164,18 +1371,9 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
#~ msgid "Updating package list..."
#~ msgstr "Mise à jour de la liste des paquets..."
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "Votre système est à jour !"
-
#~ msgid "There are no updates available."
#~ msgstr "Aucune mise à jour n'est disponible."
-#~ msgid "New version: %s"
-#~ msgstr "Nouvelle version : %s"
-
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "Votre distribution n'est plus supportée"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1251,22 +1449,6 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
#~ msgstr ""
#~ "Clé de signature automatique des cédéroms Ubuntu "
-#~ msgid "Repositories changed"
-#~ msgstr "Les dépôts ont été modifiés"
-
-#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources."
-#~ "list is stored in %s.save. \n"
-#~ "\n"
-#~ "You need to reload the package list from the servers for your changes to "
-#~ "take effect. Do you want to do this now?"
-#~ msgstr ""
-#~ "Les informations des dépôts ont changés. Une sauvegarde de votre sources."
-#~ "list à été copiée à %s.save. \n"
-#~ " \n"
-#~ "Vous devez recharger la liste des paquets depuis les serveurs pour que "
-#~ "vos changements soient effectifs. Voulez-vous le faire maintenant ?"
-
#, fuzzy
#~ msgid ""
#~ "Available Updates\n"
diff --git a/po/gl.po b/po/gl.po
index b7964960..8446a221 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gl\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-23 00:18+0000\n"
"Last-Translator: Ignacio Casal Quinteiro \n"
"Language-Team: Galego\n"
@@ -488,6 +488,221 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr ""
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Non se pode quitar a clave que seleccionou. Por favor, reporte isto coma un "
+"erro. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Descargando cambios"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+msgid "Upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Autenticación"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+"Fallou ao descargar o informe de cambios. Comprobe se ten algunha conexión "
+"activa."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Comprobando se hai actualizacións..."
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "Versión %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Descargando cambios"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "O seu sistema está actualizado!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Instalando actualizacións..."
+msgstr[1] "Instalando actualizacións..."
+
+#: ../UpdateManager/UpdateManager.py:439
+#, fuzzy, python-format
+msgid "Download size: %s"
+msgstr "Descargando cambios"
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Detalles"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "A súa distribución xa non está soportada"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -532,10 +747,6 @@ msgstr "Descrición"
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
@@ -902,14 +1113,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#, fuzzy
-#~ msgid "Installing updates"
-#~ msgstr "Instalando actualizacións..."
-
-#, fuzzy
-#~ msgid "Check for available updates"
-#~ msgstr "Comprobando se hai actualizacións..."
-
#~ msgid "Sections:"
#~ msgstr "Seccións:"
@@ -1054,9 +1257,6 @@ msgstr ""
#~ msgid "Cancel downloading the changelog"
#~ msgstr "Cancelar a descarga do informe de cambios"
-#~ msgid "Downloading Changes"
-#~ msgstr "Descargando cambios"
-
#~ msgid "You need to be root to run this program"
#~ msgstr "Necesita ser root para executar este programa"
@@ -1111,18 +1311,12 @@ msgstr ""
#~ msgid "Choose a key-file"
#~ msgstr "Escolla un ficheiro de clave"
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "O seu sistema está actualizado!"
-
#~ msgid "There is one package available for updating."
#~ msgstr "Hai un paquete dispoñible para ser actualizado."
#~ msgid "There are %s packages available for updating."
#~ msgstr "Hai %s paquetes dispoñibles para ser actualizados."
-#~ msgid "Version %s: \n"
-#~ msgstr "Versión %s: \n"
-
#~ msgid "There are no updated packages"
#~ msgstr "Non hai paquetes actualizados"
@@ -1161,9 +1355,6 @@ msgstr ""
#~ msgid "New version:"
#~ msgstr "Nova versión:"
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "A súa distribución xa non está soportada"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1191,10 +1382,3 @@ msgstr ""
#~ msgstr ""
#~ "Non se atopou o informe de cambios, pode que o servidor non esté "
#~ "actualizado aínda."
-
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Fallou ao descargar o informe de cambios. Comprobe se ten algunha "
-#~ "conexión activa."
diff --git a/po/he.po b/po/he.po
index b2ab7794..b2d24451 100644
--- a/po/he.po
+++ b/po/he.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager.HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-25 18:19+0000\n"
"Last-Translator: Yaniv Abir \n"
"Language-Team: Hebrew \n"
@@ -483,6 +483,218 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr ""
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr "לא ניתן להסיר את המפתח שבחרת. אנא דווח על זה כבאג. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "מוריד שינוייים"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+msgid "Upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "אימות"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr "מוריד קובץ %li מתוך %li במהירות לא ידועה"
+
+#: ../UpdateManager/GtkProgress.py:111
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr "מוריד קובץ %li מתוך %li במהירות לא ידועה"
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr "נכשל בהורדת השינויים. אנא בדוק אם החיבור לאינטרנט עובד."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "בודק אם יש עדכונים..."
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "גרסה %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "מוריד שינוייים"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "המערכת שלך מעודכנת!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "מתקין עדכונים..."
+msgstr[1] "מתקין עדכונים..."
+
+#: ../UpdateManager/UpdateManager.py:439
+#, fuzzy, python-format
+msgid "Download size: %s"
+msgstr "מוריד שינוייים"
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "פרטים"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
+msgid "Update is complete"
+msgstr "ההורדה הושלמה"
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "ההפצה שלך כבר לא נתמכת, סליחה."
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -527,10 +739,6 @@ msgstr "תיאור"
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
@@ -896,14 +1104,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#, fuzzy
-#~ msgid "Installing updates"
-#~ msgstr "מתקין עדכונים..."
-
-#, fuzzy
-#~ msgid "Check for available updates"
-#~ msgstr "בודק אם יש עדכונים..."
-
#~ msgid "Sections:"
#~ msgstr "מחלקה:"
@@ -1045,9 +1245,6 @@ msgstr ""
#~ msgid "Cancel downloading the changelog"
#~ msgstr "בטל הורדת דו\"ח השינויים"
-#~ msgid "Downloading Changes"
-#~ msgstr "מוריד שינוייים"
-
#, fuzzy
#~ msgid "Debian sarge"
#~ msgstr "דביאן 3.1 \"סארג'\""
@@ -1109,18 +1306,12 @@ msgstr ""
#~ msgid "Choose a key-file"
#~ msgstr "בחר בקובץ מפתח"
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "המערכת שלך מעודכנת!"
-
#~ msgid "There is one package available for updating."
#~ msgstr "אפשר לעדכן חבילה אחת."
#~ msgid "There are %s packages available for updating."
#~ msgstr "אפשר לעדכן %s חבילות"
-#~ msgid "Version %s: \n"
-#~ msgstr "גרסה %s: \n"
-
#~ msgid "There are no updated packages"
#~ msgstr "אין חבילות מעודכנות"
@@ -1158,9 +1349,6 @@ msgstr ""
#~ msgid "New version:"
#~ msgstr "גרסה חדשה:"
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "ההפצה שלך כבר לא נתמכת, סליחה."
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1185,8 +1373,3 @@ msgstr ""
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr "שינויים לא נמצאו, השרת אולי לא מעודכן עדיין."
-
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr "נכשל בהורדת השינויים. אנא בדוק אם החיבור לאינטרנט עובד."
diff --git a/po/hu.po b/po/hu.po
index c3ebc87c..b533fec0 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager.HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-23 12:21+0000\n"
"Last-Translator: Tamás Nepusz \n"
"Language-Team: Hungarian \n"
@@ -519,6 +519,232 @@ msgstr "Újrain_dítás most"
msgid "_Resume Upgrade"
msgstr "Frissítés _folytatása"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
+msgid "Could not find the release notes"
+msgstr "Nincs elérhető frissítés"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
+msgid "Could not download the release notes"
+msgstr "A frissítések nem tölthetőek le"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
+msgid "Could not run the upgrade tool"
+msgstr "A frissítések nem telepíthetőek"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"A frissítés megtervezése közben feloldhatatlan probléma lépett fel. Kérem, "
+"jelentse ezt hibaként. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Frissítések letöltése és telepítése"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "%s frissítése"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Hitelesítés"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr "Fájlok letöltése (%li, összesen: %li), sebesség: %s/s"
+
+#: ../UpdateManager/GtkProgress.py:111
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr "Fájlok letöltése (%li, összesen: %li), sebesség: ismeretlen"
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+"Nem sikerült a módosításokat letölteni. Kérem ellenőrizze, hogy aktív-e az "
+"internetkapcsolata."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Rendelkezésre álló frissítések megjelenítése és telepítése"
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+#, fuzzy
+msgid "The following updates will be skipped:"
+msgstr "A következő csomagok nem lesznek frissítve: "
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "%s verzió: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Fájlok letöltése (%li, összesen: %li), sebesség: %s/s"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "A rendszere naprakész!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Rendelkezésre álló frissítések megjelenítése és telepítése"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Részletek megjelenítése"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr "Részletek megjelenítése"
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
+msgid "Update is complete"
+msgstr "A letöltés befejeződött"
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr "Megváltoztak a tárolók"
+
+#: ../UpdateManager/UpdateManager.py:584
+#, fuzzy
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+"A tárolóinformációk megváltoztak. A sources.list biztonsági másolata %s.save "
+"néven van elmentve.\n"
+"\n"
+"A csomaglistákat újra le kell tölteni a kiszolgálókról, hogy a változtatások "
+"életbe lépjenek. Meg akarja ezt tenni most?"
+
+#: ../UpdateManager/UpdateManager.py:617
+#, fuzzy, python-format
+msgid "New version: %s (Size: %s)"
+msgstr "Új verzió: %s"
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "A disztribúciója már nem támogatott"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -575,10 +801,6 @@ msgstr "Leírás"
msgid "Release Notes"
msgstr "Kiadási megjegyzések"
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr "Részletek megjelenítése"
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Egyes fájlok állapotának mutatása"
@@ -943,9 +1165,6 @@ msgstr "DFSG-kompatibilis szoftver nem-szabad függőségekkel"
msgid "Non-DFSG-compatible Software"
msgstr "Nem DFSG-kompatibilis szoftver"
-#~ msgid "Downloading file %li of %li at unknown speed"
-#~ msgstr "Fájlok letöltése (%li, összesen: %li), sebesség: ismeretlen"
-
#~ msgid "Installing updates"
#~ msgstr "Frissítések telepítése"
@@ -1115,23 +1334,10 @@ msgstr "Nem DFSG-kompatibilis szoftver"
#~ "a Synaptic \"Intelligens frissítés\" lehetőségét, vagy az \"apt-get dist-"
#~ "upgrade\" parancsot a probléma megoldására."
-#~ msgid "The following packages are not upgraded: "
-#~ msgstr "A következő csomagok nem lesznek frissítve: "
-
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr ""
#~ "Nem találhatóak módosítások, lehet, hogy a kiszolgáló még nem frissült."
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Nem sikerült a módosításokat letölteni. Kérem ellenőrizze, hogy aktív-e "
-#~ "az internetkapcsolata."
-
-#~ msgid "Version %s: \n"
-#~ msgstr "%s verzió: \n"
-
#~ msgid "The updates are being applied."
#~ msgstr "A frissítések alkalmazása folyamatban."
@@ -1145,18 +1351,9 @@ msgstr "Nem DFSG-kompatibilis szoftver"
#~ msgid "Updating package list..."
#~ msgstr "Csomaglista frissítése..."
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "A rendszere naprakész!"
-
#~ msgid "There are no updates available."
#~ msgstr "Nem állnak rendelkezésre frissítések."
-#~ msgid "New version: %s"
-#~ msgstr "Új verzió: %s"
-
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "A disztribúciója már nem támogatott"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1230,22 +1427,6 @@ msgstr "Nem DFSG-kompatibilis szoftver"
#~ msgid "Ubuntu CD Image Automatic Signing Key "
#~ msgstr "Ubuntu CD-kép automatikus aláírókulcs "
-#~ msgid "Repositories changed"
-#~ msgstr "Megváltoztak a tárolók"
-
-#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources."
-#~ "list is stored in %s.save. \n"
-#~ "\n"
-#~ "You need to reload the package list from the servers for your changes to "
-#~ "take effect. Do you want to do this now?"
-#~ msgstr ""
-#~ "A tárolóinformációk megváltoztak. A sources.list biztonsági másolata %s."
-#~ "save néven van elmentve.\n"
-#~ "\n"
-#~ "A csomaglistákat újra le kell tölteni a kiszolgálókról, hogy a "
-#~ "változtatások életbe lépjenek. Meg akarja ezt tenni most?"
-
#, fuzzy
#~ msgid ""
#~ "Available Updates\n"
diff --git a/po/it.po b/po/it.po
index 117c959a..143f480b 100644
--- a/po/it.po
+++ b/po/it.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-26 17:46+0000\n"
"Last-Translator: Maurizio Moriconi \n"
"Language-Team: Italian \n"
@@ -527,6 +527,226 @@ msgstr "_Riavvia ora"
msgid "_Resume Upgrade"
msgstr "_Riprendi l'aggiornamento"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
+msgid "Could not find the release notes"
+msgstr "Impossibile trovare aggiornamenti"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
+msgid "Could not download the release notes"
+msgstr "Impossibile scaricare gli aggiornamenti"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
+msgid "Could not run the upgrade tool"
+msgstr "Impossibile installare gli aggiornamenti"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Si è verificato un problema irrisolvibile calcolando l'aggiornamento. Per "
+"favore segnala questo come bug. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Download ed installazione degli aggiornamenti in corso"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "Aggiorna %s"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Autenticazione"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr "Download del file %li di %li a %s/s"
+
+#: ../UpdateManager/GtkProgress.py:111
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr "Download del file %li di %li a velocità sconosciuta"
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+"Impossibile scaricare le modifiche. Per favore controlla se c'è una "
+"connessione internet attiva."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Visualizza e installa gli aggiornamenti disponibili"
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "Versione %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Download modifiche in corso"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "Il tuo sistema è aggiornato!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Visualizza e installa gli aggiornamenti disponibili"
+msgstr[1] "Visualizza e installa gli aggiornamenti disponibili"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, fuzzy, python-format
+msgid "Download size: %s"
+msgstr "Download modifiche in corso"
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Visualizza dettagli"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr "Visualizza dettagli"
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
+msgid "Update is complete"
+msgstr "Download completato"
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "La tua distribuzione non è più supportata"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -577,10 +797,6 @@ msgstr "Descrizione"
msgid "Release Notes"
msgstr "Note alla Release"
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr "Visualizza dettagli"
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Visualizza avanzamento dei singoli file"
@@ -947,9 +1163,6 @@ msgstr "Software compatibile con le DFSG e con dipendenze non libere"
msgid "Non-DFSG-compatible Software"
msgstr "Software non compatibile con le DFSG"
-#~ msgid "Downloading file %li of %li at unknown speed"
-#~ msgstr "Download del file %li di %li a velocità sconosciuta"
-
#~ msgid "Installing updates"
#~ msgstr "Installazione degli aggiornamenti"
@@ -1101,9 +1314,6 @@ msgstr "Software non compatibile con le DFSG"
#~ msgid "Cancel downloading the changelog"
#~ msgstr "Cancella il download delle modifiche"
-#~ msgid "Downloading Changes"
-#~ msgstr "Download modifiche in corso"
-
#~ msgid "You need to be root to run this program"
#~ msgstr "Devi essere root per eseguire questo programma"
@@ -1158,18 +1368,12 @@ msgstr "Software non compatibile con le DFSG"
#~ msgid "Choose a key-file"
#~ msgstr "Scegli un file di chiave"
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "Il tuo sistema è aggiornato!"
-
#~ msgid "There is one package available for updating."
#~ msgstr "C'è un pacchetto disponibile per l'aggiornamento"
#~ msgid "There are %s packages available for updating."
#~ msgstr "Ci sono %s pacchetti disponibili per l'aggiornamento."
-#~ msgid "Version %s: \n"
-#~ msgstr "Versione %s: \n"
-
#~ msgid "There are no updated packages"
#~ msgstr "Non ci sono apacchetti aggiornati"
@@ -1208,9 +1412,6 @@ msgstr "Software non compatibile con le DFSG"
#~ msgid "New version:"
#~ msgstr "Nuova versione:"
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "La tua distribuzione non è più supportata"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1238,10 +1439,3 @@ msgstr "Software non compatibile con le DFSG"
#~ msgstr ""
#~ "Modifiche non trovate, il server potrebbe non essere stato ancora "
#~ "aggiornato."
-
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Impossibile scaricare le modifiche. Per favore controlla se c'è una "
-#~ "connessione internet attiva."
diff --git a/po/ja.po b/po/ja.po
index 4cf9ba53..961c9887 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: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-23 00:18+0000\n"
"Last-Translator: ikuya \n"
"Language-Team: Ubuntu-ja \n"
@@ -478,6 +478,222 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr ""
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr "選択したキーを削除できませんでした。バグとして報告してください。 "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+msgid "Downloading the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+msgid "Upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "認証"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+"変更点の取得に失敗しました。インターネットに接続されているか確認してくださ"
+"い。"
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+msgid "Cannot install all available updates"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+#, fuzzy
+msgid "The following updates will be skipped:"
+msgstr "これらのパッケージはアップグレードされません: "
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "バージョン %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "変更点の取得を中止"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "システムは最新の状態です!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "アップデートをインストール中..."
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "詳細"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr "リポジトリが変更されました"
+
+#: ../UpdateManager/UpdateManager.py:584
+#, fuzzy
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+"リポジトリ情報が変更されました。sources.listのバックアップを %s.save にコピー"
+"しました\n"
+"\n"
+"パッケージリストをサーバから再取得する必要があります。今すぐ実行しますか?"
+
+#: ../UpdateManager/UpdateManager.py:617
+#, fuzzy, python-format
+msgid "New version: %s (Size: %s)"
+msgstr "新しいバージョン: %s"
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "あなたのディストリビューションはすでにサポート対象外です。"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -522,10 +738,6 @@ msgstr "詳細"
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
@@ -891,10 +1103,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#, fuzzy
-#~ msgid "Installing updates"
-#~ msgstr "アップデートをインストール中..."
-
#~ msgid "Sections:"
#~ msgstr "セクション:"
@@ -938,10 +1146,6 @@ msgstr ""
#~ msgid "Automatically check for updates"
#~ msgstr "アップデートを自動的にチェックする(_U)"
-#, fuzzy
-#~ msgid "Cancel downloading of the changelog"
-#~ msgstr "変更点の取得を中止"
-
#~ msgid "Choose a key-file"
#~ msgstr "キーファイルを選択"
@@ -1073,21 +1277,6 @@ msgstr ""
#~ msgid "Ubuntu CD Image Automatic Signing Key "
#~ msgstr "Ubuntu CD Image Automatic Signing Key "
-#~ msgid "Repositories changed"
-#~ msgstr "リポジトリが変更されました"
-
-#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources."
-#~ "list is stored in %s.save. \n"
-#~ "\n"
-#~ "You need to reload the package list from the servers for your changes to "
-#~ "take effect. Do you want to do this now?"
-#~ msgstr ""
-#~ "リポジトリ情報が変更されました。sources.listのバックアップを %s.save にコ"
-#~ "ピーしました\n"
-#~ "\n"
-#~ "パッケージリストをサーバから再取得する必要があります。今すぐ実行しますか?"
-
#~ msgid ""
#~ "This means that some dependencies of the installed packages are not "
#~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation."
@@ -1108,24 +1297,11 @@ msgstr ""
#~ "処がいるようです。Synaptic \"Smart Upgrade\"か\"apt-get dist-upgrade\"を実"
#~ "行して問題を修正してください。"
-#~ msgid "The following packages are not upgraded: "
-#~ msgstr "これらのパッケージはアップグレードされません: "
-
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr ""
#~ "変更点は見つかりませんでした。サーバはまだアップデートされていないようで"
#~ "す。"
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "変更点の取得に失敗しました。インターネットに接続されているか確認してくださ"
-#~ "い。"
-
-#~ msgid "Version %s: \n"
-#~ msgstr "バージョン %s: \n"
-
#~ msgid "The updates are being applied."
#~ msgstr "アップデートされました。"
@@ -1139,18 +1315,9 @@ msgstr ""
#~ msgid "Updating package list..."
#~ msgstr "アップデートされるパッケージのリスト..."
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "システムは最新の状態です!"
-
#~ msgid "There are no updates available."
#~ msgstr "アップデートするものはありません。"
-#~ msgid "New version: %s"
-#~ msgstr "新しいバージョン: %s"
-
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "あなたのディストリビューションはすでにサポート対象外です。"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
diff --git a/po/lt.po b/po/lt.po
index 4e160e8f..b3654f06 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-20 21:56+0000\n"
"Last-Translator: Žygimantas Beručka \n"
"Language-Team: Lithuanian \n"
@@ -488,6 +488,221 @@ msgstr "_Perkrauti dabar"
msgid "_Resume Upgrade"
msgstr "_Tęsti atnaujinimą"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
+msgid "Could not find the release notes"
+msgstr "Nepavyko rasti jokių atnaujinimų"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
+msgid "Could not download the release notes"
+msgstr "Nepavyko atsiųsti atnaujinimų"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
+msgid "Could not run the upgrade tool"
+msgstr "Nepavyko įdiegti atnaujinimų"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Jūsų pasirinkto rakto pašalinti nepavyko. Praneškite apie tai kaip klaidą."
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Atsiunčiami ir įdiegiami atnaujinimai"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "Atnaujinti %s"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Autentikacija"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr "Atsiunčiama rinkmena %li iš %li, %s/s greičiu"
+
+#: ../UpdateManager/GtkProgress.py:111
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr "Atsiunčiama rinkmena %li iš %li, %s/s greičiu"
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Rodyti ir įdiegti galimus atnaujinimus"
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Atsiunčiama rinkmena %li iš %li, %s/s greičiu"
+
+#: ../UpdateManager/UpdateManager.py:428
+msgid "Your system is up-to-date"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Rodyti ir įdiegti galimus atnaujinimus"
+msgstr[1] "Rodyti ir įdiegti galimus atnaujinimus"
+msgstr[2] "Rodyti ir įdiegti galimus atnaujinimus"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Rodyti detales"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr "Rodyti detales"
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
+msgid "Update is complete"
+msgstr "Atsiųsta"
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+msgid "Your distribution is not supported anymore"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -537,10 +752,6 @@ msgstr "Aprašymas"
msgid "Release Notes"
msgstr "Leidimo aprašymas"
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr "Rodyti detales"
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Rodyti pavienių rinkmenų progresą"
diff --git a/po/mk.po b/po/mk.po
index f086b544..998b7054 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mk\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-23 00:18+0000\n"
"Last-Translator: Арангел Ангов \n"
"Language-Team: Macedonian \n"
@@ -490,6 +490,222 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr ""
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова "
+"како бубачка. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Преземам промени"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+msgid "Upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Проверка"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+"Не успеав да ги преземам промените. Ве молам проверете дали Вашата интернет "
+"врска е активна."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Проверувам за надградби..."
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "Верзија %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Преземам промени"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "Вашиот систем е надграден!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Инсталирам надградби..."
+msgstr[1] "Инсталирам надградби..."
+msgstr[2] "Инсталирам надградби..."
+
+#: ../UpdateManager/UpdateManager.py:439
+#, fuzzy, python-format
+msgid "Download size: %s"
+msgstr "Преземам промени"
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Детали"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "Вашата дистрибуција повеќе не е поддржана"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -534,10 +750,6 @@ msgstr "Опис"
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
@@ -903,14 +1115,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#, fuzzy
-#~ msgid "Installing updates"
-#~ msgstr "Инсталирам надградби..."
-
-#, fuzzy
-#~ msgid "Check for available updates"
-#~ msgstr "Проверувам за надградби..."
-
#~ msgid "Sections:"
#~ msgstr "Оддели:"
@@ -1070,9 +1274,6 @@ msgstr ""
#~ msgid "Cancel downloading the changelog"
#~ msgstr "Откажи го преземањето на логот со промени"
-#~ msgid "Downloading Changes"
-#~ msgstr "Преземам промени"
-
#~ msgid "Reload"
#~ msgstr "Освежи"
@@ -1157,18 +1358,12 @@ msgstr ""
#~ msgid "Choose a key-file"
#~ msgstr "Одберете датотека за клуч"
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "Вашиот систем е надграден!"
-
#~ msgid "There is one package available for updating."
#~ msgstr "Има еден достапен пакет за надградба."
#~ msgid "There are %s packages available for updating."
#~ msgstr "Има %s достапни пакети за надградба."
-#~ msgid "Version %s: \n"
-#~ msgstr "Верзија %s: \n"
-
#~ msgid "There are no updated packages"
#~ msgstr "Нема надградени пакети"
@@ -1222,9 +1417,6 @@ msgstr ""
#~ msgid "New version:"
#~ msgstr "Нова верзија:"
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "Вашата дистрибуција повеќе не е поддржана"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1250,10 +1442,3 @@ msgstr ""
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr "Не се пронајдени промени, серверот може да не е надграден сеуште."
-
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Не успеав да ги преземам промените. Ве молам проверете дали Вашата "
-#~ "интернет врска е активна."
diff --git a/po/nb.po b/po/nb.po
index 37d7416c..608bb9d5 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: nb\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-26 14:48+0000\n"
"Last-Translator: Ingar Saltvik \n"
"Language-Team: Norwegian Bokmal \n"
@@ -523,6 +523,231 @@ msgstr "_Omstart nå"
msgid "_Resume Upgrade"
msgstr "_Gjenoppta oppgradering"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
+msgid "Could not find the release notes"
+msgstr "Kunne ikke finne noen oppgraderinger"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
+msgid "Could not download the release notes"
+msgstr "Kunne ikke laste ned alle oppgraderingene."
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
+msgid "Could not run the upgrade tool"
+msgstr "Kunne ikke installere oppgraderingene"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Et uopprettelig problem oppstå ved forberedelse av oppgraderingen. Vennligst "
+"rapporter dette som en feil. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Laster ned og installerer oppgraderingene"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "Oppgradèr %s"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Autentisering"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr "Laster ned fil %li av %li med %s/s"
+
+#: ../UpdateManager/GtkProgress.py:111
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr "Laster ned fil %li av %li med ukjent hastighet"
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr "Feil under nedlasting av endringer. Sjekk tilkoblingen til internett."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Vis og installèr tilgjengelige oppdateringer"
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+#, fuzzy
+msgid "The following updates will be skipped:"
+msgstr "De følgende pakkene er ikke oppgradert: "
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "Versjon %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Laster ned endringer"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "Systemet er helt oppdatert!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Vis og installèr tilgjengelige oppdateringer"
+msgstr[1] "Vis og installèr tilgjengelige oppdateringer"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, fuzzy, python-format
+msgid "Download size: %s"
+msgstr "Laster ned endringer"
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Vis detaljer"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr "Vis detaljer"
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
+msgid "Update is complete"
+msgstr "Nedlastingen er fullført"
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr "Arkiv har blitt endret"
+
+#: ../UpdateManager/UpdateManager.py:584
+#, fuzzy
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+"Arkivinformasjonen har blitt endret. En sikkerhetskopi av «sources.list»-"
+"filen er lagret i %s.save.\n"
+"\n"
+"Du må oppdatere pakkelisten fra tjenerene for at endringene skal tre i "
+"kraft. Vil du gjøre det nå?"
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "Din distribusjon er ikke lenger støttet"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -578,10 +803,6 @@ msgstr "Beskrivelse"
msgid "Release Notes"
msgstr "Utgivelsesinformasjon"
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr "Vis detaljer"
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Vis framgang for enkeltfiler"
@@ -945,9 +1166,6 @@ msgstr "DFSG-kompatiblel programvare med Non-Free avhengigheter"
msgid "Non-DFSG-compatible Software"
msgstr "Ikke-DFSG-kompatibel programvare"
-#~ msgid "Downloading file %li of %li at unknown speed"
-#~ msgstr "Laster ned fil %li av %li med ukjent hastighet"
-
#~ msgid "Installing updates"
#~ msgstr "Installerer oppdateringer"
@@ -1094,9 +1312,6 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgid "Cancel downloading the changelog"
#~ msgstr "Avbryt nedlasting av endringslogg"
-#~ msgid "Downloading Changes"
-#~ msgstr "Laster ned endringer"
-
#, fuzzy
#~ msgid "Debian sarge"
#~ msgstr "Debian 3.1 «Sarge»"
@@ -1164,9 +1379,6 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgid "Choose a key-file"
#~ msgstr "Velg en nøkkelfil"
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "Systemet er helt oppdatert!"
-
#, fuzzy
#~ msgid "There is one package available for updating."
#~ msgstr "Det er ingen tilgjengelige oppdateringer."
@@ -1175,9 +1387,6 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgid "There are %s packages available for updating."
#~ msgstr "Det er ingen tilgjengelige oppdateringer."
-#~ msgid "Version %s: \n"
-#~ msgstr "Versjon %s: \n"
-
#~ msgid "There are no updated packages"
#~ msgstr "Det er ingen utdaterte pakker"
@@ -1216,9 +1425,6 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgid "New version:"
#~ msgstr "Ny versjon:"
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "Din distribusjon er ikke lenger støttet"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1244,12 +1450,6 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr "Ingen endringer funnet, tjeneren er kanskje ikke oppdatert enda."
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Feil under nedlasting av endringer. Sjekk tilkoblingen til internett."
-
#~ msgid "A_uthentication"
#~ msgstr "A_utentisering"
@@ -1259,22 +1459,6 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgid "Ubuntu Update Manager"
#~ msgstr "Ubuntu oppdateringshåndterer"
-#~ msgid "Repositories changed"
-#~ msgstr "Arkiv har blitt endret"
-
-#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources."
-#~ "list is stored in %s.save. \n"
-#~ "\n"
-#~ "You need to reload the package list from the servers for your changes to "
-#~ "take effect. Do you want to do this now?"
-#~ msgstr ""
-#~ "Arkivinformasjonen har blitt endret. En sikkerhetskopi av «sources.list»-"
-#~ "filen er lagret i %s.save.\n"
-#~ "\n"
-#~ "Du må oppdatere pakkelisten fra tjenerene for at endringene skal tre i "
-#~ "kraft. Vil du gjøre det nå?"
-
#~ msgid ""
#~ "This means that some dependencies of the installed packages are not "
#~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation."
@@ -1294,6 +1478,3 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ "Dette betyr at ved siden av å oppgradere pakkene kreves det ekstra "
#~ "handling (som å installere eller fjerne pakker). Bruk «Synaptic» eller "
#~ "«apt-get dist-upgrade» for å løse problemet."
-
-#~ msgid "The following packages are not upgraded: "
-#~ msgstr "De følgende pakkene er ikke oppgradert: "
diff --git a/po/ne.po b/po/ne.po
index de418abb..73c023bf 100644
--- a/po/ne.po
+++ b/po/ne.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager.HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-23 00:19+0000\n"
"Last-Translator: Jaydeep Bhusal \n"
"Language-Team: Nepali \n"
@@ -480,6 +480,223 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr ""
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "परिवर्तनहरु डाउनलोड गर्दै"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+msgid "Upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "प्रमाणिकरण"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr "परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस"
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+msgid "Cannot install all available updates"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+#, fuzzy
+msgid "The following updates will be skipped:"
+msgstr "निम्न प्याकेजहरु स्तरवृद्धि गरिएको छैन "
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "संस्करण %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "परिवर्तनहरु डाउनलोड गर्दै"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "तपाइं को प्रणालि अप-टु-डेट छ!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "स्तरवृद्धिहरु स्थापना गर्दै"
+msgstr[1] "स्तरवृद्धिहरु स्थापना गर्दै"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, fuzzy, python-format
+msgid "Download size: %s"
+msgstr "परिवर्तनहरु डाउनलोड गर्दै"
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "विवरणहरु"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr "कोषहरु परिवर्तित"
+
+#: ../UpdateManager/UpdateManager.py:584
+#, fuzzy
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+"कोष जानकारी संग परिवर्तनहरु छन. %s मा तपाईंको स्रोतहरु को सुची को ब्याकअप प्रति "
+"भण्डारण गरिएको छ. बचत गर्नुहोस. \n"
+"\n"
+"तपाईको परिवर्तनहरुले प्रभाव लिनको लागि तपाईंले सर्भरहरु बाट प्याकेज सुची फेरि लोड "
+"गर्नुपर्दछ. के तपाईं यो अहिले गर्न चाहनुहुन्छ?"
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "तपाईंको वितरण समर्थित छैन"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -524,10 +741,6 @@ msgstr "बर्णन"
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
@@ -898,10 +1111,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#, fuzzy
-#~ msgid "Installing updates"
-#~ msgstr "स्तरवृद्धिहरु स्थापना गर्दै"
-
#~ msgid "Sections:"
#~ msgstr "सेक्सनहरु:"
@@ -1045,10 +1254,6 @@ msgstr ""
#~ msgid "Cancel downloading the changelog"
#~ msgstr "परिवर्तनलग को डाउनलोड रद्द गर्नुहोस"
-#, fuzzy
-#~ msgid "Downloading Changes"
-#~ msgstr "परिवर्तनहरु डाउनलोड गर्दै"
-
#, fuzzy
#~ msgid "Oficial Distribution"
#~ msgstr "वितरण:"
@@ -1091,9 +1296,6 @@ msgstr ""
#~ msgid "Choose a key-file"
#~ msgstr "एउटा कुञ्जि-फाइल रोज्नुहोस"
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "तपाइं को प्रणालि अप-टु-डेट छ!"
-
#, fuzzy
#~ msgid "There is one package available for updating."
#~ msgstr "कुनै स्तरवृद्धिहरु उपलब्ध छैन"
@@ -1102,9 +1304,6 @@ msgstr ""
#~ msgid "There are %s packages available for updating."
#~ msgstr "कुनै स्तरवृद्धिहरु उपलब्ध छैन"
-#~ msgid "Version %s: \n"
-#~ msgstr "संस्करण %s: \n"
-
#, fuzzy
#~ msgid "There are no updated packages"
#~ msgstr "कुनै स्तरवृद्धिहरु उपलब्ध छैन"
@@ -1129,9 +1328,6 @@ msgstr ""
#~ msgid "New version:"
#~ msgstr "नयाँ संस्करण: %s"
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "तपाईंको वितरण समर्थित छैन"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1157,11 +1353,6 @@ msgstr ""
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr "परिवर्तनहरु भेटिएन, सर्भर अझै स्तरवृद्धि नगरिएको हुन सक्दछ."
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr "परिवर्तनहरु डाउनलोड गर्न असफल. यदि सक्रिय इन्टरनेट जडान छ भने जाँच्नुहोस"
-
#~ msgid "Ubuntu Update Manager"
#~ msgstr "युबन्टु अद्यावधिक व्यवस्थापक"
@@ -1171,22 +1362,6 @@ msgstr ""
#~ msgid "CD"
#~ msgstr "सिडि"
-#~ msgid "Repositories changed"
-#~ msgstr "कोषहरु परिवर्तित"
-
-#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources."
-#~ "list is stored in %s.save. \n"
-#~ "\n"
-#~ "You need to reload the package list from the servers for your changes to "
-#~ "take effect. Do you want to do this now?"
-#~ msgstr ""
-#~ "कोष जानकारी संग परिवर्तनहरु छन. %s मा तपाईंको स्रोतहरु को सुची को ब्याकअप प्रति "
-#~ "भण्डारण गरिएको छ. बचत गर्नुहोस. \n"
-#~ "\n"
-#~ "तपाईको परिवर्तनहरुले प्रभाव लिनको लागि तपाईंले सर्भरहरु बाट प्याकेज सुची फेरि लोड "
-#~ "गर्नुपर्दछ. के तपाईं यो अहिले गर्न चाहनुहुन्छ?"
-
#~ msgid ""
#~ "This means that some dependencies of the installed packages are not "
#~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation."
@@ -1207,8 +1382,5 @@ msgstr ""
#~ "र विस्थापन) आवश्यक छ. कृपया स्थिति ठीक गर्नको लागि साइनाप्टिक \"स्मार्ट स्तरवृद्धि\" "
#~ "अथवा \"एपिटि-गेट डिस्ट-स्तरवृद्धि\" प्रयोग गर्नुहोस"
-#~ msgid "The following packages are not upgraded: "
-#~ msgstr "निम्न प्याकेजहरु स्तरवृद्धि गरिएको छैन "
-
#~ msgid "Initializing and getting list of updates..."
#~ msgstr "अद्यावधिकहरुको इनिसियलाइज गर्दै र सुची प्राप्त गर्दै"
diff --git a/po/nl.po b/po/nl.po
index d69fd6b7..c81baa63 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-18 12:07+0000\n"
"Last-Translator: Michiel Sikkes \n"
"Language-Team: Nederlands \n"
@@ -468,6 +468,208 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr ""
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+msgid "Downloading the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+msgid "Upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+msgid "Authentication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+msgid "Cannot install all available updates"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:390
+msgid "Downloading the list of changes..."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:428
+msgid "Your system is up-to-date"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:437
+#, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+msgid "Hide details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+msgid "Your distribution is not supported anymore"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -512,10 +714,6 @@ msgstr ""
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
diff --git a/po/no.po b/po/no.po
index c35238f4..081a41dd 100644
--- a/po/no.po
+++ b/po/no.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: nb\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2005-06-08 23:10+0200\n"
"Last-Translator: Terance Edward Sola \n"
"Language-Team: Norwegian Bokmal \n"
@@ -484,6 +484,225 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr ""
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Nøkkelen du valgte kan ikke bli fjernet. Vennligst rapporter denne feilen."
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Laster ned endringer"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "Oppgradering fullført"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Autentisering"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr "Feil under nedlasting av endringer. Sjekk tilkoblingen til internett."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+msgid "Cannot install all available updates"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+#, fuzzy
+msgid "The following updates will be skipped:"
+msgstr "De følgende pakkene er ikke oppgradert:"
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "Versjon %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Laster ned endringer"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "Systemet er helt oppdatert!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Installerer oppdateringer..."
+msgstr[1] "Installerer oppdateringer..."
+
+#: ../UpdateManager/UpdateManager.py:439
+#, fuzzy, python-format
+msgid "Download size: %s"
+msgstr "Laster ned endringer"
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Detaljer"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr "Arkiv har blitt endret"
+
+#: ../UpdateManager/UpdateManager.py:584
+#, fuzzy
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+"Arkivinformasjonen har blitt endret. En sikkerhetskopi av «sources.list»-"
+"filen er lagret i %s.save.\n"
+"\n"
+"Du må oppdatere pakkelisten fra tjenerene for at endringene skal tre i "
+"kraft. Vil du gjøre det nå?"
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "Din distribusjon er ikke lenger støttet"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -528,10 +747,6 @@ msgstr "Beskrivelse"
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
@@ -904,10 +1119,6 @@ msgstr ""
#~ msgid "Oficially supported"
#~ msgstr "Offisielt støttet"
-#, fuzzy
-#~ msgid "Installing updates"
-#~ msgstr "Installerer oppdateringer..."
-
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Oppdater pakkeinformasjonen fra tjeneren."
@@ -1045,9 +1256,6 @@ msgstr ""
#~ msgid "Cancel downloading the changelog"
#~ msgstr "Avbryt nedlasting av endringslogg"
-#~ msgid "Downloading Changes"
-#~ msgstr "Laster ned endringer"
-
#, fuzzy
#~ msgid "Debian sarge"
#~ msgstr "Debian 3.1 «Sarge»"
@@ -1115,9 +1323,6 @@ msgstr ""
#~ msgid "Choose a key-file"
#~ msgstr "Velg en nøkkelfil"
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "Systemet er helt oppdatert!"
-
#, fuzzy
#~ msgid "There is one package available for updating."
#~ msgstr "Det er ingen tilgjengelige oppdateringer."
@@ -1126,9 +1331,6 @@ msgstr ""
#~ msgid "There are %s packages available for updating."
#~ msgstr "Det er ingen tilgjengelige oppdateringer."
-#~ msgid "Version %s: \n"
-#~ msgstr "Versjon %s: \n"
-
#~ msgid "There are no updated packages"
#~ msgstr "Det er ingen utdaterte pakker"
@@ -1167,9 +1369,6 @@ msgstr ""
#~ msgid "New version:"
#~ msgstr "Ny versjon:"
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "Din distribusjon er ikke lenger støttet"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1195,12 +1394,6 @@ msgstr ""
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr "Ingen endringer funnet, tjeneren er kanskje ikke oppdatert enda."
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Feil under nedlasting av endringer. Sjekk tilkoblingen til internett."
-
#~ msgid "A_uthentication"
#~ msgstr "A_utentisering"
@@ -1210,22 +1403,6 @@ msgstr ""
#~ msgid "Ubuntu Update Manager"
#~ msgstr "Ubuntu oppdateringshåndterer"
-#~ msgid "Repositories changed"
-#~ msgstr "Arkiv har blitt endret"
-
-#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources."
-#~ "list is stored in %s.save. \n"
-#~ "\n"
-#~ "You need to reload the package list from the servers for your changes to "
-#~ "take effect. Do you want to do this now?"
-#~ msgstr ""
-#~ "Arkivinformasjonen har blitt endret. En sikkerhetskopi av «sources.list»-"
-#~ "filen er lagret i %s.save.\n"
-#~ "\n"
-#~ "Du må oppdatere pakkelisten fra tjenerene for at endringene skal tre i "
-#~ "kraft. Vil du gjøre det nå?"
-
#~ msgid ""
#~ "This means that some dependencies of the installed packages are not "
#~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation."
@@ -1245,6 +1422,3 @@ msgstr ""
#~ "Dette betyr at ved siden av å oppgradere pakkene kreves det ekstra "
#~ "handling (som å installere eller fjerne pakker). Bruk «Synaptic» eller "
#~ "«apt-get dist-upgrade» for å løse problemet."
-
-#~ msgid "The following packages are not upgraded: "
-#~ msgstr "De følgende pakkene er ikke oppgradert:"
diff --git a/po/pa.po b/po/pa.po
index 42d18745..3b35ef00 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pa\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-18 12:07+0000\n"
"Last-Translator: Amanpreet Singh Alam \n"
"Language-Team: Punjabi \n"
@@ -472,6 +472,212 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+msgid "Downloading the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "ਅੱਪਗਰੇਡ ਸਮਾਪਤ"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "ਪ੍ਰਮਾਣਿਕਤਾ"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+msgid "Cannot install all available updates"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:390
+msgid "Downloading the list of changes..."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:428
+msgid "Your system is up-to-date"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..."
+msgstr[1] "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..."
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "ਵੇਰਵਾ"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+#, fuzzy
+msgid "Show details"
+msgstr "ਵੇਰਵਾ"
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+msgid "Your distribution is not supported anymore"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -516,11 +722,6 @@ msgstr ""
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-#, fuzzy
-msgid "Show details"
-msgstr "ਵੇਰਵਾ"
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
@@ -873,10 +1074,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#, fuzzy
-#~ msgid "Installing updates"
-#~ msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..."
-
#, fuzzy
#~ msgid "Sections:"
#~ msgstr "ਵੇਰਵਾ"
diff --git a/po/pl.po b/po/pl.po
index 1edb495c..7fff5196 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager cvs\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-26 19:34+0000\n"
"Last-Translator: Tomasz Dominikowski \n"
"Language-Team: Polish \n"
@@ -521,6 +521,234 @@ msgstr "Uruchom ponownie"
msgid "_Resume Upgrade"
msgstr "Wznów aktualizację"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
+msgid "Could not find the release notes"
+msgstr "Nie można było odnaleźć żadnych aktualizacji"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
+msgid "Could not download the release notes"
+msgstr "Pobranie aktualizacji było niemożliwe"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
+msgid "Could not run the upgrade tool"
+msgstr "Instalacja aktualizacji zakończyła się niepowodzeniem."
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Wystąpił nierozwiązywalny problem podczas przetwarzania aktualizacji. Proszę "
+"zgłosić ten błąd. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Pobieranie i instalowanie aktualizacji"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "Aktualizuj %s"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Uwierzytelnianie"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr "Pobieranie pliku %li z %li z prędkością %s/s"
+
+#: ../UpdateManager/GtkProgress.py:111
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr "Pobieranie pliku %li z %li z nieznaną prędkością"
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+"Nie udało się pobrać informacji o zmianach. Proszę sprawdzić czy połączenie "
+"z internetem jest aktywne"
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Pokaż i zainstaluj dostępne aktualizacje"
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+#, fuzzy
+msgid "The following updates will be skipped:"
+msgstr "Następujące pakiety nie są aktualizowane: "
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "Wersja %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Pobieranie pliku %li z %li z prędkością %s/s"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "Twój system jest w pełni zaktualizowany"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Pokaż i zainstaluj dostępne aktualizacje"
+msgstr[1] "Pokaż i zainstaluj dostępne aktualizacje"
+msgstr[2] "Pokaż i zainstaluj dostępne aktualizacje"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Wyświetl szczegóły"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr "Wyświetl szczegóły"
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
+msgid "Update is complete"
+msgstr "Pobieranie zostało zakończone."
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr "Repozytoria zmienione"
+
+#: ../UpdateManager/UpdateManager.py:584
+#, fuzzy
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+"Zmieniły się informacje o repozytoriach. Kopia zapasowa oryginalnego pliku "
+"sources.list została zapisana w %s.save. \n"
+"\n"
+"Należy ponownie odczytać listę pakietów z serwerów aby zmiany były widoczne. "
+"Czy chcesz zrobić to teraz?"
+
+#: ../UpdateManager/UpdateManager.py:617
+#, fuzzy, python-format
+msgid "New version: %s (Size: %s)"
+msgstr "Nowa wersja %s"
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "Twoja dystrybucja nie jest już wspierana"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -576,10 +804,6 @@ msgstr "Opis"
msgid "Release Notes"
msgstr "Informacje o wydaniu"
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr "Wyświetl szczegóły"
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Pokaż postęp pobierania poszczególnych plików"
@@ -940,9 +1164,6 @@ msgstr "Oprogramowanie kompatybilne z DFSG z zależnościami Non-Free"
msgid "Non-DFSG-compatible Software"
msgstr "Oprogramowanie niekompatybilne z DFSG."
-#~ msgid "Downloading file %li of %li at unknown speed"
-#~ msgstr "Pobieranie pliku %li z %li z nieznaną prędkością"
-
#~ msgid "Installing updates"
#~ msgstr "Instalowanie pakietów"
@@ -1114,24 +1335,11 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#~ "z funkcji \"sprytnej aktualizacji\" programu Synaptic lub wykonać "
#~ "polecenie \"apt-get dist-upgrade\"."
-#~ msgid "The following packages are not upgraded: "
-#~ msgstr "Następujące pakiety nie są aktualizowane: "
-
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr ""
#~ "Nie odnaleziono informacji o zmianach, być może serwer nie został jeszcze "
#~ "zaktualizowany"
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Nie udało się pobrać informacji o zmianach. Proszę sprawdzić czy "
-#~ "połączenie z internetem jest aktywne"
-
-#~ msgid "Version %s: \n"
-#~ msgstr "Wersja %s: \n"
-
#~ msgid "The updates are being applied."
#~ msgstr "Aktualizacje są teraz instalowane."
@@ -1145,18 +1353,9 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#~ msgid "Updating package list..."
#~ msgstr "Aktualizacja listy pakietów..."
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "Twój system jest w pełni zaktualizowany"
-
#~ msgid "There are no updates available."
#~ msgstr "Nie ma żadnych dostępnych aktualizacji"
-#~ msgid "New version: %s"
-#~ msgstr "Nowa wersja %s"
-
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "Twoja dystrybucja nie jest już wspierana"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1225,22 +1424,6 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#~ msgid "Ubuntu CD Image Automatic Signing Key "
#~ msgstr "Klucz automatycznego podpisu płyty CD Ubuntu "
-#~ msgid "Repositories changed"
-#~ msgstr "Repozytoria zmienione"
-
-#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources."
-#~ "list is stored in %s.save. \n"
-#~ "\n"
-#~ "You need to reload the package list from the servers for your changes to "
-#~ "take effect. Do you want to do this now?"
-#~ msgstr ""
-#~ "Zmieniły się informacje o repozytoriach. Kopia zapasowa oryginalnego "
-#~ "pliku sources.list została zapisana w %s.save. \n"
-#~ "\n"
-#~ "Należy ponownie odczytać listę pakietów z serwerów aby zmiany były "
-#~ "widoczne. Czy chcesz zrobić to teraz?"
-
#, fuzzy
#~ msgid ""
#~ "Available Updates\n"
diff --git a/po/pt.po b/po/pt.po
index 222c91b7..97b080da 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-25 21:49+0000\n"
"Last-Translator: Rui Az. \n"
"Language-Team: Ubuntu Portuguese Team \n"
@@ -522,6 +522,222 @@ msgstr "_Reiniciar agora"
msgid "_Resume Upgrade"
msgstr "_Retomar Actualização?"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
+msgid "Could not find the release notes"
+msgstr "Impossível de encontrar quaisquer actualizações"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
+msgid "Could not download the release notes"
+msgstr "Impossível de descarregar as actualizações"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
+msgid "Could not run the upgrade tool"
+msgstr "Impossível de instalar as actualizações"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Um problema irresolúvel ocorreu ao calcular a actualização. Por favor "
+"reporte este erro. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "A efectuar o download e a instalar actualizações"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "Actualizar %s"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Autenticação"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr "A descarregar ficheiro %li de %li com %s/s"
+
+#: ../UpdateManager/GtkProgress.py:111
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr "A descarregar ficheiro %li de %li a velocidade desconhecida"
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Mostrar e instalar actualizações disponíveis"
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "A descarregar ficheiro %li de %li com %s/s"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "O seu sistema está actualizado!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Mostrar e instalar actualizações disponíveis"
+msgstr[1] "Mostrar e instalar actualizações disponíveis"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Mostrar detalhes"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr "Mostrar detalhes"
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
+msgid "Update is complete"
+msgstr "O Download está completo"
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+msgid "Your distribution is not supported anymore"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
#, fuzzy
msgid ""
@@ -579,10 +795,6 @@ msgstr "Descrição"
msgid "Release Notes"
msgstr "Notas de lançamento"
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr "Mostrar detalhes"
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Mostrar progresso de ficheiros individuais"
@@ -948,9 +1160,6 @@ msgstr "Software compatível-DFSG com Dependências Não-Livres"
msgid "Non-DFSG-compatible Software"
msgstr "Software compatível-DFSG"
-#~ msgid "Downloading file %li of %li at unknown speed"
-#~ msgstr "A descarregar ficheiro %li de %li a velocidade desconhecida"
-
#~ msgid "Installing updates"
#~ msgstr "A instalar actualizações"
@@ -1037,9 +1246,6 @@ msgstr "Software compatível-DFSG"
#~ msgid "Delete _old packages in the package cache"
#~ msgstr "Excluir pacotes _antigos da cache de pacotes"
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "O seu sistema está actualizado!"
-
#~ msgid "Never show this message again"
#~ msgstr "Nunca exibir esta mensagem novamente"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index cfc4a42e..eff32dbf 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-23 01:47+0000\n"
"Last-Translator: LKRaider \n"
"Language-Team: Ubuntu-BR \n"
@@ -523,6 +523,233 @@ msgstr "_Reiniciar Agora"
msgid "_Resume Upgrade"
msgstr "Continua_r Atualização"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
+msgid "Could not find the release notes"
+msgstr "Não foi possível encontrar nenhuma atualização"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
+msgid "Could not download the release notes"
+msgstr "Não foi possível obter as atualizações"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
+msgid "Could not run the upgrade tool"
+msgstr "Não foi possível instalar as atualizações"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Um problema sem resolução ocorreu enquanto calculando a atualização. Por "
+"favor reporte isto como um erro. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Obtendo e instalando as atualizações"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "Atualizar %s"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Autenticação"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr "Obtendo arquivo %li de %li a %s/s"
+
+#: ../UpdateManager/GtkProgress.py:111
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr "Obtendo arquivo %li de %li a uma velocidade desconhecida"
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+"Failed to download changes. Please check if there is an active internet "
+"connection."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Exibir e instalar as atualizações disponíveis"
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+#, fuzzy
+msgid "The following updates will be skipped:"
+msgstr "The following packages are not upgraded: "
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "Version %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Obtendo arquivo %li de %li a %s/s"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "Your system is up-to-date!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Exibir e instalar as atualizações disponíveis"
+msgstr[1] "Exibir e instalar as atualizações disponíveis"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Exibir Detalhes"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr "Exibir Detalhes"
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
+msgid "Update is complete"
+msgstr "O Download está completo"
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr "Repositories changed"
+
+#: ../UpdateManager/UpdateManager.py:584
+#, fuzzy
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+"The repository information has changes. A backup copy of your sources.list "
+"is stored in %s.save. \n"
+"\n"
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+
+#: ../UpdateManager/UpdateManager.py:617
+#, fuzzy, python-format
+msgid "New version: %s (Size: %s)"
+msgstr "New version: %s"
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "Your distribution is no longer supported"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -578,10 +805,6 @@ msgstr "Descrição"
msgid "Release Notes"
msgstr "Notas de Versão"
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr "Exibir Detalhes"
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Exibir progresso de arquivos únicos"
@@ -946,9 +1169,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 "Downloading file %li of %li at unknown speed"
-#~ msgstr "Obtendo arquivo %li de %li a uma velocidade desconhecida"
-
#~ msgid "Installing updates"
#~ msgstr "Instalando Atualizações"
@@ -1168,22 +1388,9 @@ msgstr "Programas não compatíveis com a DFSG"
#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
#~ "situation."
-#~ msgid "The following packages are not upgraded: "
-#~ msgstr "The following packages are not upgraded: "
-
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr "Changes not found, the server may not be updated yet."
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-
-#~ msgid "Version %s: \n"
-#~ msgstr "Version %s: \n"
-
#~ msgid "The updates are being applied."
#~ msgstr "The updates are being applied."
@@ -1197,18 +1404,9 @@ msgstr "Programas não compatíveis com a DFSG"
#~ msgid "Updating package list..."
#~ msgstr "Updating package list..."
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "Your system is up-to-date!"
-
#~ msgid "There are no updates available."
#~ msgstr "There are no updates available."
-#~ msgid "New version: %s"
-#~ msgstr "New version: %s"
-
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "Your distribution is no longer supported"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1281,22 +1479,6 @@ msgstr "Programas não compatíveis com a DFSG"
#~ msgid "Ubuntu CD Image Automatic Signing Key "
#~ msgstr "Ubuntu CD Image Automatic Signing Key "
-#~ msgid "Repositories changed"
-#~ msgstr "Repositories changed"
-
-#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources."
-#~ "list is stored in %s.save. \n"
-#~ "\n"
-#~ "You need to reload the package list from the servers for your changes to "
-#~ "take effect. Do you want to do this now?"
-#~ msgstr ""
-#~ "The repository information has changes. A backup copy of your sources."
-#~ "list is stored in %s.save. \n"
-#~ "\n"
-#~ "You need to reload the package list from the servers for your changes to "
-#~ "take effect. Do you want to do this now?"
-
#, fuzzy
#~ msgid ""
#~ "Available Updates\n"
diff --git a/po/ro.po b/po/ro.po
index 14f995fa..b44b33d4 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-23 00:19+0000\n"
"Last-Translator: Dan Damian \n"
"Language-Team: Romanian \n"
@@ -490,6 +490,226 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr "Actualizare completă"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Cheia selectată nu poate fi ştearsă. Raportaţi acest lucru ca un bug "
+"(eroare)."
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+msgid "Downloading the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "Actualizare completă"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "A_utentificare"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+"Nu am putut descărca modificările. Vă rog să verificaţi dacă aveţi o "
+"conexiune internet activă."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+msgid "Cannot install all available updates"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "Versiunea %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Întrerupe descărcarea jurnalului de modificări"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "Sistemul dvs. este la zi!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Detalii"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr "Locaţiile au fost schimbate"
+
+#: ../UpdateManager/UpdateManager.py:584
+#, fuzzy
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+"Informaţiile despre locaţii au fost schimbate. O copie de siguranţă a "
+"fişierului sources.list a fost salvată în %s.save.\n"
+"\n"
+"Pentru ca modificările să aibe efect, trebuie să reîncărcaţi lista de "
+"pachete de pe servere. Doriţi să faceţi acum acest lucru?"
+
+#: ../UpdateManager/UpdateManager.py:617
+#, fuzzy, python-format
+msgid "New version: %s (Size: %s)"
+msgstr "Versiune nouă: %s"
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "Distribuţia dvs. nu mai este suportată"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -534,10 +754,6 @@ msgstr "Descriere"
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
@@ -942,10 +1158,6 @@ msgstr ""
#~ msgid "Automatically check for updates"
#~ msgstr "Verifică a_utomat actualizările software."
-#, fuzzy
-#~ msgid "Cancel downloading of the changelog"
-#~ msgstr "Întrerupe descărcarea jurnalului de modificări"
-
#, fuzzy
#~ msgid "Packages to install:"
#~ msgstr "Pachete de instalat:"
@@ -1028,16 +1240,6 @@ msgstr ""
#~ msgstr ""
#~ "Nu am găsit modificări, s-ar putea ca serverul să nu fi fost actualizat."
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Nu am putut descărca modificările. Vă rog să verificaţi dacă aveţi o "
-#~ "conexiune internet activă."
-
-#~ msgid "Version %s: \n"
-#~ msgstr "Versiunea %s: \n"
-
#~ msgid "The updates are being applied."
#~ msgstr "Actualizările sunt în curs de aplicare."
@@ -1048,18 +1250,9 @@ msgstr ""
#~ "Puteţi rula doar un singur manager de pachete la un moment dat. Vă rog să "
#~ "închideţi ceilalţi manageri mai întâi."
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "Sistemul dvs. este la zi!"
-
#~ msgid "There are no updates available."
#~ msgstr "Nu există nici un pachet de actualizat."
-#~ msgid "New version: %s"
-#~ msgstr "Versiune nouă: %s"
-
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "Distribuţia dvs. nu mai este suportată"
-
#, fuzzy
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "Nu există nici un pachet de actualizat."
@@ -1106,22 +1299,6 @@ msgstr ""
#~ msgid "US export restricted software"
#~ msgstr "Software cu restricţii de export din SUA"
-#~ msgid "Repositories changed"
-#~ msgstr "Locaţiile au fost schimbate"
-
-#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources."
-#~ "list is stored in %s.save. \n"
-#~ "\n"
-#~ "You need to reload the package list from the servers for your changes to "
-#~ "take effect. Do you want to do this now?"
-#~ msgstr ""
-#~ "Informaţiile despre locaţii au fost schimbate. O copie de siguranţă a "
-#~ "fişierului sources.list a fost salvată în %s.save.\n"
-#~ "\n"
-#~ "Pentru ca modificările să aibe efect, trebuie să reîncărcaţi lista de "
-#~ "pachete de pe servere. Doriţi să faceţi acum acest lucru?"
-
#, fuzzy
#~ msgid ""
#~ "Available Updates\n"
diff --git a/po/rw.po b/po/rw.po
index 25f6c428..d744525a 100644
--- a/po/rw.po
+++ b/po/rw.po
@@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-18 12:07+0000\n"
"Last-Translator: Steve Murphy \n"
"Language-Team: Kinyarwanda \n"
@@ -491,6 +491,218 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr "Byarangiye"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+msgid "Downloading the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "Byarangiye"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+msgid "Authentication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+"Kuri Gufungura Amahinduka Kugenzura... NIBA ni Gikora Interineti Ukwihuza"
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+msgid "Cannot install all available updates"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+#, fuzzy
+msgid "The following updates will be skipped:"
+msgstr "OYA "
+
+#: ../UpdateManager/UpdateManager.py:330
+#, fuzzy, python-format
+msgid "Version %s: \n"
+msgstr "Verisiyo \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Iyimura... i"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "Sisitemu ni Hejuru Kuri Itariki"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] ""
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "You must check for updates manually\n"
@@ -538,10 +750,6 @@ msgstr "Isobanuramiterere"
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
@@ -955,10 +1163,6 @@ msgstr ""
#~ msgid "Automatically check for updates"
#~ msgstr "Kugenzura... kugirango"
-#, fuzzy
-#~ msgid "Cancel downloading of the changelog"
-#~ msgstr "Iyimura... i"
-
#, fuzzy
#~ msgid "Choose a key-file"
#~ msgstr "a Urufunguzo IDOSIYE"
@@ -1065,25 +1269,10 @@ msgstr ""
#~ "i Bya i Igikorwa Nka gukora iyinjizaporogaramu:%s Cyangwa ni Bya ngombwa "
#~ "Gukoresha Cyangwa Kubona Kuri i"
-#, fuzzy
-#~ msgid "The following packages are not upgraded: "
-#~ msgstr "OYA "
-
#, fuzzy
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr "OYA Byabonetse i Seriveri Gicurasi OYA"
-#, fuzzy
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Kuri Gufungura Amahinduka Kugenzura... NIBA ni Gikora Interineti Ukwihuza"
-
-#, fuzzy
-#~ msgid "Version %s: \n"
-#~ msgstr "Verisiyo \n"
-
#, fuzzy
#~ msgid "The updates are being applied."
#~ msgstr "Byashyizweho"
@@ -1099,22 +1288,10 @@ msgstr ""
#~ msgid "Updating package list..."
#~ msgstr "Urutonde"
-#, fuzzy
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "Sisitemu ni Hejuru Kuri Itariki"
-
#, fuzzy
#~ msgid "There are no updates available."
#~ msgstr "Oya Bihari"
-#, fuzzy
-#~ msgid "New version: %s"
-#~ msgstr "Verisiyo"
-
-#, fuzzy
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "Ikwirakwiza... ni Oya"
-
#, fuzzy
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
@@ -1180,16 +1357,3 @@ msgstr ""
#, fuzzy
#~ msgid "Ubuntu CD Image Automatic Signing Key "
#~ msgstr "com"
-
-#, fuzzy
-#~ msgid "Repositories changed"
-#~ msgstr "Byahinduwe"
-
-#, fuzzy
-#~ msgid ""
-#~ "The repository information has changes. A backup copy of your sources."
-#~ "list is stored in %s.save. \n"
-#~ "\n"
-#~ "You need to reload the package list from the servers for your changes to "
-#~ "take effect. Do you want to do this now?"
-#~ msgstr "Kubika."
diff --git a/po/sk.po b/po/sk.po
index 2de6a42d..1e229b51 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-26 01:43+0000\n"
"Last-Translator: Martin Mancuska \n"
"Language-Team: Slovak \n"
@@ -484,6 +484,213 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr ""
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
+msgid "Could not run the upgrade tool"
+msgstr "Nemôžem vypočítať upgrade"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Počas počítania upgradu sa vyskytol neriešiteľný problém. Prosím, nahláste "
+"to ako bug. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+msgid "Downloading the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+msgid "Upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+msgid "Authentication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+msgid "Cannot install all available updates"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:390
+msgid "Downloading the list of changes..."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:428
+msgid "Your system is up-to-date"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:437
+#, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+msgid "Hide details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+msgid "Your distribution is not supported anymore"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -528,10 +735,6 @@ msgstr ""
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index 1c46fa96..0a9b6fba 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: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-27 18:10+0000\n"
"Last-Translator: Robin Sonefors \n"
"Language-Team: Swedish \n"
@@ -521,6 +521,229 @@ msgstr "_Starta om nu"
msgid "_Resume Upgrade"
msgstr "_Återuppta uppdateringen"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
+msgid "Could not find the release notes"
+msgstr "Kunde inte hitta några uppdateringar"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
+msgid "Could not download the release notes"
+msgstr "Det gick inte ladda ner uppdateringarna"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
+msgid "Could not run the upgrade tool"
+msgstr "Det gick inte att installera uppdateringarna"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+"Ett problem som inte gick att lösa uppstod när uppdateringen kontrolerades. "
+"Rapportera gärna detta som en bugg. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Hämtar och installerar uppdateringarna"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "Uppdatera %s"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+#, fuzzy
+msgid "Verfication failed"
+msgstr "Transaktion misslyckades"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Autentisering"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr "Hämtar hem fil %li av %li med en hastighet av %s/s"
+
+#: ../UpdateManager/GtkProgress.py:111
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr "Hämtar hem fil %li av %li med en okänd hastighet"
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+"Misslyckades med att hämta ändringar. Kontrollera att det finns en aktiv "
+"Internetanslutning."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Visa och installera tillgängliga uppdateringar"
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+#, fuzzy
+msgid "The following updates will be skipped:"
+msgstr "Följande kanaler är våra kanaltips! "
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "Version %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Hämtar spegellista..."
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "Ditt system är aktuellt!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Visa och installera tillgängliga uppdateringar"
+msgstr[1] "Visa och installera tillgängliga uppdateringar"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, fuzzy, python-format
+msgid "Download size: %s"
+msgstr "Hämtar %s..."
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Visa detaljer"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr "Visa detaljer"
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
+msgid "Update is complete"
+msgstr "Hämtningen är färdig"
+
+#: ../UpdateManager/UpdateManager.py:583
+#, fuzzy
+msgid "Repositories changed"
+msgstr "Värdnamnet har ändrats"
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, fuzzy, python-format
+msgid "New version: %s (Size: %s)"
+msgstr "Ny version: %s"
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "Din distribution stöds inte längre"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -577,10 +800,6 @@ msgstr "Beskrivning"
msgid "Release Notes"
msgstr "Utgåveanteckningar"
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr "Visa detaljer"
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "Visa förlopp för enstaka filer"
@@ -945,9 +1164,6 @@ msgstr "DFSG-kompatibel mjukvara med beroenden till ickefri"
msgid "Non-DFSG-compatible Software"
msgstr "Inte DFSG-kompatibel mjukvara"
-#~ msgid "Downloading file %li of %li at unknown speed"
-#~ msgstr "Hämtar hem fil %li av %li med en okänd hastighet"
-
#~ msgid "Installing updates"
#~ msgstr "Installerar uppdateringar"
@@ -1060,24 +1276,10 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgid "It is not possible to upgrade all packages."
#~ msgstr "Det går inte att uppgradera alla paket."
-#, fuzzy
-#~ msgid "The following packages are not upgraded: "
-#~ msgstr "Följande kanaler är våra kanaltips! "
-
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr ""
#~ "Ändringar kunde inte hittas, servern har kanske inte uppdaterats än."
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Misslyckades med att hämta ändringar. Kontrollera att det finns en aktiv "
-#~ "Internetanslutning."
-
-#~ msgid "Version %s: \n"
-#~ msgstr "Version %s: \n"
-
#~ msgid "The updates are being applied."
#~ msgstr "Uppdateringarna verkställs."
@@ -1095,18 +1297,9 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgid "Updating package list..."
#~ msgstr "Hittade %d matchande paket"
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "Ditt system är aktuellt!"
-
#~ msgid "There are no updates available."
#~ msgstr "Det finns inga tillgängliga uppdateringar."
-#~ msgid "New version: %s"
-#~ msgstr "Ny version: %s"
-
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "Din distribution stöds inte längre"
-
#, fuzzy
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "Det finns inga tillgängliga uppdateringar."
@@ -1159,10 +1352,6 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgid "US export restricted software"
#~ msgstr "Programvara med USA-exportbegränsningar"
-#, fuzzy
-#~ msgid "Repositories changed"
-#~ msgstr "Värdnamnet har ändrats"
-
#~ msgid "Software Sources"
#~ msgstr "Programvarukällor"
@@ -1638,9 +1827,6 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgid "Install from File"
#~ msgstr "Installera från fil"
-#~ msgid "Downloading %s..."
-#~ msgstr "Hämtar %s..."
-
#~ msgid "Install from URL"
#~ msgstr "Installera från URL"
@@ -1834,9 +2020,6 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgid "The transaction has completed successfully"
#~ msgstr "Transaktionen har färdigställts utan problem"
-#~ msgid "Transaction failed"
-#~ msgstr "Transaktion misslyckades"
-
#~ msgid "Transaction Failed"
#~ msgstr "Transaktion misslyckades"
@@ -2826,9 +3009,6 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ "Kan inte komma åt paketsystem:
%sFörsäkra dig om att inga andra "
#~ "pakethanteringsprogram kör, och försök igen."
-#~ msgid "Downloading mirror list..."
-#~ msgstr "Hämtar spegellista..."
-
#~ msgid "Downloading channel artwork..."
#~ msgstr "Hämtar kanalgrafik..."
diff --git a/po/uk.po b/po/uk.po
index db306f06..2f279ae7 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: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-23 11:26+0000\n"
"Last-Translator: Serhey Kusyumoff \n"
"Language-Team: Ukrainian \n"
@@ -496,6 +496,224 @@ msgstr "_Перезавантажити"
msgid "_Resume Upgrade"
msgstr "П_родовжити апгрейд системи"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
+msgid "Could not find the release notes"
+msgstr "Не знайдено пакунків для апгрейду"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
+msgid "Could not download the release notes"
+msgstr "Неможливо завантажити пакунки для апргрейду системи"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
+msgid "Could not run the upgrade tool"
+msgstr "Неможливо провести апргрейд системи"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Завантаження та встановлення пакунків для апгрейду"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "Апргрейд %s"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Аутентифікація"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr "Завантажується файл %li of %li at %s/s"
+
+#: ../UpdateManager/GtkProgress.py:111
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr "Завантажується файл %li of %li на невизначенії швидкості"
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+"не вдається завантажити зміни. Перевірте чи активне з'єднання з Інтернет."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Пошук пакунків для апгрейду"
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "Версія %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Завантаження змін"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "Ваша система оновлена!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Неможливо провести апргрейд системи"
+msgstr[1] "Неможливо провести апргрейд системи"
+msgstr[2] "Неможливо провести апргрейд системи"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, fuzzy, python-format
+msgid "Download size: %s"
+msgstr "Завантаження змін"
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Подробиці"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
+msgid "Update is complete"
+msgstr "Завантадення пакунків завершено"
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "Ваш дистрибутив вже не підтримується"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -540,10 +758,6 @@ msgstr "Опис"
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
@@ -910,16 +1124,10 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Downloading file %li of %li at unknown speed"
-#~ msgstr "Завантажується файл %li of %li на невизначенії швидкості"
-
#, fuzzy
#~ msgid "Installing updates"
#~ msgstr "Встановлення оновлень..."
-#~ msgid "Check for available updates"
-#~ msgstr "Пошук пакунків для апгрейду"
-
#~ msgid "Sections:"
#~ msgstr "Розділи:"
@@ -1063,9 +1271,6 @@ msgstr ""
#~ msgid "Cancel downloading the changelog"
#~ msgstr "Скасувати завантаження записів changelog"
-#~ msgid "Downloading Changes"
-#~ msgstr "Завантаження змін"
-
#, fuzzy
#~ msgid "Debian sarge"
#~ msgstr "Debian 3.1 \"Sarge\""
@@ -1133,18 +1338,12 @@ msgstr ""
#~ msgid "Choose a key-file"
#~ msgstr "Виберіть ключовий файл"
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "Ваша система оновлена!"
-
#~ msgid "There is one package available for updating."
#~ msgstr "Немає доступних для оновлення пакетів."
#~ msgid "There are %s packages available for updating."
#~ msgstr "Для оновлення доступно %s пакетів."
-#~ msgid "Version %s: \n"
-#~ msgstr "Версія %s: \n"
-
#~ msgid "There are no updated packages"
#~ msgstr "Немає оновлених пакетів"
@@ -1186,9 +1385,6 @@ msgstr ""
#~ msgid "New version:"
#~ msgstr "Нова версія:"
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "Ваш дистрибутив вже не підтримується"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1213,9 +1409,3 @@ msgstr ""
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr "Зміне не знайдено, можливо сервер досі не оновлено."
-
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "не вдається завантажити зміни. Перевірте чи активне з'єднання з Інтернет."
diff --git a/po/update-manager.pot b/po/update-manager.pot
index 7ee20ee1..03d89b4c 100644
--- a/po/update-manager.pot
+++ b/po/update-manager.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -469,6 +469,208 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr ""
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+msgid "Downloading the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+msgid "Upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+msgid "Authentication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+msgid "Cannot install all available updates"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:390
+msgid "Downloading the list of changes..."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:428
+msgid "Your system is up-to-date"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:437
+#, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+msgid "Hide details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+msgid "Your distribution is not supported anymore"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -513,10 +715,6 @@ msgstr ""
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
diff --git a/po/vi.po b/po/vi.po
index dc08edf5..ed93d106 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager Gnome HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-23 00:20+0000\n"
"Last-Translator: Clytie Siddall \n"
"Language-Team: Vietnamese \n"
@@ -474,6 +474,218 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr ""
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it 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. "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "Đang tải các thay đổi"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+msgid "Upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "Xác thực"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+"Không tải thay đổi về được. Bạn hãy kiểm tra có kết nối đến Mạng hoạt động "
+"chưa."
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "Đang kiểm tra có cập nhật..."
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "Phiên bản %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "Đang tải các thay đổi"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "Hệ thống bạn toàn mới nhất."
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Đang cài đặt bản cập nhật..."
+
+#: ../UpdateManager/UpdateManager.py:439
+#, fuzzy, python-format
+msgid "Download size: %s"
+msgstr "Đang tải các thay đổi"
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "Chi tiết"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "Không còn hỗ trợ lại bản phát hành của bạn."
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -518,10 +730,6 @@ msgstr "Mô tả"
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
@@ -887,14 +1095,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#, fuzzy
-#~ msgid "Installing updates"
-#~ msgstr "Đang cài đặt bản cập nhật..."
-
-#, fuzzy
-#~ msgid "Check for available updates"
-#~ msgstr "Đang kiểm tra có cập nhật..."
-
#~ msgid "Sections:"
#~ msgstr "Phần:"
@@ -1038,9 +1238,6 @@ msgstr ""
#~ msgid "Cancel downloading the changelog"
#~ msgstr "Thôi tải về Bản ghi đổi..."
-#~ msgid "Downloading Changes"
-#~ msgstr "Đang tải các thay đổi"
-
#~ msgid "You need to be root to run this program"
#~ msgstr "Phải là người chủ để chạy chương trình này."
@@ -1095,18 +1292,12 @@ msgstr ""
#~ 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."
-
#~ msgid "There is one package available for updating."
#~ msgstr "Có một gói công bố đề cập nhật."
#~ msgid "There are %s packages available for updating."
#~ msgstr "Có %s gói công bố đề cập nhật."
-#~ msgid "Version %s: \n"
-#~ msgstr "Phiên bản %s: \n"
-
#~ msgid "There are no updated packages"
#~ msgstr "Không có gói nào đã cập nhật."
@@ -1142,9 +1333,6 @@ msgstr ""
#~ msgid "New version:"
#~ msgstr "Phiên bản mới :"
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "Không còn hỗ trợ lại bản phát hành của bạn."
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1169,10 +1357,3 @@ msgstr ""
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr "Không tìm thấy thay đổi nào. Có lẽ máy phục vụ chưa được cập nhật."
-
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr ""
-#~ "Không tải thay đổi về được. Bạn hãy kiểm tra có kết nối đến Mạng hoạt "
-#~ "động chưa."
diff --git a/po/xh.po b/po/xh.po
index 43526cf6..2458d655 100644
--- a/po/xh.po
+++ b/po/xh.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-notifier\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-18 12:11+0000\n"
"Last-Translator: Canonical Ltd \n"
"Language-Team: Xhosa \n"
@@ -469,6 +469,208 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr ""
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+msgid "Downloading the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+msgid "Upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+msgid "Authentication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+msgid "Cannot install all available updates"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:390
+msgid "Downloading the list of changes..."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:428
+msgid "Your system is up-to-date"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "Seka zonke izihlaziyo"
+msgstr[1] "Seka zonke izihlaziyo"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+msgid "Hide details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+msgid "Your distribution is not supported anymore"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -513,10 +715,6 @@ msgstr ""
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
@@ -863,10 +1061,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#, fuzzy
-#~ msgid "Installing updates"
-#~ msgstr "Seka zonke izihlaziyo"
-
#, fuzzy
#~ msgid "Add Software Channels"
#~ msgstr "Bonisa izihlaziyo"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 49aefbdc..726ffbb8 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-26 12:31+0000\n"
"Last-Translator: firingstone \n"
"Language-Team: zh_CN \n"
@@ -489,6 +489,220 @@ msgstr "现在重启(_R)"
msgid "_Resume Upgrade"
msgstr "继续升级(_R)"
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
+msgid "Could not find the release notes"
+msgstr "不能找到任何升级"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
+msgid "Could not download the release notes"
+msgstr "无法下载升级包"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
+msgid "Could not run the upgrade tool"
+msgstr "无法安装升级"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr "在计算升级时遇到一个无法解决的问题。请汇报这个bug。 "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "下载并安装升级"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
+msgid "Upgrade tool"
+msgstr "升级%s"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "身份验证(_U)"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr "正在下载文件%li来自%li速度是%s/s"
+
+#: ../UpdateManager/GtkProgress.py:111
+#, fuzzy, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr "正在下载文件%li来自%li速度未知"
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr ""
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "显示并安装可用更新"
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "版本 %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "正在下载文件%li来自%li速度是%s/s"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "您的系统已为最新!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "显示并安装可用更新"
+
+#: ../UpdateManager/UpdateManager.py:439
+#, python-format
+msgid "Download size: %s"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "显示详情"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr "显示详情"
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
+msgid "Update is complete"
+msgstr "下载完成"
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr "仓库已变更"
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, fuzzy, python-format
+msgid "New version: %s (Size: %s)"
+msgstr "新版本:%s"
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "您的发行版不再被支持"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -542,10 +756,6 @@ msgstr "描述"
msgid "Release Notes"
msgstr "发布说明"
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr "显示详情"
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr "显示单个文件进度"
@@ -899,9 +1109,6 @@ msgstr "带有非自由依赖关系的DFSG兼容软件"
msgid "Non-DFSG-compatible Software"
msgstr "非DFSG兼容软件"
-#~ msgid "Downloading file %li of %li at unknown speed"
-#~ msgstr "正在下载文件%li来自%li速度未知"
-
#~ msgid "Installing updates"
#~ msgstr "安装更新"
@@ -987,24 +1194,12 @@ msgstr "非DFSG兼容软件"
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr "更改未找到,服务器可能尚未更新。"
-#~ msgid "Version %s: \n"
-#~ msgstr "版本 %s: \n"
-
#~ msgid "The updates are being applied."
#~ msgstr "更新已经应用。"
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "您的系统已为最新!"
-
#~ msgid "There are no updates available."
#~ msgstr "没有可用的更新。"
-#~ msgid "New version: %s"
-#~ msgstr "新版本:%s"
-
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "您的发行版不再被支持"
-
#, fuzzy
#~ msgid "There is a new release of Ubuntu available!"
#~ msgstr "没有可用的更新。"
@@ -1053,6 +1248,3 @@ msgstr "非DFSG兼容软件"
#~ msgid "US export restricted software"
#~ msgstr "美国限制出口的软件"
-
-#~ msgid "Repositories changed"
-#~ msgstr "仓库已变更"
diff --git a/po/zh_HK.po b/po/zh_HK.po
index 8b89dbb0..bb32fbb5 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: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-23 00:20+0000\n"
"Last-Translator: Abel Cheung \n"
"Language-Team: Chinese (traditional) \n"
@@ -476,6 +476,217 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr ""
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr "你選定的密碼匙無法移除,請匯報問題。 "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "正在下載更改紀錄"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+msgid "Upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "認證"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr "無法下載更改紀錄。請檢查網絡連線是否正常。"
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "正在檢查更新套件..."
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "版本 %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "正在下載更改紀錄"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "系統已經在最新狀態!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "正在安裝軟件更新..."
+msgstr[1] "正在安裝軟件更新..."
+
+#: ../UpdateManager/UpdateManager.py:439
+#, fuzzy, python-format
+msgid "Download size: %s"
+msgstr "正在下載更改紀錄"
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "細節"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "已經不再支援你用的發行版本"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -520,10 +731,6 @@ msgstr "詳細說明"
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
@@ -888,14 +1095,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#, fuzzy
-#~ msgid "Installing updates"
-#~ msgstr "正在安裝軟件更新..."
-
-#, fuzzy
-#~ msgid "Check for available updates"
-#~ msgstr "正在檢查更新套件..."
-
#~ msgid "Sections:"
#~ msgstr "分類:"
@@ -1037,9 +1236,6 @@ msgstr ""
#~ msgid "Cancel downloading the changelog"
#~ msgstr "取消下載更改紀錄"
-#~ msgid "Downloading Changes"
-#~ msgstr "正在下載更改紀錄"
-
#~ msgid "You need to be root to run this program"
#~ msgstr "你需要 root 的身分方可使用本程式"
@@ -1091,18 +1287,12 @@ msgstr ""
#~ msgid "Choose a key-file"
#~ msgstr "選擇密碼匙檔"
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "系統已經在最新狀態!"
-
#~ msgid "There is one package available for updating."
#~ msgstr "有 1 個套件可以更新。"
#~ msgid "There are %s packages available for updating."
#~ msgstr "有 %s 個套件可以更新。"
-#~ msgid "Version %s: \n"
-#~ msgstr "版本 %s: \n"
-
#~ msgid "There are no updated packages"
#~ msgstr "沒有任何套件需要更新"
@@ -1140,9 +1330,6 @@ msgstr ""
#~ msgid "New version:"
#~ msgstr "新版本:"
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "已經不再支援你用的發行版本"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1166,8 +1353,3 @@ msgstr ""
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr "沒有更改紀錄,可能伺服器資料未更新。"
-
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr "無法下載更改紀錄。請檢查網絡連線是否正常。"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 02a9cb7f..4e86d520 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: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-07 21:25+0200\n"
+"POT-Creation-Date: 2006-04-10 10:51+0200\n"
"PO-Revision-Date: 2006-03-23 00:20+0000\n"
"Last-Translator: Abel Cheung \n"
"Language-Team: Chinese (traditional) \n"
@@ -476,6 +476,217 @@ msgstr ""
msgid "_Resume Upgrade"
msgstr ""
+#: ../UpdateManager/DistUpgradeFetcher.py:68
+msgid "Could not find the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:69
+msgid "The server may be overloaded. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:79
+msgid "Could not download the release notes"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:80
+msgid "Please check your internet connection."
+msgstr ""
+
+#. no script file found in extracted tarbal
+#: ../UpdateManager/DistUpgradeFetcher.py:151
+msgid "Could not run the upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:152
+#, fuzzy
+msgid ""
+"This is most likely a bug in the upgrade tool. Please report it as a bug"
+msgstr "您選定的金鑰無法移除,請匯報問題。 "
+
+#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
+msgid "Downloading the upgrade tool"
+msgstr "正在下載更改紀錄"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:175
+msgid "The upgrade tool will guide you through the upgrade process."
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:182
+msgid "Upgrade tool signature"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:185
+msgid "Upgrade tool"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:207
+msgid "Failed to fetch"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:208
+msgid "Fetching the upgrade failed. There may be a network problem. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:213
+msgid "Failed to extract"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:214
+msgid ""
+"Extracting the upgrade failed. There may be a problem with the network or "
+"with the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:220
+msgid "Verfication failed"
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:221
+msgid ""
+"Verfing the upgrade failed. There may be a problem with the network or with "
+"the server. "
+msgstr ""
+
+#: ../UpdateManager/DistUpgradeFetcher.py:227
+#, fuzzy
+msgid "Authentication failed"
+msgstr "認證"
+
+#: ../UpdateManager/DistUpgradeFetcher.py:228
+msgid ""
+"Authenticating the upgrade failed. There may be a problem with the network "
+"or with the server. "
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:107
+#, python-format
+msgid "Downloading file %li of %li with %s/s"
+msgstr ""
+
+#: ../UpdateManager/GtkProgress.py:111
+#, python-format
+msgid "Downloading file %li of %li with unknown speed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:147
+msgid "The list of changes is not available yet. Please try again later."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:152
+#, fuzzy
+msgid ""
+"Failed to download the listof changes. Please check your internet connection."
+msgstr "無法下載更改紀錄。請檢查網路連線是否正常。"
+
+#. print "WARNING, keeping packages"
+#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
+msgid "Cannot install all available updates"
+msgstr "正在檢查更新套件..."
+
+#: ../UpdateManager/UpdateManager.py:184
+msgid ""
+"Some updates require the removal of further software. Use the function "
+"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
+"dist-upgrade\" in a terminal to update your system completely."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:194
+msgid "The following updates will be skipped:"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:330
+#, python-format
+msgid "Version %s: \n"
+msgstr "版本 %s: \n"
+
+#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
+msgid "Downloading the list of changes..."
+msgstr "正在下載更改紀錄"
+
+#: ../UpdateManager/UpdateManager.py:428
+#, fuzzy
+msgid "Your system is up-to-date"
+msgstr "系統已經在最新狀態!"
+
+#: ../UpdateManager/UpdateManager.py:437
+#, fuzzy, python-format
+msgid "You can install one update"
+msgid_plural "You can install %s updates"
+msgstr[0] "正在安裝軟體更新..."
+msgstr[1] "正在安裝軟體更新..."
+
+#: ../UpdateManager/UpdateManager.py:439
+#, fuzzy, python-format
+msgid "Download size: %s"
+msgstr "正在下載更改紀錄"
+
+#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
+msgid "Hide details"
+msgstr "細節"
+
+#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
+msgid "Show details"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:467
+msgid "Please wait, this can take some time."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:469
+msgid "Update is complete"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:583
+msgid "Repositories changed"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:584
+msgid ""
+"You need to reload the package list from the servers for your changes to "
+"take effect. Do you want to do this now?"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:617
+#, python-format
+msgid "New version: %s (Size: %s)"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:631
+#, fuzzy
+msgid "Your distribution is not supported anymore"
+msgstr "已經不再支援您用的發行版本"
+
+#: ../UpdateManager/UpdateManager.py:632
+msgid ""
+"You will not get any further security fixes or critical updates. Upgrade to "
+"a later version of Ubuntu Linux. See http://www.ubuntu.com for more "
+"information on upgrading."
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:683
+msgid "Only one software management tool is allowed to run at the same time"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:685
+msgid "Please close the other application e.g. 'aptitude' or 'Synaptic' first."
+msgstr ""
+
+#. we assert a clean cache
+#: ../UpdateManager/UpdateManager.py:702
+msgid "Software index is broken"
+msgstr ""
+
+#: ../UpdateManager/UpdateManager.py:703
+msgid ""
+"It is impossible to install or remove any software. Please use the package "
+"manager \"Synaptic\" or run \"sudo apt-get install -f\" in a terminal to fix "
+"this issue at first."
+msgstr ""
+
#: ../data/UpdateManager.glade.h:1
msgid ""
"You must check for updates manually\n"
@@ -520,10 +731,6 @@ msgstr "詳細說明"
msgid "Release Notes"
msgstr ""
-#: ../data/UpdateManager.glade.h:14
-msgid "Show details"
-msgstr ""
-
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
msgstr ""
@@ -888,14 +1095,6 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#, fuzzy
-#~ msgid "Installing updates"
-#~ msgstr "正在安裝軟體更新..."
-
-#, fuzzy
-#~ msgid "Check for available updates"
-#~ msgstr "正在檢查更新套件..."
-
#~ msgid "Sections:"
#~ msgstr "分類:"
@@ -1036,9 +1235,6 @@ msgstr ""
#~ msgid "Cancel downloading the changelog"
#~ msgstr "取消下載更改紀錄"
-#~ msgid "Downloading Changes"
-#~ msgstr "正在下載更改紀錄"
-
#~ msgid "You need to be root to run this program"
#~ msgstr "您需要 root 的身分方可使用本程式"
@@ -1090,18 +1286,12 @@ msgstr ""
#~ msgid "Choose a key-file"
#~ msgstr "選擇金鑰檔"
-#~ msgid "Your system is up-to-date!"
-#~ msgstr "系統已經在最新狀態!"
-
#~ msgid "There is one package available for updating."
#~ msgstr "有 1 個套件可以更新。"
#~ msgid "There are %s packages available for updating."
#~ msgstr "有 %s 個套件可以更新。"
-#~ msgid "Version %s: \n"
-#~ msgstr "版本 %s: \n"
-
#~ msgid "There are no updated packages"
#~ msgstr "沒有任何套件需要更新"
@@ -1139,9 +1329,6 @@ msgstr ""
#~ msgid "New version:"
#~ msgstr "新版本:"
-#~ msgid "Your distribution is no longer supported"
-#~ msgstr "已經不再支援您用的發行版本"
-
#~ msgid ""
#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
#~ "running will no longer get security fixes or other critical updates. "
@@ -1165,8 +1352,3 @@ msgstr ""
#~ msgid "Changes not found, the server may not be updated yet."
#~ msgstr "沒有更改紀錄,可能伺服器資訊未更新。"
-
-#~ msgid ""
-#~ "Failed to download changes. Please check if there is an active internet "
-#~ "connection."
-#~ msgstr "無法下載更改紀錄。請檢查網路連線是否正常。"
--
cgit v1.2.3
From 1a119e404b4f5bc69d892a2cda4227c6e45af831 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Mon, 10 Apr 2006 12:01:56 +0200
Subject: * fix the help string in update-manager (ubuntu: #23274)
---
UpdateManager/UpdateManager.py | 2 +-
debian/changelog | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py
index 93f17a3d..42982de4 100644
--- a/UpdateManager/UpdateManager.py
+++ b/UpdateManager/UpdateManager.py
@@ -182,7 +182,7 @@ class UpdateList:
msg = ("%s\n\n%s" % \
(_("Cannot install all available updates"),
_("Some updates require the removal of further software. "
- "Use the function \"Smart Upgrade\" of the package manager "
+ "Use the function \"Mark All Upgrades\" of the package manager "
"\"Synaptic\" or run \"sudo apt-get dist-upgrade\" in a "
"terminal to update your system completely.")))
dialog = gtk.MessageDialog(self.parent_window, 0, gtk.MESSAGE_INFO,
diff --git a/debian/changelog b/debian/changelog
index 08179c32..4afd08a0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ update-manager (0.42.2ubuntu12) dapper; urgency=low
* channels/*.in: typo fix
* po/POTFILES.in: add missing files (ubuntu: #38738)
+ * fix the help string in update-manager (ubuntu: #23274)
--
--
cgit v1.2.3
From e233d6aa893596a83fa5b6fc2f0069551584bca1 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Mon, 10 Apr 2006 12:06:07 +0200
Subject: * changelog updates
---
debian/changelog | 2 ++
1 file changed, 2 insertions(+)
diff --git a/debian/changelog b/debian/changelog
index 4afd08a0..303e46a2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,8 @@ update-manager (0.42.2ubuntu12) dapper; urgency=low
* channels/*.in: typo fix
* po/POTFILES.in: add missing files (ubuntu: #38738)
* fix the help string in update-manager (ubuntu: #23274)
+ * fix the bad grammar in "Cannot install all available updates"
+ (ubuntu: #32864)
--
--
cgit v1.2.3
From 19f32d8a5c1bbe61f6a5bd4c6d60e06027aeb598 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Wed, 12 Apr 2006 16:43:13 +0200
Subject: * merged the latest translations from rosetta
---
po/bg.po | 14 +-
po/br.po | 14 +-
po/cs.po | 22 +-
po/da.po | 19 +-
po/de.po | 81 ++++----
po/el.po | 69 +++----
po/en_CA.po | 14 +-
po/en_GB.po | 14 +-
po/es.po | 73 +++----
po/fi.po | 66 +++---
po/fr.po | 66 +++---
po/gl.po | 14 +-
po/he.po | 14 +-
po/hu.po | 374 ++++------------------------------
po/it.po | 158 ++++++++-------
po/ja.po | 544 +++++++++++++++++++++++++++++++-------------------
po/lt.po | 112 +++++++----
po/mk.po | 14 +-
po/nb.po | 84 ++++----
po/ne.po | 14 +-
po/nl.po | 6 +-
po/no.po | 6 +-
po/pa.po | 8 +-
po/pl.po | 61 +++---
po/pt.po | 47 ++---
po/pt_BR.po | 68 +++----
po/ro.po | 14 +-
po/rw.po | 12 +-
po/sk.po | 213 ++++++++++++--------
po/sv.po | 229 ++++++++++-----------
po/uk.po | 20 +-
po/update-manager.pot | 6 +-
po/vi.po | 15 +-
po/xh.po | 8 +-
po/zh_CN.po | 73 +++----
po/zh_HK.po | 14 +-
po/zh_TW.po | 14 +-
37 files changed, 1212 insertions(+), 1382 deletions(-)
diff --git a/po/bg.po b/po/bg.po
index a22a69bb..60ab98c3 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: update manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-23 00:18+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-04 20:18+0000\n"
"Last-Translator: Rostislav Raykov \n"
"Language-Team: Bulgarian \n"
"MIME-Version: 1.0\n"
@@ -602,8 +602,8 @@ msgstr "Проверка за обновления..."
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -1111,13 +1111,13 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Sections:"
-#~ msgstr "Раздели:"
-
#, fuzzy
#~ msgid "Oficially supported"
#~ msgstr "Официално поддържан"
+#~ msgid "Sections:"
+#~ msgstr "Раздели:"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Презареждане от сървъра на информацията за пакетите."
diff --git a/po/br.po b/po/br.po
index 4a310507..efcee48a 100644
--- a/po/br.po
+++ b/po/br.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME \n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-04 20:18+0000\n"
+"Last-Translator: Rosetta Administrators \n"
"Language-Team: Breton
\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -389,7 +389,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
-msgstr ""
+msgstr " "
#: ../DistUpgrade/DistUpgrade.glade.h:2
msgid ""
@@ -576,8 +576,8 @@ msgstr ""
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -818,7 +818,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:2
msgid " "
-msgstr ""
+msgstr " "
#: ../data/SoftwarePropertiesDialogs.glade.h:3
msgid ""
diff --git a/po/cs.po b/po/cs.po
index bde3d12e..37c7543f 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-26 19:43+0000\n"
-"Last-Translator: Texis \n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-12 13:20+0000\n"
+"Last-Translator: Ondřej Nový \n"
"Language-Team: Czech \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -413,7 +413,7 @@ msgstr "Upgradovat %s"
#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
-msgstr "Je třeba restartovat"
+msgstr "Vyžadován restartovat"
#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
@@ -469,7 +469,7 @@ msgstr "Detaily"
#: ../DistUpgrade/DistUpgrade.glade.h:10
msgid "Difference between the files"
-msgstr ""
+msgstr "Rozdíl mezi soubory"
#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
@@ -633,8 +633,8 @@ msgstr "Zobrazit a nainstalovat dostupné aktualizace"
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -997,7 +997,7 @@ msgstr "Zobrazit a nainstalovat dostupné aktualizace"
#: ../data/update-manager.desktop.in.h:2
msgid "Update Manager"
-msgstr "Spávce Aktualizací"
+msgstr "Správce Aktualizací"
#: ../data/update-manager.schemas.in.h:1
msgid ""
@@ -1147,6 +1147,9 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr "Žádný DFSG kompatibilní Software"
+#~ msgid "Oficially supported"
+#~ msgstr "Oficiálně podporované"
+
#~ msgid "Installing updates"
#~ msgstr "Instaluji aktualizace"
@@ -1155,6 +1158,3 @@ msgstr "Žádný DFSG kompatibilní Software"
#~ msgid "Sections:"
#~ msgstr "Sekce:"
-
-#~ msgid "Oficially supported"
-#~ msgstr "Oficiálně podporované"
diff --git a/po/da.po b/po/da.po
index 25d17280..1e399ac4 100644
--- a/po/da.po
+++ b/po/da.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-31 07:38+0000\n"
-"Last-Translator: Lennart Hansen \n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-10 19:53+0000\n"
+"Last-Translator: Andreas Lloyd \n"
"Language-Team: Danish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -29,7 +29,7 @@ msgstr "Efter %s dag(e)"
#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
-msgstr "Importer nøgle"
+msgstr "Importér nøgle"
#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
@@ -37,8 +37,7 @@ msgstr "Fejl under importering af den valgte fil"
#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
-msgstr ""
-"Den valgte fil lader ikke til at være en GPG nøgle fil eller er korrupt"
+msgstr "Den valgte fil lader ikke til at være en GPG nøglefil eller er korrupt"
#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
@@ -411,7 +410,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
-msgstr ""
+msgstr " "
#: ../DistUpgrade/DistUpgrade.glade.h:2
msgid ""
@@ -606,8 +605,8 @@ msgstr "Kan ikke installere opgraderingerne"
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -848,7 +847,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:2
msgid " "
-msgstr ""
+msgstr " "
#: ../data/SoftwarePropertiesDialogs.glade.h:3
msgid ""
diff --git a/po/de.po b/po/de.po
index f2d2aa70..18672ebf 100644
--- a/po/de.po
+++ b/po/de.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-23 11:00+0000\n"
-"Last-Translator: Julian Turner \n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-09 00:46+0000\n"
+"Last-Translator: Peter Jochum \n"
"Language-Team: German GNOME Translations \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -219,13 +219,13 @@ msgid "Could not install the upgrades"
msgstr "Konnte die Aktualisierungen nicht installieren"
#: ../DistUpgrade/DistUpgradeControler.py:214
-#, fuzzy
msgid ""
"The upgrade aborts now. Your system can be in an unusable state. A recovery "
"is now run (dpkg --configure -a)."
msgstr ""
-"Die Aktualisierung wird jetzt abgebrochen. Bitte versuchen Sie, Ihr System "
-"mit ›sudo apt-get install -f‹ oder Synaptic zu reparieren."
+"Die Aktualisierung wird jetzt abgebrochen. Ihr Systemkönnte in einem "
+"unbenutzbaren Zustand sein. Eine Wiederherstellung wird ausgeführt (dpkg --"
+"configure -a)."
#: ../DistUpgrade/DistUpgradeControler.py:230
msgid "Could not download the upgrades"
@@ -241,17 +241,16 @@ msgstr ""
"noch einmal. "
#: ../DistUpgrade/DistUpgradeControler.py:273
-#, fuzzy
msgid "Remove obsolete packages?"
msgstr "Veraltete Pakete entfernen?"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Skip This Step"
-msgstr ""
+msgstr "Diesen _Schritt überspringen"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Remove"
-msgstr ""
+msgstr "_Entfernen"
#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
@@ -314,17 +313,16 @@ msgid "%s remaining"
msgstr "%s verbleiben"
#: ../DistUpgrade/DistUpgradeViewGtk.py:110
-#, fuzzy, python-format
+#, python-format
msgid "Downloading file %li of %li"
-msgstr "Lade Datei %li von %li mit %s/s herunter"
+msgstr "Lade Datei %li von %li"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
#. -> longer term, move this code into python-apt
#: ../DistUpgrade/DistUpgradeViewGtk.py:140
-#, fuzzy
msgid "Applying changes"
-msgstr "Änderungen werden heruntergeladen..."
+msgstr "Änderungen werden angewendet"
#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
@@ -339,15 +337,17 @@ msgstr ""
#. self.expander.set_expanded(True)
#: ../DistUpgrade/DistUpgradeViewGtk.py:171
-#, python-format
+#, fuzzy, python-format
msgid ""
"Replace configuration file\n"
"'%s'?"
msgstr ""
+"Konfigurationsdatei\n"
+"%s ersetzen?"
#: ../DistUpgrade/DistUpgradeViewGtk.py:188
msgid "The 'diff' command was not found"
-msgstr ""
+msgstr "Das 'diff'-Kommando konnte nicht gefunden werden."
#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
@@ -467,12 +467,11 @@ msgid "Start the upgrade?"
msgstr "Aktualisierung starten?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
-#, fuzzy
msgid ""
"Upgrading to Ubuntu \"Dapper\" 6.06"
"span>"
msgstr ""
-"Aktualisiere auf Ubuntu ›Dapper‹ "
+"Aktualisiere auf Ubuntu \"Dapper\" "
"6.06"
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -486,6 +485,8 @@ msgstr "Details"
#: ../DistUpgrade/DistUpgrade.glade.h:10
msgid "Difference between the files"
msgstr ""
+": \t \t\r\n"
+"Unterschiede zwischen den Dateien"
#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
@@ -514,11 +515,12 @@ msgstr "Aktualisiere Ubuntu"
#: ../DistUpgrade/DistUpgrade.glade.h:17
msgid "_Keep"
msgstr ""
+": \t \t\r\n"
+"_Beihalten"
#: ../DistUpgrade/DistUpgrade.glade.h:18
-#, fuzzy
msgid "_Replace"
-msgstr "_Neu laden"
+msgstr "_Ersetzen"
#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
@@ -652,8 +654,8 @@ msgstr "Verfügbare Aktualisierungen anzeigen und installieren"
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -669,7 +671,7 @@ msgstr "Version %s: \n"
#: ../UpdateManager/UpdateManager.py:390
#, fuzzy
msgid "Downloading the list of changes..."
-msgstr "Lade Datei %li von %li mit %s/s herunter"
+msgstr "Lade Datei %li von %li"
#: ../UpdateManager/UpdateManager.py:428
#, fuzzy
@@ -766,9 +768,13 @@ msgid ""
"Your system does not check for updates automatically. You can configure this "
"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"."
msgstr ""
+"Sie müssen manuell nach Aktualisierungen suchen\n"
+"\n"
+"Ihr System sucht nicht automatisch nach verfügbaren Aktualisierungen. Sie "
+"können dieses Verhalten über die Menüpunkte \"System\" -> \"Systemverwaltung"
+"\" -> \"Software Eigenschaften\" ändern."
#: ../data/UpdateManager.glade.h:4
-#, fuzzy
msgid ""
"Analysing your system\n"
"\n"
@@ -778,7 +784,7 @@ msgstr ""
"Suche nach verfügbaren Aktualisierungen\n"
"\n"
"Software-Aktualisierungen können Fehler korrigieren, Sicherheitslücken "
-"stopfen und Ihnen neue Funktionen bieten."
+"beheben und Ihnen neue Funktionen bereitstellen."
#: ../data/UpdateManager.glade.h:7
msgid "Keep your system up-to-date"
@@ -793,13 +799,13 @@ msgid "Changes"
msgstr "Änderungen"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
msgid "Chec_k"
msgstr "_Prüfen"
#: ../data/UpdateManager.glade.h:11
+#, fuzzy
msgid "Check the software channels for new updates"
-msgstr ""
+msgstr "Überprüfe die Softwarekanäle auf neue Aktualisierungen"
#: ../data/UpdateManager.glade.h:12
msgid "Description"
@@ -842,16 +848,14 @@ msgid "_Hide this information in the future"
msgstr "Diese Information in Zukunft _verstecken"
#: ../data/UpdateManager.glade.h:22
-#, fuzzy
msgid "_Install Updates"
-msgstr "_Installieren"
+msgstr "Aktualisierungen _installieren"
#: ../data/SoftwareProperties.glade.h:1
msgid "Channels"
msgstr "Kanäle"
#: ../data/SoftwareProperties.glade.h:2
-#, fuzzy
msgid "Internet updates"
msgstr "Internet-Aktualisierungen"
@@ -860,9 +864,8 @@ msgid "Keys"
msgstr "Schlüssel"
#: ../data/SoftwareProperties.glade.h:4
-#, fuzzy
msgid "Add _Cdrom"
-msgstr "_CD hinzufügen"
+msgstr "CD-Rom _hinzufügen"
#: ../data/SoftwareProperties.glade.h:5
msgid "Authentication"
@@ -913,10 +916,9 @@ msgid "_Check for updates automatically:"
msgstr "_Automatisch auf Aktualisierungen überprüfen:"
#: ../data/SoftwareProperties.glade.h:15
-#, fuzzy
msgid "_Download updates in the background, but do not install them"
msgstr ""
-"Aktualisierungen _nur im Hintergrund herunterladen, aber nicht installieren"
+"Aktualisierungen im Hintergrund herunterladen, aber _nicht installieren"
#: ../data/SoftwareProperties.glade.h:16
msgid "_Install security updates without confirmation"
@@ -951,9 +953,8 @@ msgid "Comment:"
msgstr "Kommentar:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-#, fuzzy
msgid "Components:"
-msgstr "Komponenten"
+msgstr "Komponenten:"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
msgid "Distribution:"
@@ -1073,25 +1074,21 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../channels/Ubuntu.info.in:6
-#, fuzzy
msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 6.06 ›Dapper Drake‹"
#. Description
#: ../channels/Ubuntu.info.in:23
-#, fuzzy
msgid "Ubuntu 6.06 Security Updates"
msgstr "Ubuntu 6.06 Sicherheitsaktualisierungen"
#. Description
#: ../channels/Ubuntu.info.in:40
-#, fuzzy
msgid "Ubuntu 6.06 Updates"
msgstr "Ubuntu 6.06 Aktualisierungen"
#. Description
#: ../channels/Ubuntu.info.in:57
-#, fuzzy
msgid "Ubuntu 6.06 Backports"
msgstr "Ubuntu 6.06 Backports"
@@ -1181,6 +1178,9 @@ msgstr "DFSG-kompatible Software mit unfreien Abhängigkeiten"
msgid "Non-DFSG-compatible Software"
msgstr "Nicht DFSG-kompatible Software"
+#~ msgid "Oficially supported"
+#~ msgstr "Offiziell unterstützt"
+
#~ msgid "Installing updates"
#~ msgstr "Aktualisierungen werden installiert"
@@ -1190,9 +1190,6 @@ msgstr "Nicht DFSG-kompatible Software"
#~ msgid "Sections:"
#~ msgstr "Sparten:"
-#~ msgid "Oficially supported"
-#~ msgstr "Offiziell unterstützt"
-
#~ msgid "Reload the latest information about updates"
#~ msgstr "Aktuelle Paketinformationen vom Server beziehen"
diff --git a/po/el.po b/po/el.po
index 8471985a..d9d40b94 100644
--- a/po/el.po
+++ b/po/el.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: el\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-23 07:09+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-05 14:17+0000\n"
"Last-Translator: Kostas Papadimas \n"
"Language-Team: Greek \n"
"MIME-Version: 1.0\n"
@@ -42,7 +42,7 @@ msgstr ""
#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
-msgstr "Αφάλμα απομάκρυνσης του κλειδιού"
+msgstr "Σφάλμα απομάκρυνσης του κλειδιού"
#: ../SoftwareProperties/SoftwareProperties.py:437
msgid "The key you selected could not be removed. Please report this as a bug."
@@ -216,14 +216,12 @@ msgid "Could not install the upgrades"
msgstr "Αδυναμία εγκατάστασης των αναβαθμίσεων"
#: ../DistUpgrade/DistUpgradeControler.py:214
-#, fuzzy
msgid ""
"The upgrade aborts now. Your system can be in an unusable state. A recovery "
"is now run (dpkg --configure -a)."
msgstr ""
"Η αναβάθμιση τώρα θα τερματιστεί. Το σύστημα σας μπορεί να γίνει ασταθές. "
-"Παρακαλώ χρησιμοποιήστε την εντολή 'sudo apt-get install -f' ή το Synaptic "
-"για να διορθώσετε το σύστημα σας."
+"Εκτελείται μια διεργασία ανάκτησης (dpkg --configure -a)."
#: ../DistUpgrade/DistUpgradeControler.py:230
msgid "Could not download the upgrades"
@@ -238,17 +236,16 @@ msgstr ""
"διαδίκτυο ή το μέσο εγκατάστασης και προσπαθήστε ξανά. "
#: ../DistUpgrade/DistUpgradeControler.py:273
-#, fuzzy
msgid "Remove obsolete packages?"
msgstr "Αφαίρεση παρωχημένων πακέτων;"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Skip This Step"
-msgstr ""
+msgstr "Παράκα_μψη αυτου του βήματος"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Remove"
-msgstr ""
+msgstr "_Απομάκρυνση"
#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
@@ -311,16 +308,16 @@ msgid "%s remaining"
msgstr "%s απομένουν"
#: ../DistUpgrade/DistUpgradeViewGtk.py:110
-#, fuzzy, python-format
+#, python-format
msgid "Downloading file %li of %li"
-msgstr "Λήψη αρχείου %li από %li με %s/s"
+msgstr "Λήψη αρχείου %li από %li"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
#. -> longer term, move this code into python-apt
#: ../DistUpgrade/DistUpgradeViewGtk.py:140
msgid "Applying changes"
-msgstr ""
+msgstr "Γίνεται εφαρμογή αλλαγών"
#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
@@ -338,10 +335,12 @@ msgid ""
"Replace configuration file\n"
"'%s'?"
msgstr ""
+"Αντικατάσταση αρχείου ρύθμισης\n"
+"'%s';"
#: ../DistUpgrade/DistUpgradeViewGtk.py:188
msgid "The 'diff' command was not found"
-msgstr ""
+msgstr "Η εντολή 'diff' δεν βρέθηκε"
#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
@@ -461,12 +460,11 @@ msgid "Start the upgrade?"
msgstr "Έναρξη της αναβάθμισης;"
#: ../DistUpgrade/DistUpgrade.glade.h:7
-#, fuzzy
msgid ""
"Upgrading to Ubuntu \"Dapper\" 6.06"
"span>"
msgstr ""
-"Αναβάθμιση σε Ubuntu \"Dapper\" 6.04"
+"Αναβάθμιση σε Ubuntu \"Dapper\" 6.06"
"span>"
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -479,7 +477,7 @@ msgstr "Λεπτομέρειες"
#: ../DistUpgrade/DistUpgrade.glade.h:10
msgid "Difference between the files"
-msgstr ""
+msgstr "Διαφορά μεταξύ των αρχείων"
#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
@@ -507,12 +505,11 @@ msgstr "Αναβάθμιση Ubuntu"
#: ../DistUpgrade/DistUpgrade.glade.h:17
msgid "_Keep"
-msgstr ""
+msgstr "_Διατήρηση"
#: ../DistUpgrade/DistUpgrade.glade.h:18
-#, fuzzy
msgid "_Replace"
-msgstr "Ανα_νέωση"
+msgstr "Αντικατά_σταση"
#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
@@ -643,8 +640,8 @@ msgstr "Προβολή και εγκατάσταση διαθέσιμων ενη
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -659,7 +656,7 @@ msgstr ""
#: ../UpdateManager/UpdateManager.py:390
#, fuzzy
msgid "Downloading the list of changes..."
-msgstr "Λήψη αρχείου %li από %li με %s/s"
+msgstr "Λήψη αρχείου %li από %li"
#: ../UpdateManager/UpdateManager.py:428
msgid "Your system is up-to-date"
@@ -755,14 +752,13 @@ msgstr ""
"συστήματος\" -> \"Ιδιότητες λογισμικού\"."
#: ../data/UpdateManager.glade.h:4
-#, fuzzy
msgid ""
"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-"Γίνεται έλεγχος για διαθέσιμες ενημερώσεις\n"
+"Γίνεται ανάλυση του συστήματος σας\n"
"\n"
"Οι ενημερώσεις λογισμικού μπορούν να διορθώνουν σφάλματα, κενά ασφαλείας και "
"να παρέχουν νέες λειτουργίες."
@@ -780,13 +776,12 @@ msgid "Changes"
msgstr "Αλλαγές"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
msgid "Chec_k"
msgstr "Ελε_γχος"
#: ../data/UpdateManager.glade.h:11
msgid "Check the software channels for new updates"
-msgstr ""
+msgstr "Έλεγχος των καναλιών λογισμικού για ενημερώσεις"
#: ../data/UpdateManager.glade.h:12
msgid "Description"
@@ -895,7 +890,6 @@ msgid "_Check for updates automatically:"
msgstr "Αυτόματος έλεγ_χος για ενημερώσεις κάθε:"
#: ../data/SoftwareProperties.glade.h:15
-#, fuzzy
msgid "_Download updates in the background, but do not install them"
msgstr "Λή_ψη ενημερώσεων στο παρασκήνιο χωρίς να εγκατασταθούν"
@@ -933,9 +927,8 @@ msgid "Comment:"
msgstr "Σχόλιο:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-#, fuzzy
msgid "Components:"
-msgstr "Σχόλιο:"
+msgstr "Στοιχεία:"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
msgid "Distribution:"
@@ -1053,27 +1046,23 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../channels/Ubuntu.info.in:6
-#, fuzzy
msgid "Ubuntu 6.06 'Dapper Drake'"
-msgstr "Ubuntu 6.04 'Dapper Drake'"
+msgstr "Ubuntu 6.06 'Dapper Drake'"
#. Description
#: ../channels/Ubuntu.info.in:23
-#, fuzzy
msgid "Ubuntu 6.06 Security Updates"
-msgstr "Ενημερώσεις ασφαλείας Ubuntu 6.04"
+msgstr "Ενημερώσεις ασφαλείας Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:40
-#, fuzzy
msgid "Ubuntu 6.06 Updates"
-msgstr "Ενημερώσεις Ubuntu 6.04"
+msgstr "Ενημερώσεις Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:57
-#, fuzzy
msgid "Ubuntu 6.06 Backports"
-msgstr "Ubuntu 6.04 Backports"
+msgstr "Ubuntu 6.06 Backports"
#. Description
#: ../channels/Ubuntu.info.in:74
@@ -1161,6 +1150,9 @@ msgstr "Λογισμικό συμβατό με DFSG με μη Ελεύθερες
msgid "Non-DFSG-compatible Software"
msgstr "Λογισμικό μη συμβατό με DFSG"
+#~ msgid "Oficially supported"
+#~ msgstr "Oficially supported"
+
#~ msgid "Installing updates"
#~ msgstr "Εγκατάσταση ενημερώσεων"
@@ -1170,9 +1162,6 @@ msgstr "Λογισμικό μη συμβατό με DFSG"
#~ msgid "Sections:"
#~ msgstr "Ενότητες:"
-#~ msgid "Oficially supported"
-#~ msgstr "Oficially supported"
-
#~ msgid "Software Channel"
#~ msgstr "Κανάλι λογισμικού"
diff --git a/po/en_CA.po b/po/en_CA.po
index 533ea694..0bf80595 100644
--- a/po/en_CA.po
+++ b/po/en_CA.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-23 00:18+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-04 20:23+0000\n"
"Last-Translator: Adam Weinberger \n"
"Language-Team: Canadian English \n"
"MIME-Version: 1.0\n"
@@ -598,8 +598,8 @@ msgstr ""
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -1117,13 +1117,13 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Sections:"
-#~ msgstr "Sections:"
-
#, fuzzy
#~ msgid "Oficially supported"
#~ msgstr "Officially supported"
+#~ msgid "Sections:"
+#~ msgstr "Sections:"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Reload the package information from the server."
diff --git a/po/en_GB.po b/po/en_GB.po
index d1ad361c..b668c040 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-23 00:18+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-04 20:23+0000\n"
"Last-Translator: Abigail Brady \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@@ -597,8 +597,8 @@ msgstr ""
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -1117,13 +1117,13 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Sections:"
-#~ msgstr "Sections:"
-
#, fuzzy
#~ msgid "Oficially supported"
#~ msgstr "Officially supported"
+#~ msgid "Sections:"
+#~ msgstr "Sections:"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Reload the package information from the server."
diff --git a/po/es.po b/po/es.po
index 6d7accac..d012c46b 100644
--- a/po/es.po
+++ b/po/es.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: es\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-23 11:17+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-08 13:26+0000\n"
"Last-Translator: Ricardo Pérez López \n"
"Language-Team: Spanish \n"
"MIME-Version: 1.0\n"
@@ -220,14 +220,13 @@ msgid "Could not install the upgrades"
msgstr "No se han podido instalar las actualizaciones"
#: ../DistUpgrade/DistUpgradeControler.py:214
-#, fuzzy
msgid ""
"The upgrade aborts now. Your system can be in an unusable state. A recovery "
"is now run (dpkg --configure -a)."
msgstr ""
"La actualización se cancelará ahora. Su sistema puede haber quedado en un "
-"estado no usable. Por favor, intente con «sudo apt-get install -f» en una "
-"terminal, o bien con Synaptic, para arreglar su sistema."
+"estado inutilizable. Se llevará a cabo ahora una recuperación (dpkg --"
+"configure -a)."
#: ../DistUpgrade/DistUpgradeControler.py:230
msgid "Could not download the upgrades"
@@ -242,17 +241,16 @@ msgstr ""
"internet (o su soporte de instalación) y vuelva a intentarlo. "
#: ../DistUpgrade/DistUpgradeControler.py:273
-#, fuzzy
msgid "Remove obsolete packages?"
msgstr "¿Desinstalar los paquetes obsoletos?"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Skip This Step"
-msgstr ""
+msgstr "_Saltar este paso"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Remove"
-msgstr ""
+msgstr "_Quitar"
#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
@@ -315,17 +313,16 @@ msgid "%s remaining"
msgstr "%s restantes"
#: ../DistUpgrade/DistUpgradeViewGtk.py:110
-#, fuzzy, python-format
+#, python-format
msgid "Downloading file %li of %li"
-msgstr "Descargando archivo %li de %li a %s/s"
+msgstr "Descargando archivo %li de %li"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
#. -> longer term, move this code into python-apt
#: ../DistUpgrade/DistUpgradeViewGtk.py:140
-#, fuzzy
msgid "Applying changes"
-msgstr "Descargando informe de cambios..."
+msgstr "Aplicando los cambios"
#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
@@ -344,10 +341,12 @@ msgid ""
"Replace configuration file\n"
"'%s'?"
msgstr ""
+"¿Desea reemplazar el archivo de configuración\n"
+"«%s»?"
#: ../DistUpgrade/DistUpgradeViewGtk.py:188
msgid "The 'diff' command was not found"
-msgstr ""
+msgstr "No se ha encontrado el comando «diff»"
#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
@@ -466,12 +465,11 @@ msgid "Start the upgrade?"
msgstr "¿Comenzar la actualización?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
-#, fuzzy
msgid ""
"Upgrading to Ubuntu \"Dapper\" 6.06"
"span>"
msgstr ""
-"Actualizando a Ubuntu «Dapper» 6.04"
+"Actualizando a Ubuntu «Dapper» 6.06"
"span>"
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -484,7 +482,7 @@ msgstr "Detalles"
#: ../DistUpgrade/DistUpgrade.glade.h:10
msgid "Difference between the files"
-msgstr ""
+msgstr "Diferencia entre los archivos"
#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
@@ -512,12 +510,11 @@ msgstr "Actualizando Ubuntu"
#: ../DistUpgrade/DistUpgrade.glade.h:17
msgid "_Keep"
-msgstr ""
+msgstr "_Conservar"
#: ../DistUpgrade/DistUpgrade.glade.h:18
-#, fuzzy
msgid "_Replace"
-msgstr "_Recargar"
+msgstr "_Sustituir"
#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
@@ -651,8 +648,8 @@ msgstr "Muestra e instala las actualizaciones disponibles"
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -668,7 +665,7 @@ msgstr "Versión %s: \n"
#: ../UpdateManager/UpdateManager.py:390
#, fuzzy
msgid "Downloading the list of changes..."
-msgstr "Descargando archivo %li de %li a %s/s"
+msgstr "Descargando archivo %li de %li"
#: ../UpdateManager/UpdateManager.py:428
#, fuzzy
@@ -772,14 +769,13 @@ msgstr ""
"software»."
#: ../data/UpdateManager.glade.h:4
-#, fuzzy
msgid ""
"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-"Comprobando actualizaciones disponibles\n"
+"Analizando su sistema\n"
"\n"
"Las actualizaciones de software pueden corregir errores, eliminar fallos de "
"seguridad, y proporcionar nuevas funcionalidades."
@@ -797,13 +793,12 @@ msgid "Changes"
msgstr "Cambios"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
msgid "Chec_k"
msgstr "_Comprobar"
#: ../data/UpdateManager.glade.h:11
msgid "Check the software channels for new updates"
-msgstr ""
+msgstr "Comprobar si hay nuevas actualizaciones en los canales de software"
#: ../data/UpdateManager.glade.h:12
msgid "Description"
@@ -815,7 +810,7 @@ msgstr "Notas de publicación"
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
-msgstr "Mostrar el progreso de cada archivo individua"
+msgstr "Mostrar el progreso de cada archivo individual"
#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
@@ -912,9 +907,8 @@ msgid "_Check for updates automatically:"
msgstr "_Comprobar actualizaciones automáticamente:"
#: ../data/SoftwareProperties.glade.h:15
-#, fuzzy
msgid "_Download updates in the background, but do not install them"
-msgstr "_Descargar actualizaciones en segundo plano, pero no instalarlas"
+msgstr "_Descargar actualizaciones en segundo plano, pero sin instalarlas"
#: ../data/SoftwareProperties.glade.h:16
msgid "_Install security updates without confirmation"
@@ -950,9 +944,8 @@ msgid "Comment:"
msgstr "Comentario:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-#, fuzzy
msgid "Components:"
-msgstr "Componentes"
+msgstr "Componentes:"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
msgid "Distribution:"
@@ -1071,27 +1064,23 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../channels/Ubuntu.info.in:6
-#, fuzzy
msgid "Ubuntu 6.06 'Dapper Drake'"
-msgstr "Ubuntu 6.04 «Dapper Drake»"
+msgstr "Ubuntu 6.06 «Dapper Drake»"
#. Description
#: ../channels/Ubuntu.info.in:23
-#, fuzzy
msgid "Ubuntu 6.06 Security Updates"
-msgstr "Actualizaciones de seguridad de Ubuntu 6.04"
+msgstr "Actualizaciones de seguridad de Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:40
-#, fuzzy
msgid "Ubuntu 6.06 Updates"
-msgstr "Actualizaciones de Ubuntu 6.04"
+msgstr "Actualizaciones de Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:57
-#, fuzzy
msgid "Ubuntu 6.06 Backports"
-msgstr "«Backports» de Ubuntu 6.04"
+msgstr "«Backports» de Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:74
@@ -1179,6 +1168,9 @@ msgstr "Software compatible con la DFSG con dependencias no libres"
msgid "Non-DFSG-compatible Software"
msgstr "Software no compatible con la DFSG"
+#~ msgid "Oficially supported"
+#~ msgstr "Soportado oficialmente"
+
#~ msgid "Installing updates"
#~ msgstr "Instalando actualizaciones"
@@ -1188,9 +1180,6 @@ msgstr "Software no compatible con la DFSG"
#~ msgid "Sections:"
#~ msgstr "Secciones:"
-#~ msgid "Oficially supported"
-#~ msgstr "Soportado oficialmente"
-
#~ msgid "Reload the latest information about updates"
#~ msgstr "Recargar la última información sobre actualizaciones"
diff --git a/po/fi.po b/po/fi.po
index c3242a87..9765f20c 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-27 10:27+0000\n"
-"Last-Translator: Marko Kervinen \n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-10 07:26+0000\n"
+"Last-Translator: Timo Jyrinki \n"
"Language-Team: Finnish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -214,14 +214,12 @@ msgid "Could not install the upgrades"
msgstr "Ei voitu asentaa päivityksiä"
#: ../DistUpgrade/DistUpgradeControler.py:214
-#, fuzzy
msgid ""
"The upgrade aborts now. Your system can be in an unusable state. A recovery "
"is now run (dpkg --configure -a)."
msgstr ""
"Päivitys keskeytyy. Järjestelmäsi voi olla käyttökelvottomassa tilassa. "
-"Kokeile komentoa 'sudo apt-get install -f' tai Synaptic-ohjelmaa "
-"korjataksesi järjestelmän."
+"Korjaustoimenpiteet käynnistetään (dpkg --configure -a)."
#: ../DistUpgrade/DistUpgradeControler.py:230
msgid "Could not download the upgrades"
@@ -308,17 +306,16 @@ msgid "%s remaining"
msgstr "%s jäljellä"
#: ../DistUpgrade/DistUpgradeViewGtk.py:110
-#, fuzzy, python-format
+#, python-format
msgid "Downloading file %li of %li"
-msgstr "Ladataan tiedostoa %li/%li nopeudella %s/s"
+msgstr "Noudetaan tiedostoa %li/%li"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
#. -> longer term, move this code into python-apt
#: ../DistUpgrade/DistUpgradeViewGtk.py:140
-#, fuzzy
msgid "Applying changes"
-msgstr "Ladataan muutoksia..."
+msgstr "Toteutetaan muutoksia"
#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
@@ -336,10 +333,12 @@ msgid ""
"Replace configuration file\n"
"'%s'?"
msgstr ""
+"Korvataanko asetustiedosto\n"
+"'%s'?"
#: ../DistUpgrade/DistUpgradeViewGtk.py:188
msgid "The 'diff' command was not found"
-msgstr ""
+msgstr "Komentoa 'diff' ei löytynyt"
#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
@@ -456,13 +455,12 @@ msgid "Start the upgrade?"
msgstr "Aloita päivitys?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
-#, fuzzy
msgid ""
"Upgrading to Ubuntu \"Dapper\" 6.06"
"span>"
msgstr ""
-"Päivitetään seuraavaksi: Ubuntu "
-"\"Dapper\" 6.04"
+"Päivitetään versioon: Ubuntu \"Dapper"
+"\" 6.06"
#: ../DistUpgrade/DistUpgrade.glade.h:8
msgid "Cleaning up"
@@ -474,7 +472,7 @@ msgstr "Yksityiskohdat"
#: ../DistUpgrade/DistUpgrade.glade.h:10
msgid "Difference between the files"
-msgstr ""
+msgstr "Tiedostojen väliset erot"
#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
@@ -502,12 +500,11 @@ msgstr "Päivitetään Ubuntua"
#: ../DistUpgrade/DistUpgrade.glade.h:17
msgid "_Keep"
-msgstr ""
+msgstr "_Pidä"
#: ../DistUpgrade/DistUpgrade.glade.h:18
-#, fuzzy
msgid "_Replace"
-msgstr "_Lataa uudelleen"
+msgstr "_Korvaa"
#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
@@ -639,8 +636,8 @@ msgstr "Näytä ja asenna saatavilla olevat päivitykset"
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -656,7 +653,7 @@ msgstr "Versio: %s: \n"
#: ../UpdateManager/UpdateManager.py:390
#, fuzzy
msgid "Downloading the list of changes..."
-msgstr "Ladataan tiedostoa %li/%li nopeudella %s/s"
+msgstr "Noudetaan tiedostoa %li/%li"
#: ../UpdateManager/UpdateManager.py:428
#, fuzzy
@@ -759,7 +756,6 @@ msgstr ""
"\"."
#: ../data/UpdateManager.glade.h:4
-#, fuzzy
msgid ""
"Analysing your system\n"
"\n"
@@ -784,13 +780,12 @@ msgid "Changes"
msgstr "Muutokset"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
msgid "Chec_k"
-msgstr "_Check"
+msgstr "_Tarkista"
#: ../data/UpdateManager.glade.h:11
msgid "Check the software channels for new updates"
-msgstr ""
+msgstr "Tarkista onko ohjelmakanavissa uusia päivityksiä"
#: ../data/UpdateManager.glade.h:12
msgid "Description"
@@ -935,9 +930,8 @@ msgid "Comment:"
msgstr "Kommentti:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-#, fuzzy
msgid "Components:"
-msgstr "Komponentit"
+msgstr "Komponentit:"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
msgid "Distribution:"
@@ -1054,27 +1048,23 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../channels/Ubuntu.info.in:6
-#, fuzzy
msgid "Ubuntu 6.06 'Dapper Drake'"
-msgstr "Ubuntu 6.04 'Dapper Drake'"
+msgstr "Ubuntu 6.06 'Dapper Drake'"
#. Description
#: ../channels/Ubuntu.info.in:23
-#, fuzzy
msgid "Ubuntu 6.06 Security Updates"
-msgstr "Ubuntu 6.04 turvallisuuspäivitykset"
+msgstr "Ubuntu 6.06 turvallisuuspäivitykset"
#. Description
#: ../channels/Ubuntu.info.in:40
-#, fuzzy
msgid "Ubuntu 6.06 Updates"
-msgstr "Ubuntu 6.04 päivitykset"
+msgstr "Ubuntu 6.06 päivitykset"
#. Description
#: ../channels/Ubuntu.info.in:57
-#, fuzzy
msgid "Ubuntu 6.06 Backports"
-msgstr "Ubuntu 6.04 takaisinsovitukset"
+msgstr "Ubuntu 6.06 takaisinsovitukset"
#. Description
#: ../channels/Ubuntu.info.in:74
@@ -1163,6 +1153,9 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr "DFSG-epäyhteensopivat ohjelmat"
+#~ msgid "Oficially supported"
+#~ msgstr "Virallisesti tuettu"
+
#~ msgid "Remove obsolete Packages?"
#~ msgstr "Poista vanhentuneet paketit?"
@@ -1178,9 +1171,6 @@ msgstr "DFSG-epäyhteensopivat ohjelmat"
#~ msgid "Sections:"
#~ msgstr "Osastot:"
-#~ msgid "Oficially supported"
-#~ msgstr "Virallisesti tuettu"
-
#~ msgid "Software Channel"
#~ msgstr "Ohjelmistokanava"
diff --git a/po/fr.po b/po/fr.po
index 75914ce5..9bd25b46 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager 0.37.2\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-04-02 06:12+0000\n"
-"Last-Translator: Alexandre Patenaude \n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-10 09:41+0000\n"
+"Last-Translator: benje \n"
"Language-Team: French \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -223,8 +223,8 @@ msgid ""
"The upgrade aborts now. Your system can be in an unusable state. A recovery "
"is now run (dpkg --configure -a)."
msgstr ""
-"La mise à jour a été abandonnée maintenant. Votre système pourrait être dans "
-"un état instable. Veuillez essayer \"sudo apt-get install -f\" ou utilisez "
+"La mise à jour abandonne maintenant. Votre système pourrait être dans un "
+"état inutilisable. Veuillez essayer \"sudo apt-get install -f\" ou utilisez "
"synaptic pour réparer votre système."
#: ../DistUpgrade/DistUpgradeControler.py:230
@@ -240,17 +240,16 @@ msgstr ""
"connexion Internet ou votre médium d'installation, et réessayez. "
#: ../DistUpgrade/DistUpgradeControler.py:273
-#, fuzzy
msgid "Remove obsolete packages?"
msgstr "Enlever les paquets obsolètes ?"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Skip This Step"
-msgstr ""
+msgstr "_Passer cette étape"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Remove"
-msgstr ""
+msgstr "_Supprimer"
#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
@@ -313,17 +312,16 @@ msgid "%s remaining"
msgstr "%s restants"
#: ../DistUpgrade/DistUpgradeViewGtk.py:110
-#, fuzzy, python-format
+#, python-format
msgid "Downloading file %li of %li"
-msgstr "Téléchargement du fichier %li sur %li à %s/s"
+msgstr "Téléchargement du fichier %li sur %li"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
#. -> longer term, move this code into python-apt
#: ../DistUpgrade/DistUpgradeViewGtk.py:140
-#, fuzzy
msgid "Applying changes"
-msgstr "Téléchargement des changements..."
+msgstr "Application des changements"
#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
@@ -341,10 +339,12 @@ msgid ""
"Replace configuration file\n"
"'%s'?"
msgstr ""
+"Remplacer le fichier de configuration\n"
+"'%s' ?"
#: ../DistUpgrade/DistUpgradeViewGtk.py:188
msgid "The 'diff' command was not found"
-msgstr ""
+msgstr "La commande 'diff' n'a pas été trouvée"
#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
@@ -463,7 +463,6 @@ msgid "Start the upgrade?"
msgstr "Démarrer la mise à jour ?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
-#, fuzzy
msgid ""
"Upgrading to Ubuntu \"Dapper\" 6.06"
"span>"
@@ -481,7 +480,7 @@ msgstr "Détails"
#: ../DistUpgrade/DistUpgrade.glade.h:10
msgid "Difference between the files"
-msgstr ""
+msgstr "Différence entre les fichiers"
#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
@@ -509,12 +508,11 @@ msgstr "Mettre à jour Ubuntu"
#: ../DistUpgrade/DistUpgrade.glade.h:17
msgid "_Keep"
-msgstr ""
+msgstr "_Conserver"
#: ../DistUpgrade/DistUpgrade.glade.h:18
-#, fuzzy
msgid "_Replace"
-msgstr "A_ctualiser"
+msgstr "_Remplacer"
#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
@@ -648,8 +646,8 @@ msgstr "Afficher et installer les mises à jour disponibles"
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -665,7 +663,7 @@ msgstr "Version %s : \n"
#: ../UpdateManager/UpdateManager.py:390
#, fuzzy
msgid "Downloading the list of changes..."
-msgstr "Téléchargement du fichier %li sur %li à %s/s"
+msgstr "Téléchargement du fichier %li sur %li"
#: ../UpdateManager/UpdateManager.py:428
#, fuzzy
@@ -777,7 +775,7 @@ msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-"Recherche de mises à jour\n"
+"Recherche de mises à jour pour votre système\n"
"\n"
"Les mises à jour de logiciels peuvent corriger des erreurs, éliminer des "
"problèmes de sécurité et apporter de nouvelles fonctionalités."
@@ -795,13 +793,13 @@ msgid "Changes"
msgstr "Changements"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
msgid "Chec_k"
msgstr "_Vérifier"
#: ../data/UpdateManager.glade.h:11
+#, fuzzy
msgid "Check the software channels for new updates"
-msgstr ""
+msgstr "Vérifie les mises à jour de logiciels"
#: ../data/UpdateManager.glade.h:12
msgid "Description"
@@ -911,10 +909,9 @@ msgid "_Check for updates automatically:"
msgstr "_Rechercher des mises à jour automatiquement:"
#: ../data/SoftwareProperties.glade.h:15
-#, fuzzy
msgid "_Download updates in the background, but do not install them"
msgstr ""
-"_Télécharger des mises à jour automatiquement, mais ne pas les installer"
+"Télécharger les mises à jour en arrière-plan, mais ne pas les installer"
#: ../data/SoftwareProperties.glade.h:16
msgid "_Install security updates without confirmation"
@@ -951,9 +948,8 @@ msgid "Comment:"
msgstr "Commentaire :"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-#, fuzzy
msgid "Components:"
-msgstr "Composants"
+msgstr "Composants :"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
msgid "Distribution:"
@@ -1073,27 +1069,23 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../channels/Ubuntu.info.in:6
-#, fuzzy
msgid "Ubuntu 6.06 'Dapper Drake'"
-msgstr "Ubuntu 6.04 'Dapper Drake'"
+msgstr "Ubuntu 6.06 'Dapper Drake'"
#. Description
#: ../channels/Ubuntu.info.in:23
-#, fuzzy
msgid "Ubuntu 6.06 Security Updates"
msgstr "Mises à jour de sécurité pour Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:40
-#, fuzzy
msgid "Ubuntu 6.06 Updates"
msgstr "Mises à jour pour Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:57
-#, fuzzy
msgid "Ubuntu 6.06 Backports"
-msgstr "Mises à jour \"backports\" pour Ubuntu 6.06"
+msgstr "\"Backports\" pour Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:74
@@ -1183,6 +1175,9 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
+#~ msgid "Oficially supported"
+#~ msgstr "Supporté officiellement"
+
#~ msgid "Installing updates"
#~ msgstr "Installation des mises à jour"
@@ -1192,9 +1187,6 @@ msgstr "Logiciel non libre (selon les lignes directrices du projet Debian)"
#~ msgid "Sections:"
#~ msgstr "Sections :"
-#~ msgid "Oficially supported"
-#~ msgstr "Supporté officiellement"
-
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Recharger les informations des paquets depuis le serveur"
diff --git a/po/gl.po b/po/gl.po
index 8446a221..f702a6cb 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: gl\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-23 00:18+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-04 20:23+0000\n"
"Last-Translator: Ignacio Casal Quinteiro \n"
"Language-Team: Galego\n"
"MIME-Version: 1.0\n"
@@ -604,8 +604,8 @@ msgstr "Comprobando se hai actualizacións..."
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -1113,13 +1113,13 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Sections:"
-#~ msgstr "Seccións:"
-
#, fuzzy
#~ msgid "Oficially supported"
#~ msgstr "Soporte oficial"
+#~ msgid "Sections:"
+#~ msgstr "Seccións:"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Recargar a información do paquete desde o servidor."
diff --git a/po/he.po b/po/he.po
index b2d24451..9285c3fa 100644
--- a/po/he.po
+++ b/po/he.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager.HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-25 18:19+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-04 20:23+0000\n"
"Last-Translator: Yaniv Abir \n"
"Language-Team: Hebrew \n"
"MIME-Version: 1.0\n"
@@ -595,8 +595,8 @@ msgstr "בודק אם יש עדכונים..."
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -1104,13 +1104,13 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Sections:"
-#~ msgstr "מחלקה:"
-
#, fuzzy
#~ msgid "Oficially supported"
#~ msgstr "נתמך רשמית"
+#~ msgid "Sections:"
+#~ msgstr "מחלקה:"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "טען מחדש את המידע על החבילה מהשרת"
diff --git a/po/hu.po b/po/hu.po
index b533fec0..1e0c12d0 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager.HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-23 12:21+0000\n"
-"Last-Translator: Tamás Nepusz \n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-11 20:19+0000\n"
+"Last-Translator: Gabor Kelemen \n"
"Language-Team: Hungarian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -212,14 +212,13 @@ msgid "Could not install the upgrades"
msgstr "A frissítések nem telepíthetőek"
#: ../DistUpgrade/DistUpgradeControler.py:214
-#, fuzzy
msgid ""
"The upgrade aborts now. Your system can be in an unusable state. A recovery "
"is now run (dpkg --configure -a)."
msgstr ""
"A frissítés most félbeszakad. Előfordulhat, hogy a rendszer használhatatlan "
-"állapotban van. Az esetleges hibákat a 'sudo apt-get install -f' vagy a "
-"Synaptic használatával javíthatja ki."
+"állapotban van. Most egy helyreállítás kerül futtatásra (dpkg --configure -"
+"a)."
#: ../DistUpgrade/DistUpgradeControler.py:230
msgid "Could not download the upgrades"
@@ -234,17 +233,16 @@ msgstr ""
"a telepítő médiát és próbálja újra. "
#: ../DistUpgrade/DistUpgradeControler.py:273
-#, fuzzy
msgid "Remove obsolete packages?"
-msgstr "Eltávolítsam az elavult csomagokat?"
+msgstr "Eltávolítja az elavult csomagokat?"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Skip This Step"
-msgstr ""
+msgstr "Ezen lé_pés kihagyása"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Remove"
-msgstr ""
+msgstr "_Eltávolítás"
#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
@@ -307,17 +305,16 @@ msgid "%s remaining"
msgstr "%s van hátra"
#: ../DistUpgrade/DistUpgradeViewGtk.py:110
-#, fuzzy, python-format
+#, python-format
msgid "Downloading file %li of %li"
-msgstr "Fájlok letöltése (%li, összesen: %li), sebesség: %s/s"
+msgstr "Fájl letöltése: %li/%li"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
#. -> longer term, move this code into python-apt
#: ../DistUpgrade/DistUpgradeViewGtk.py:140
-#, fuzzy
msgid "Applying changes"
-msgstr "Módosítások letöltése..."
+msgstr "Módosítások alkalmazása..."
#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
@@ -335,10 +332,13 @@ msgid ""
"Replace configuration file\n"
"'%s'?"
msgstr ""
+"Lecseréli a(z)\n"
+"\"%s\"\n"
+"konfigurációs fájlt?"
#: ../DistUpgrade/DistUpgradeViewGtk.py:188
msgid "The 'diff' command was not found"
-msgstr ""
+msgstr "A 'diff' parancs nem található"
#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
@@ -454,12 +454,11 @@ msgid "Start the upgrade?"
msgstr "Megkezdi a frissítést?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
-#, fuzzy
msgid ""
"Upgrading to Ubuntu \"Dapper\" 6.06"
"span>"
msgstr ""
-"Frissítés az Ubuntu \"Dapper\" 6.04 "
+"Frissítés az Ubuntu \"Dapper\" 6.06 "
"változatra"
#: ../DistUpgrade/DistUpgrade.glade.h:8
@@ -472,7 +471,7 @@ msgstr "Részletek"
#: ../DistUpgrade/DistUpgrade.glade.h:10
msgid "Difference between the files"
-msgstr ""
+msgstr "Fájlok közti különbség"
#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
@@ -500,12 +499,11 @@ msgstr "Az Ubuntu frissítése"
#: ../DistUpgrade/DistUpgrade.glade.h:17
msgid "_Keep"
-msgstr ""
+msgstr "_Megtartás"
#: ../DistUpgrade/DistUpgrade.glade.h:18
-#, fuzzy
msgid "_Replace"
-msgstr "F_rissítés"
+msgstr "_Csere"
#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
@@ -616,19 +614,16 @@ msgstr "Fájlok letöltése (%li, összesen: %li), sebesség: %s/s"
#: ../UpdateManager/GtkProgress.py:111
#, fuzzy, python-format
msgid "Downloading file %li of %li with unknown speed"
-msgstr "Fájlok letöltése (%li, összesen: %li), sebesség: ismeretlen"
+msgstr "Fájlok letöltése (%li, összesen: %li), sebesség: %s/s"
#: ../UpdateManager/UpdateManager.py:147
msgid "The list of changes is not available yet. Please try again later."
msgstr ""
#: ../UpdateManager/UpdateManager.py:152
-#, fuzzy
msgid ""
"Failed to download the listof changes. Please check your internet connection."
msgstr ""
-"Nem sikerült a módosításokat letölteni. Kérem ellenőrizze, hogy aktív-e az "
-"internetkapcsolata."
#. print "WARNING, keeping packages"
#: ../UpdateManager/UpdateManager.py:183
@@ -639,29 +634,27 @@ msgstr "Rendelkezésre álló frissítések megjelenítése és telepítése"
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
-#, fuzzy
msgid "The following updates will be skipped:"
-msgstr "A következő csomagok nem lesznek frissítve: "
+msgstr ""
#: ../UpdateManager/UpdateManager.py:330
#, python-format
msgid "Version %s: \n"
-msgstr "%s verzió: \n"
+msgstr ""
#: ../UpdateManager/UpdateManager.py:390
#, fuzzy
msgid "Downloading the list of changes..."
-msgstr "Fájlok letöltése (%li, összesen: %li), sebesség: %s/s"
+msgstr "Fájl letöltése: %li/%li"
#: ../UpdateManager/UpdateManager.py:428
-#, fuzzy
msgid "Your system is up-to-date"
-msgstr "A rendszere naprakész!"
+msgstr ""
#: ../UpdateManager/UpdateManager.py:437
#, fuzzy, python-format
@@ -694,29 +687,22 @@ msgstr "A letöltés befejeződött"
#: ../UpdateManager/UpdateManager.py:583
msgid "Repositories changed"
-msgstr "Megváltoztak a tárolók"
+msgstr ""
#: ../UpdateManager/UpdateManager.py:584
-#, fuzzy
msgid ""
"You need to reload the package list from the servers for your changes to "
"take effect. Do you want to do this now?"
msgstr ""
-"A tárolóinformációk megváltoztak. A sources.list biztonsági másolata %s.save "
-"néven van elmentve.\n"
-"\n"
-"A csomaglistákat újra le kell tölteni a kiszolgálókról, hogy a változtatások "
-"életbe lépjenek. Meg akarja ezt tenni most?"
#: ../UpdateManager/UpdateManager.py:617
-#, fuzzy, python-format
+#, python-format
msgid "New version: %s (Size: %s)"
-msgstr "Új verzió: %s"
+msgstr ""
#: ../UpdateManager/UpdateManager.py:631
-#, fuzzy
msgid "Your distribution is not supported anymore"
-msgstr "A disztribúciója már nem támogatott"
+msgstr ""
#: ../UpdateManager/UpdateManager.py:632
msgid ""
@@ -760,17 +746,16 @@ msgstr ""
"menüpont alatt változtathatja meg."
#: ../data/UpdateManager.glade.h:4
-#, fuzzy
msgid ""
"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-"Rendelkezésre álló frissítések keresése\n"
+"A rendszer elemzése\n"
"\n"
-"A szoftverfrissítések javítják az időközben felfedezett programhibákat, "
-"sebezhetőségeket és új szolgáltatásokat is biztosítanak Önnek."
+"A szoftverfrissítések programhibákat javíthatnak, megszüntetik a biztonsági "
+"sebezhetőségeket és új szolgáltatásokat biztosítanak."
#: ../data/UpdateManager.glade.h:7
msgid "Keep your system up-to-date"
@@ -785,13 +770,12 @@ msgid "Changes"
msgstr "Módosítások"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
msgid "Chec_k"
msgstr "_Ellenőrzés"
#: ../data/UpdateManager.glade.h:11
msgid "Check the software channels for new updates"
-msgstr ""
+msgstr "Frissítések keresése a szoftvercsatornákon"
#: ../data/UpdateManager.glade.h:12
msgid "Description"
@@ -900,7 +884,6 @@ msgid "_Check for updates automatically:"
msgstr "_Frissítések automatikus keresése:"
#: ../data/SoftwareProperties.glade.h:15
-#, fuzzy
msgid "_Download updates in the background, but do not install them"
msgstr "Frissítések _letöltése a háttérben, telepítés nélkül"
@@ -937,9 +920,8 @@ msgid "Comment:"
msgstr "Megjegyzés:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-#, fuzzy
msgid "Components:"
-msgstr "Összetevők"
+msgstr "Összetevők:"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
msgid "Distribution:"
@@ -968,8 +950,8 @@ msgstr ""
"Adja meg a felvenni kívánt tároló teljes APT sorát\n"
"\n"
"Az APT sor tartalmazza a tároló típusát, helyét és tartalmát, például "
-"\"deb http://ftp.debian.org sarge main\". A szintakszis részletes "
-"leírását a dokumentációban találhatja meg."
+"\"deb http://ftp.debian.org sarge main\". A szintaxis részletes leírását "
+"a dokumentációban találhatja meg."
#: ../data/SoftwarePropertiesDialogs.glade.h:18
msgid "APT line:"
@@ -1057,27 +1039,23 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../channels/Ubuntu.info.in:6
-#, fuzzy
msgid "Ubuntu 6.06 'Dapper Drake'"
-msgstr "Ubuntu 6.04 'Dapper Drake'"
+msgstr "Ubuntu 6.06 \"Dapper Drake\""
#. Description
#: ../channels/Ubuntu.info.in:23
-#, fuzzy
msgid "Ubuntu 6.06 Security Updates"
-msgstr "Ubuntu 6.04 biztonsági frissítések"
+msgstr "Ubuntu 6.06 biztonsági frissítések"
#. Description
#: ../channels/Ubuntu.info.in:40
-#, fuzzy
msgid "Ubuntu 6.06 Updates"
-msgstr "Ubuntu 6.04 frissítések"
+msgstr "Ubuntu 6.06 frissítések"
#. Description
#: ../channels/Ubuntu.info.in:57
-#, fuzzy
msgid "Ubuntu 6.06 Backports"
-msgstr "Ubuntu 6.04 visszaportolt csomagok"
+msgstr "Ubuntu 6.06 visszaportolt csomagok"
#. Description
#: ../channels/Ubuntu.info.in:74
@@ -1165,275 +1143,5 @@ msgstr "DFSG-kompatibilis szoftver nem-szabad függőségekkel"
msgid "Non-DFSG-compatible Software"
msgstr "Nem DFSG-kompatibilis szoftver"
-#~ msgid "Installing updates"
-#~ msgstr "Frissítések telepítése"
-
-#~ msgid "Check for available updates"
-#~ msgstr "Rendelkezésre álló frissítések ellenőrzése"
-
-#~ msgid "Sections:"
-#~ msgstr "Csoportok:"
-
#~ msgid "Oficially supported"
#~ msgstr "Hivatalosan támogatott"
-
-#, fuzzy
-#~ msgid "Reload the latest information about updates"
-#~ msgstr "A csomaginformációk ismételt letöltése a kiszolgálóról."
-
-#, fuzzy
-#~ msgid "Add Software Channels"
-#~ msgstr "Szoftverfrissítések"
-
-#~ msgid ""
-#~ "Downloading changes\n"
-#~ "\n"
-#~ "Need to get the changes from the central server"
-#~ msgstr ""
-#~ "Módosítások letöltése\n"
-#~ "\n"
-#~ "A módosításokat le kell tölteni a központi kiszolgálóról"
-
-#~ msgid "Show available updates and choose which to install"
-#~ msgstr "Rendelkezésre álló frissítések mutatása és telepítése"
-
-#, fuzzy
-#~ msgid "Ubuntu 5.04 \"Hoary Hedgehog\""
-#~ msgstr "Ubuntu 5.04 biztonsági frissítések"
-
-#, fuzzy
-#~ msgid "Error fetching the packages"
-#~ msgstr "Hiba a kulcs eltávolítása közben"
-
-#, fuzzy
-#~ msgid "Sources"
-#~ msgstr "Szoftverforrások"
-
-#, fuzzy
-#~ msgid "Automatically check for updates"
-#~ msgstr "Szoftverfrissítések a_utomatikus keresése."
-
-#, fuzzy
-#~ 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 "Packages to install:"
-#~ msgstr "Telepítendő csomagok:"
-
-#~ msgid ""
-#~ "Available Updates\n"
-#~ "\n"
-#~ "The following packages are found to be upgradable. You can upgrade them "
-#~ "by using the Install button."
-#~ msgstr ""
-#~ "Elérhető frissítések\n"
-#~ "\n"
-#~ "A következő csomagok frissíthetőek. A Telepítés gomb segítségével "
-#~ "frissítheti őket."
-
-#~ msgid "Repository"
-#~ msgstr "Tároló"
-
-#~ msgid "Temporary files"
-#~ msgstr "Átmeneti fájlok"
-
-#~ msgid "User Interface"
-#~ msgstr "Felhasználói felület"
-
-#, fuzzy
-#~ msgid ""
-#~ "Authentication keys\n"
-#~ "\n"
-#~ "You can add and remove authentication keys in this dialog. A key makes it "
-#~ "possible to verify the integrity of the software you download."
-#~ msgstr ""
-#~ "Hitelesítési kulcsok\n"
-#~ "\n"
-#~ "Ebben a párbeszédablakban adhat hozzá és távolíthat el hitelesítési "
-#~ "kulcsokat.A kulcsok lehetővé teszik az Ön által letöltött szoftverek "
-#~ "épségének ellenőrzését."
-
-#~ msgid "A_uthentication"
-#~ msgstr "_Hitelesítés"
-
-#, fuzzy
-#~ msgid ""
-#~ "Add a new key file to the trusted keyring. Make sure that you received "
-#~ "the key over a secure channel and that you trust the owner. "
-#~ msgstr ""
-#~ "Új kulcsfájl hozzáadása a megbízható kulcstartóhoz. Győződjön meg, hogy a "
-#~ "kulcsot biztonságos csatornán keresztül kapta és megbízik a "
-#~ "tulajdonosban. "
-
-#~ msgid "Automatically clean _temporary packages files"
-#~ msgstr "Átmeneti csomagfájlok automatikus _törlése"
-
-#~ msgid "Clean interval in days: "
-#~ msgstr "Törlés ennyi naponként: "
-
-#~ msgid "Delete _old packages in the package cache"
-#~ msgstr "A csomaggyorsítótárban lévő _régi fájlok törlése"
-
-#~ msgid "Edit Repository..."
-#~ msgstr "Tároló szerkesztése..."
-
-#~ msgid "Maximum age in days:"
-#~ msgstr "Legmagasabb kor napokban:"
-
-#~ msgid "Maximum size in MB:"
-#~ msgstr "Legnagyobb méret Mb-ban:"
-
-#, fuzzy
-#~ msgid ""
-#~ "Restore the default keys shipped with the distribution. This will not "
-#~ "change user installed keys."
-#~ msgstr ""
-#~ "A disztribúcióval szállított alapértelmezett kulcsok visszaállítása. Ez "
-#~ "nem változtatja meg a felhasználó által telepített kulcsokat."
-
-#~ msgid "Set _maximum size for the package cache"
-#~ msgstr "A csomaggyorsítótár legnagyobb _méretének beállítása"
-
-#~ msgid "Settings"
-#~ msgstr "Beállítások"
-
-#~ msgid "Show disabled software sources"
-#~ msgstr "Kikapcsolt szoftverforrások mutatása"
-
-#~ msgid "Update interval in days: "
-#~ msgstr "Frissítési időköz napokban: "
-
-#~ msgid "_Add Repository"
-#~ msgstr "_Tároló hozzáadása"
-
-#~ msgid "_Download upgradable packages"
-#~ msgstr "Frissíthető csomagok letöltése"
-
-#~ msgid ""
-#~ "This means that some dependencies of the installed packages are not "
-#~ "satisfied. Please use \"Synaptic\" or \"apt-get\" to fix the situation."
-#~ msgstr ""
-#~ "Ez azt jelenti, hogy a telepített csomagok néhány függősége nincs "
-#~ "kielégítve. Kérem használja a \"Synaptic\"-ot vagy az \"apt-get\"-et a "
-#~ "probléma megoldására."
-
-#~ msgid "It is not possible to upgrade all packages."
-#~ msgstr "Nem lehetséges az összes csomagot frissíteni."
-
-#~ msgid ""
-#~ "This means that besides the actual upgrade of the packages some further "
-#~ "action (such as installing or removing packages) is required. Please use "
-#~ "Synaptic \"Smart Upgrade\" or \"apt-get dist-upgrade\" to fix the "
-#~ "situation."
-#~ msgstr ""
-#~ "Ez azt jelenti, hogy a csomagok frissítése mellett néhány további művelet "
-#~ "is szükséges (például csomagok telepítése vagy törlése). Kérem használja "
-#~ "a Synaptic \"Intelligens frissítés\" lehetőségét, vagy az \"apt-get dist-"
-#~ "upgrade\" parancsot a probléma megoldására."
-
-#~ msgid "Changes not found, the server may not be updated yet."
-#~ msgstr ""
-#~ "Nem találhatóak módosítások, lehet, hogy a kiszolgáló még nem frissült."
-
-#~ msgid "The updates are being applied."
-#~ msgstr "A frissítések alkalmazása folyamatban."
-
-#~ msgid ""
-#~ "You can run only one package management application at the same time. "
-#~ "Please close this other application first."
-#~ msgstr ""
-#~ "Egyidejűleg csak egy csomagkezelő alkalmazást futtathat. Kérem előbb "
-#~ "zárja be a másik alkalmazást."
-
-#~ msgid "Updating package list..."
-#~ msgstr "Csomaglista frissítése..."
-
-#~ msgid "There are no updates available."
-#~ msgstr "Nem állnak rendelkezésre frissítések."
-
-#~ msgid ""
-#~ "Please upgrade to a newer version of Ubuntu Linux. The version you are "
-#~ "running will no longer get security fixes or other critical updates. "
-#~ "Please see http://www.ubuntulinux.org for upgrade information."
-#~ msgstr ""
-#~ "Kérem frissítse rendszerét az Ubuntu Linux újabb verziójára. Az Ön által "
-#~ "használt verzió már nem fog biztonsági javításokat vagy egyéb kritikus "
-#~ "frissítéseket kapni. Kérem keresse fel a http://www.ubuntulinux.org "
-#~ "oldalt a frissítési információkért."
-
-#~ msgid "There is a new release of Ubuntu available!"
-#~ msgstr "Az Ubuntu egy új kiadása áll rendelkezésre!"
-
-#~ msgid ""
-#~ "A new release with the codename '%s' is available. Please see http://www."
-#~ "ubuntulinux.org/ for upgrade instructions."
-#~ msgstr ""
-#~ "Egy új, \"%s\" kódnevű kiadás áll rendelkezésre. A frissítési "
-#~ "utasításokért keresse fel a http://www.ubuntulinux.org/ webhelyet."
-
-#~ msgid "Never show this message again"
-#~ msgstr "Ne mutassa többé ezt az üzenetet"
-
-#, fuzzy
-#~ msgid ""
-#~ "This usually means that another package management application (like apt-"
-#~ "get or aptitude) already running. Please close that application first"
-#~ msgstr ""
-#~ "Egyidejűleg csak egy csomagkezelő alkalmazást futtathat. Kérem előbb "
-#~ "zárja be a másik alkalmazást."
-
-#~ msgid "Initializing and getting list of updates..."
-#~ msgstr "Inicializálás és a frissítések letöltése..."
-
-#~ msgid "You need to be root to run this program"
-#~ msgstr "Rootként kell ezt a programot futtatnia"
-
-#~ msgid "Edit software sources and settings"
-#~ msgstr "Szoftverforrások és beállítások szerkesztése"
-
-#~ msgid "Software Properties"
-#~ msgstr "Szoftver tulajdonságai"
-
-#~ msgid "Ubuntu Update Manager"
-#~ msgstr "Ubuntu frissítéskezelő"
-
-#~ msgid "Binary"
-#~ msgstr "Bináris"
-
-#~ msgid "Source"
-#~ msgstr "Forrás"
-
-#~ msgid "CD"
-#~ msgstr "CD"
-
-#~ msgid "Ubuntu 4.10 Security Updates"
-#~ msgstr "Ubuntu 4.10 biztonsági frissítések"
-
-#~ msgid "Contributed software"
-#~ msgstr "Nem-szabad szoftvertől függ"
-
-#~ msgid "Non-free software"
-#~ msgstr "Nem szabad szoftver"
-
-#~ msgid "US export restricted software"
-#~ msgstr "Egyesült Államok exportkorlátozása alá eső szoftver"
-
-#~ msgid "Ubuntu Archive Automatic Signing Key "
-#~ msgstr "Ubuntu archívum automatikus aláírókulcs "
-
-#~ msgid "Ubuntu CD Image Automatic Signing Key "
-#~ msgstr "Ubuntu CD-kép automatikus aláírókulcs "
-
-#, fuzzy
-#~ msgid ""
-#~ "Available Updates\n"
-#~ "The following packages are found to be upgradable. You can upgrade them "
-#~ "by using the Install button."
-#~ msgstr ""
-#~ "Elérhető frissítések\n"
-#~ "\n"
-#~ "A következő csomagok frissíthetőek. A Telepítés gomb segítségével "
-#~ "frissítheti őket."
diff --git a/po/it.po b/po/it.po
index 143f480b..68e0a091 100644
--- a/po/it.po
+++ b/po/it.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-26 17:46+0000\n"
-"Last-Translator: Maurizio Moriconi \n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-12 09:37+0000\n"
+"Last-Translator: MiloCasagrande \n"
"Language-Team: Italian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -34,7 +34,7 @@ msgstr "Importa chiave"
#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
-msgstr "Errore durante l'importazione del file selezionato"
+msgstr "Errore nell'importare il file selezionato"
#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
@@ -44,12 +44,13 @@ msgstr ""
#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
-msgstr "Errore durante la rimozione della chiave"
+msgstr "Errore nell'importare la chiave"
#: ../SoftwareProperties/SoftwareProperties.py:437
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
-"La chiave selezionata non può essere rimossa. Notificare questo come bug"
+"La chiave selezionata non può essere rimossa. Notificare questo evento come "
+"bug."
#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
@@ -102,12 +103,12 @@ msgid ""
"this as a bug. "
msgstr ""
"Si è verificato un problema irrisolvibile calcolando l'aggiornamento. Per "
-"favore segnala questo come bug. "
+"favore segnala questo evento come bug. "
#. FIXME: maybe ask a question here? instead of failing?
#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
-msgstr "Errore durante l'autenticazione di alcuni pacchetti"
+msgstr "Errore nell'autenticare alcuni pacchetti"
#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
@@ -130,7 +131,7 @@ msgid ""
"bug. "
msgstr ""
"Non è stato possibile installare un pacchetto richiesto. Per favore riporta "
-"questo come bug. "
+"questo evento come bug. "
#. FIXME: provide a list
#: ../DistUpgrade/DistUpgradeCache.py:241
@@ -146,7 +147,7 @@ msgid ""
"before proceeding."
msgstr ""
"Il sistema non contiene un pacchetto ubuntu-desktop, kubuntu-desktop o "
-"edubuntu-desktop e non è stato possibile riconoscere la versione di ubuntu "
+"edubuntu-desktop e non è stato possibile riconoscere la versione di Ubuntu "
"in esecuzione.\n"
" Prima di procedere, usare synaptic o apt-get per installare uno dei "
"pacchetti menzionati."
@@ -178,7 +179,7 @@ msgid ""
"report this as a bug."
msgstr ""
"L'aggiornamento delle informazioni sul repository ha generato un file non "
-"valido. Per favore segnala questo come bug."
+"valido. Per favore segnala questo evento come bug."
#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
@@ -203,9 +204,9 @@ msgid ""
"trash and remove temporary packages of former installations using 'sudo apt-"
"get clean'."
msgstr ""
-"L'aggiornamento dev'essere interrotto ora. Occorre liberare almeno %s di "
-"spazio sul disco. Svuotare il cestino e rimuovere i pacchetti temporanei "
-"delle passate installazioni usando 'sudo apt-get clean'."
+"L'aggiornamento viene interrotto ora. Occorre liberare almeno %s di spazio "
+"sul disco. Svuotare il cestino e rimuovere i pacchetti temporanei delle "
+"passate installazioni usando il comando \"sudo apt-get clean\"."
#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
@@ -222,9 +223,9 @@ msgid ""
"The upgrade aborts now. Your system can be in an unusable state. A recovery "
"is now run (dpkg --configure -a)."
msgstr ""
-"L'aggiornamento dev'essere interrotto ora. Il sistema potrebbe essere in uno "
-"stato inutilizzabile. Per aggiustare il sistema, provare ad usare 'sudo apt-"
-"get install -f' o Synaptic"
+"L'aggiornamento viene interrotto ora. Il sistema potrebbe essere in uno "
+"stato inutilizzabile. Verrà avviata una procedura di ripristino (dpkg --"
+"canfigure -a)."
#: ../DistUpgrade/DistUpgradeControler.py:230
msgid "Could not download the upgrades"
@@ -235,7 +236,7 @@ msgid ""
"The upgrade aborts now. Please check your internet connection or "
"installation media and try again. "
msgstr ""
-"L'aggiornamento termina ora. Controllare la connessione internet o il "
+"L'aggiornamento termina ora. Controllare la connessione a internet o il "
"supporto di installazione e riprovare. "
#: ../DistUpgrade/DistUpgradeControler.py:273
@@ -244,12 +245,13 @@ msgid "Remove obsolete packages?"
msgstr "Rimuovere i pacchetti obsoleti?"
#: ../DistUpgrade/DistUpgradeControler.py:274
+#, fuzzy
msgid "_Skip This Step"
-msgstr ""
+msgstr "_Salta questo passo"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Remove"
-msgstr ""
+msgstr "_Rimuovi"
#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
@@ -294,16 +296,16 @@ msgstr "L'aggiornamento del sistema è stato completato."
#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
-msgstr "Inserire '%s' nell'unità '%s'"
+msgstr "Inserire \"%s\" nell'unità \"%s\""
#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
-msgstr "Download completato"
+msgstr "Scaricamento completato"
#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
-msgstr "Download del file %li di %li a %s/s"
+msgstr "Scaricamento del file %li di %li a %s/s"
#: ../DistUpgrade/DistUpgradeViewGtk.py:108
#: ../DistUpgrade/DistUpgradeViewGtk.py:216
@@ -314,7 +316,7 @@ msgstr "%s rimanenti"
#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, fuzzy, python-format
msgid "Downloading file %li of %li"
-msgstr "Download del file %li di %li a %s/s"
+msgstr "Sacricamneto del file %li di %li in corso"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
@@ -322,18 +324,18 @@ msgstr "Download del file %li di %li a %s/s"
#: ../DistUpgrade/DistUpgradeViewGtk.py:140
#, fuzzy
msgid "Applying changes"
-msgstr "Download modifiche in corso..."
+msgstr "Applicazione delle modifice in corso"
#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
-msgstr "Impossibile installare '%s'"
+msgstr "Impossibile installare \"%s\""
#: ../DistUpgrade/DistUpgradeViewGtk.py:158
#, fuzzy
msgid "The upgrade aborts now. Please report this bug."
msgstr ""
-"L'aggiornamento viene interrotto ora. Per favore riporta questo come bug."
+"L'aggiornamento viene interrotto ora. Segnalare questo evento come bug."
#. self.expander.set_expanded(True)
#: ../DistUpgrade/DistUpgradeViewGtk.py:171
@@ -342,10 +344,12 @@ msgid ""
"Replace configuration file\n"
"'%s'?"
msgstr ""
+"Sostituire il file di configurazione\n"
+"\"%s\"?"
#: ../DistUpgrade/DistUpgradeViewGtk.py:188
msgid "The 'diff' command was not found"
-msgstr ""
+msgstr "Il comando \"diff\" non è stato trovato"
#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
@@ -357,8 +361,9 @@ msgid ""
"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-"Per favore riporta questo come bug e includi nella segnalazione i file ~/"
-"dist-upgrade.log e ~/dist-upgrade-apt.log . L'aggiornamento termina ora. "
+"Segnalare questo evento come bug e includere nella segnalazione i file \"~/"
+"dist-upgrade.log\" e \"~/dist-upgrade-apt.log\". L'aggiornamento voene "
+"interrotto ora. "
#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
@@ -451,7 +456,7 @@ msgstr ""
"Annullare l'aggiornamento in corso?\n"
"\n"
"Il sistema potrebbe essere inutilizzabile se l'aggiornamento viene "
-"annullato. Si consiglia fortemente la ripresa dell'aggiornamento."
+"annullato. Si consiglia fortemente di riprendere l'aggiornamento."
#: ../DistUpgrade/DistUpgrade.glade.h:5
msgid "Restart the system to complete the upgrade"
@@ -468,7 +473,7 @@ msgid ""
"span>"
msgstr ""
"Aggiornamento ad Ubuntu \"Dapper\" "
-"6.04"
+"6.06"
#: ../DistUpgrade/DistUpgrade.glade.h:8
msgid "Cleaning up"
@@ -480,11 +485,11 @@ msgstr "Dettagli"
#: ../DistUpgrade/DistUpgrade.glade.h:10
msgid "Difference between the files"
-msgstr ""
+msgstr "Differenze tra i file"
#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
-msgstr "Download ed installazione degli aggiornamenti in corso"
+msgstr "Scaricamento e installazione degli aggiornamenti in corso"
#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
@@ -504,16 +509,17 @@ msgstr "Terminale"
#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
-msgstr "Aggiornamento Ubuntu in corso"
+msgstr "Aggiornamento di Ubuntu in corso"
#: ../DistUpgrade/DistUpgrade.glade.h:17
+#, fuzzy
msgid "_Keep"
-msgstr ""
+msgstr "_Mantieni"
#: ../DistUpgrade/DistUpgrade.glade.h:18
#, fuzzy
msgid "_Replace"
-msgstr "_Ricarica"
+msgstr "_Sostituisci"
#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
@@ -557,12 +563,12 @@ msgid ""
"This is most likely a bug in the upgrade tool. Please report it as a bug"
msgstr ""
"Si è verificato un problema irrisolvibile calcolando l'aggiornamento. Per "
-"favore segnala questo come bug. "
+"favore segnala questo evento come bug. "
#: ../UpdateManager/DistUpgradeFetcher.py:173
#, fuzzy
msgid "Downloading the upgrade tool"
-msgstr "Download ed installazione degli aggiornamenti in corso"
+msgstr "Scaricamento e installazione degli aggiornamenti in corso"
#: ../UpdateManager/DistUpgradeFetcher.py:175
msgid "The upgrade tool will guide you through the upgrade process."
@@ -619,7 +625,7 @@ msgstr ""
#: ../UpdateManager/GtkProgress.py:107
#, fuzzy, python-format
msgid "Downloading file %li of %li with %s/s"
-msgstr "Download del file %li di %li a %s/s"
+msgstr "Scaricamento del file %li di %li a %s/s"
#: ../UpdateManager/GtkProgress.py:111
#, fuzzy, python-format
@@ -647,8 +653,8 @@ msgstr "Visualizza e installa gli aggiornamenti disponibili"
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -698,7 +704,7 @@ msgstr ""
#: ../UpdateManager/UpdateManager.py:469
#, fuzzy
msgid "Update is complete"
-msgstr "Download completato"
+msgstr "Scaricamento completato"
#: ../UpdateManager/UpdateManager.py:583
msgid "Repositories changed"
@@ -748,12 +754,18 @@ msgid ""
msgstr ""
#: ../data/UpdateManager.glade.h:1
+#, fuzzy
msgid ""
"You must check for updates manually\n"
"\n"
"Your system does not check for updates automatically. You can configure this "
"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"."
msgstr ""
+"È necessario controllare gli aggiornamenti manualmente\n"
+"\n"
+"Il sitema non controlla automaticamente la presenza di aggiornamenti. "
+"Impostare questa funzionalità in \"Sistema\" -> \"Amministrazione\" -> "
+"\"Proprietà software\"."
#: ../data/UpdateManager.glade.h:4
#, fuzzy
@@ -773,8 +785,9 @@ msgid "Keep your system up-to-date"
msgstr "Mantenere aggiornato il sistema"
#: ../data/UpdateManager.glade.h:8
+#, fuzzy
msgid "Cancel _Download"
-msgstr "Annulla _download"
+msgstr "Annulla _scaricamento"
#: ../data/UpdateManager.glade.h:9
msgid "Changes"
@@ -786,8 +799,9 @@ msgid "Chec_k"
msgstr "_Controlla"
#: ../data/UpdateManager.glade.h:11
+#, fuzzy
msgid "Check the software channels for new updates"
-msgstr ""
+msgstr "Controlla i canali software per la presenza di aggiornamenti"
#: ../data/UpdateManager.glade.h:12
msgid "Description"
@@ -795,7 +809,7 @@ msgstr "Descrizione"
#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
-msgstr "Note alla Release"
+msgstr "Note alla release"
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
@@ -803,7 +817,7 @@ msgstr "Visualizza avanzamento dei singoli file"
#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
-msgstr "Aggiornamenti Software"
+msgstr "Aggiornamenti software"
#: ../data/UpdateManager.glade.h:17
msgid ""
@@ -811,7 +825,7 @@ msgid ""
"provide new features to you."
msgstr ""
"Gli aggiornamenti software possono correggere errori, eliminare "
-"vulnerabilità di sicurezza e fornire nuove funzionalità"
+"vulnerabilità di sicurezza e fornire nuove funzionalità."
#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
@@ -826,8 +840,9 @@ msgid "_Check"
msgstr "_Controlla"
#: ../data/UpdateManager.glade.h:21
+#, fuzzy
msgid "_Hide this information in the future"
-msgstr "_Nascondi queste informazioni in futuro"
+msgstr "_Non mostrare più queste informazioni"
#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
@@ -840,7 +855,7 @@ msgstr "Canali"
#: ../data/SoftwareProperties.glade.h:2
#, fuzzy
msgid "Internet updates"
-msgstr "Aggiornamenti Internet"
+msgstr "Aggiornamenti internet"
#: ../data/SoftwareProperties.glade.h:3
msgid "Keys"
@@ -868,7 +883,7 @@ msgstr "Supporto di installazione"
#: ../data/SoftwareProperties.glade.h:9
msgid "Internet Updates"
-msgstr "Aggiornamenti Internet"
+msgstr "Aggiornamenti internet"
#: ../data/SoftwareProperties.glade.h:10
msgid ""
@@ -881,8 +896,9 @@ msgstr ""
"upgrades\" deve perciò essere installato"
#: ../data/SoftwareProperties.glade.h:11
+#, fuzzy
msgid "Restore _Defaults"
-msgstr "Ripristina predefinite"
+msgstr "Ripristina pre_definite"
#: ../data/SoftwareProperties.glade.h:12
msgid "Restore the default keys of your distribution"
@@ -923,7 +939,7 @@ msgstr ""
"Ricaricare le informazioni sul canale per installare il software e gli "
"aggiornamenti provenienti dai canali aggiunti o modificati. \n"
"\n"
-"Una connessione Internet funzionante è necessaria per continuare."
+"Una connessione a internet funzionante è necessaria per continuare."
#: ../data/SoftwarePropertiesDialogs.glade.h:8
msgid "Channel"
@@ -936,7 +952,7 @@ msgstr "Commento:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
#, fuzzy
msgid "Components:"
-msgstr "Componenti"
+msgstr "Componenti:"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
msgid "Distribution:"
@@ -995,7 +1011,7 @@ msgstr "Scansione CD-ROM in corso"
#: ../data/SoftwarePropertiesDialogs.glade.h:24
#, fuzzy
msgid "_Add Channel"
-msgstr "_Aggiungi Canale"
+msgstr "_Aggiungi canale"
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -1011,7 +1027,7 @@ msgstr "Visualizza e installa gli aggiornamenti disponibili"
#: ../data/update-manager.desktop.in.h:2
msgid "Update Manager"
-msgstr "Gestore degli Aggiornamenti"
+msgstr "Gestore degli aggiornamenti"
#: ../data/update-manager.schemas.in.h:1
msgid ""
@@ -1055,37 +1071,33 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../channels/Ubuntu.info.in:6
-#, fuzzy
msgid "Ubuntu 6.06 'Dapper Drake'"
-msgstr "Ubuntu 6.04 «Dapper Drake»"
+msgstr "Ubuntu 6.06 \"Dapper Drake\""
#. Description
#: ../channels/Ubuntu.info.in:23
-#, fuzzy
msgid "Ubuntu 6.06 Security Updates"
-msgstr "Aggiornamenti di sicurezza per Ubuntu 6.04"
+msgstr "Aggiornamenti di sicurezza per Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:40
-#, fuzzy
msgid "Ubuntu 6.06 Updates"
-msgstr "Aggiornamenti di Ubuntu 6.04"
+msgstr "Aggiornamenti di Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:57
-#, fuzzy
msgid "Ubuntu 6.06 Backports"
-msgstr "Backport di Ubuntu 6.04"
+msgstr "Backport di Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
-msgstr "Ubuntu 5.10 «Breezy Badger»"
+msgstr "Ubuntu 5.10 \"Breezy Badger\""
#. Description
#: ../channels/Ubuntu.info.in:91
msgid "Ubuntu 5.10 Security Updates"
-msgstr "Aggiornamenti di sicurezza di Ubuntu 5.10"
+msgstr "Aggiornamenti di sicurezza per Ubuntu 5.10"
#. Description
#: ../channels/Ubuntu.info.in:108
@@ -1126,7 +1138,7 @@ msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
-msgstr "Debian 3.1 «Sarge»"
+msgstr "Debian 3.1 \"Sarge\""
#. BaseURI
#: ../channels/Debian.info.in:19
@@ -1136,12 +1148,12 @@ msgstr "http://security.debian.org/"
#. Description
#: ../channels/Debian.info.in:20
msgid "Debian 3.1 \"Sarge\" Security Updates"
-msgstr "Aggiornamenti di sicurezza di Debian 3.1 «Sarge»"
+msgstr "Aggiornamenti di sicurezza oer Debian 3.1 \"Sarge\""
#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
-msgstr "Debian «Etch» (testing)"
+msgstr "Debian \"Etch\" (testing)"
#. BaseURI
#: ../channels/Debian.info.in:47
@@ -1151,7 +1163,7 @@ msgstr "http://http.us.debian.org/debian/"
#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
-msgstr "Debian «Sid» (Unstable)"
+msgstr "Debian \"Sid\" (Unstable)"
#. CompDescription
#: ../channels/Debian.info.in:54
@@ -1163,6 +1175,9 @@ msgstr "Software compatibile con le DFSG e con dipendenze non libere"
msgid "Non-DFSG-compatible Software"
msgstr "Software non compatibile con le DFSG"
+#~ msgid "Oficially supported"
+#~ msgstr "Supportato ufficialmente"
+
#~ msgid "Installing updates"
#~ msgstr "Installazione degli aggiornamenti"
@@ -1173,9 +1188,6 @@ msgstr "Software non compatibile con le DFSG"
#~ msgid "Sections:"
#~ msgstr "Sezioni:"
-#~ msgid "Oficially supported"
-#~ msgstr "Supportato ufficialmente"
-
#~ msgid "Reload the latest information about updates"
#~ msgstr "Ricarica le informazioni sugli aggiornamenti"
diff --git a/po/ja.po b/po/ja.po
index 961c9887..866d4f22 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -1,36 +1,36 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
+# Ubuntu-ja translation of update-manager.
+# Copyright (C) 2006 THE update-manager'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the update-manager package.
+# Ikuya Awashiro , 2006.
# Hiroyuki Ikezoe , 2005
#
-#, fuzzy
+#
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: update-manager 0.42.4\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-23 00:18+0000\n"
-"Last-Translator: ikuya \n"
-"Language-Team: Ubuntu-ja \n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-11 13:39+0000\n"
+"Last-Translator: Ikuya Awashiro \n"
+"Language-Team: Ubuntu Japanese Team \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
#: ../SoftwareProperties/SoftwareProperties.py:110
#, python-format
msgid "Every %s days"
-msgstr ""
+msgstr "%s 日ごと"
#: ../SoftwareProperties/SoftwareProperties.py:140
#, python-format
msgid "After %s days"
-msgstr ""
+msgstr "%s 日後"
#: ../SoftwareProperties/SoftwareProperties.py:413
msgid "Import key"
-msgstr ""
+msgstr "鍵のインポート"
#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
@@ -39,15 +39,15 @@ msgstr "選択したファイルのインポートエラー"
#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
-"選択したファイルはGPGキーファイルではないか、壊れている可能性があります。"
+"選択したファイルはGPG鍵ファイルではないか、壊れている可能性があります。"
#: ../SoftwareProperties/SoftwareProperties.py:436
msgid "Error removing the key"
-msgstr "キー削除のエラー"
+msgstr "鍵削除のエラー"
#: ../SoftwareProperties/SoftwareProperties.py:437
msgid "The key you selected could not be removed. Please report this as a bug."
-msgstr "選択したキーを削除できませんでした。バグとして報告してください。"
+msgstr "選択した鍵を削除できませんでした。バグとして報告してください。"
#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
@@ -56,49 +56,53 @@ msgid ""
"\n"
"%s"
msgstr ""
+"CDスキャン中のエラー\n"
+"\n"
+"%s"
#: ../SoftwareProperties/SoftwareProperties.py:535
msgid "Please enter a name for the disc"
-msgstr ""
+msgstr "ディスク名を入力してください"
#: ../SoftwareProperties/SoftwareProperties.py:551
msgid "Please insert a disc in the drive:"
-msgstr ""
+msgstr "ディスクをドライブに挿入してください:"
#: ../DistUpgrade/DistUpgradeCache.py:92
msgid "Broken packages"
-msgstr ""
+msgstr "壊れたパッケージ"
#: ../DistUpgrade/DistUpgradeCache.py:93
msgid ""
"Your system contains broken packages that couldn't be fixed with this "
"software. Please fix them first using synaptic or apt-get before proceeding."
msgstr ""
+"システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれていま"
+"す。 Synaptic や apt-get を使って最初に修正してください。"
#: ../DistUpgrade/DistUpgradeCache.py:135
msgid "Can't upgrade required meta-packages"
-msgstr ""
+msgstr "要求されたメタパッケージがアップグレードできません"
#: ../DistUpgrade/DistUpgradeCache.py:142
msgid "A essential package would have to be removed"
-msgstr ""
+msgstr "必須パッケージが削除されます"
#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
-msgstr ""
+msgstr "アップグレードが算定できません"
#: ../DistUpgrade/DistUpgradeCache.py:146
-#, fuzzy
msgid ""
"A unresolvable problem occured while calculating the upgrade. Please report "
"this as a bug. "
-msgstr "選択したキーを削除できませんでした。バグとして報告してください。 "
+msgstr "算定中に解決できない問題がおきました。バグとして報告してください。 "
#. FIXME: maybe ask a question here? instead of failing?
#: ../DistUpgrade/DistUpgradeCache.py:169
msgid "Error authenticating some packages"
-msgstr ""
+msgstr "いくつかのパッケージが認証されませんでした"
#: ../DistUpgrade/DistUpgradeCache.py:170
msgid ""
@@ -106,23 +110,26 @@ msgid ""
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
+"いくつかのパッケージが認証できませんでした。これはおそらく一時的なネットワー"
+"クの問題でしょう。あとで再び試してみてください。下に認証できなかったパッケー"
+"ジが表示されます。"
#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
-msgstr ""
+msgstr "'%s' がインストールできません"
#: ../DistUpgrade/DistUpgradeCache.py:234
-#, fuzzy
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
-msgstr "選択したキーを削除できませんでした。バグとして報告してください。 "
+msgstr ""
+"要求されたパッケージのインストールができません。バグとして報告してください。 "
#. FIXME: provide a list
#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
-msgstr ""
+msgstr "メタパッケージを推測できません"
#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
@@ -132,46 +139,56 @@ msgid ""
" Please install one of the packages above first using synaptic or apt-get "
"before proceeding."
msgstr ""
+"システムに ubuntu-desktop, kubuntu-desktop ないし edubuntu-desktop パッケー"
+"ジ が含まれていません。そして実行している ubuntu のバージョンが検出できませ"
+"ん。 \n"
+"開始前に Synaptic や apt-get を使用して上記のパッケージのうちのひとつをインス"
+"トールしてください。"
#: ../DistUpgrade/DistUpgradeControler.py:42
msgid "Reading cache"
-msgstr ""
+msgstr "キャッシュを読み込み"
#. FIXME: offer to write a new self.sources.list entry
#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
-msgstr ""
+msgstr "正しいエントリが見つかりません"
#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
+"アップグレードするためにリポジトリ情報を調べている際、正しくないエントリがみ"
+"つかりました。\n"
#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
-msgstr ""
+msgstr "リポジトリ情報が無効です"
#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
+"リポジトリ情報をアップグレード中に無効なファイルを生成しました。バグとして報"
+"告してください。"
#: ../DistUpgrade/DistUpgradeControler.py:170
-#, fuzzy
msgid "Error during update"
-msgstr "キー削除のエラー"
+msgstr "アップデート中にエラー発生"
#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
+"アップデート中に問題が発生しました。おそらくある種のネットワークの問題です。"
+"ネットワーク接続をチェックし、再びアップデートしてください。"
#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
-msgstr ""
+msgstr "ディスクの空き領域が足りません"
#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
@@ -180,126 +197,131 @@ msgid ""
"trash and remove temporary packages of former installations using 'sudo apt-"
"get clean'."
msgstr ""
+"アップグレードを中断しました。少なくても %s のディスク空き容量が必要です。ゴ"
+"ミ箱を空にして、'sudo apt-get clean' コマンドを実行し、以前インストールした一"
+"時パッケージを削除してください。"
#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
-msgstr ""
+msgstr "アップグレードを開始しますか?"
#. installing the packages failed, can't be retried
#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
-msgstr ""
+msgstr "アップグレードをインストールできません"
#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
"The upgrade aborts now. Your system can be in an unusable state. A recovery "
"is now run (dpkg --configure -a)."
msgstr ""
+"アップグレードを中断しました。システムが使用できない状態になっている可能性が"
+"あります。ただいま修正を実行中です (dpkg --configure -a)。"
#: ../DistUpgrade/DistUpgradeControler.py:230
msgid "Could not download the upgrades"
-msgstr ""
+msgstr "アップグレードをダウンロードできません"
#: ../DistUpgrade/DistUpgradeControler.py:231
msgid ""
"The upgrade aborts now. Please check your internet connection or "
"installation media and try again. "
msgstr ""
+"アップグレードを中断しました。インターネット接続またはインストールメディア"
+"(CD-ROMなど)をチェックし。再試行してください。 "
#: ../DistUpgrade/DistUpgradeControler.py:273
msgid "Remove obsolete packages?"
-msgstr ""
+msgstr "不要なパッケージを削除しますか?"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Skip This Step"
-msgstr ""
+msgstr "このステップをスキップ(_S)"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Remove"
-msgstr ""
+msgstr "削除(_R)"
#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
-msgstr ""
+msgstr "コミット中にエラー"
#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
+"クリーンアップ中になんらかの問題が発生しました。下記の詳しいメッセージをご覧"
+"ください。 "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
#. then open the cache (again)
#: ../DistUpgrade/DistUpgradeControler.py:299
#: ../DistUpgrade/DistUpgradeControler.py:325
-#, fuzzy
msgid "Checking package manager"
-msgstr "他のパッケージマネージャが動いています"
+msgstr "パッケージマネージャをチェック中"
#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
-msgstr ""
+msgstr "リポジトリ情報をアップデート"
#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
-msgstr ""
+msgstr "確認する"
#: ../DistUpgrade/DistUpgradeControler.py:335
-#, fuzzy
msgid "Upgrading"
-msgstr "アップグレードが終了しました"
+msgstr "アップグレード中"
#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
-msgstr ""
+msgstr "古いソフトウェアを検索する"
#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
-msgstr ""
+msgstr "システムのアップグレードが完了しました。"
#. print "mediaChange %s %s" % (medium, drive)
#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
-msgstr ""
+msgstr "ドライブ '%s' に'%s' を挿入してください"
#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
-msgstr ""
+msgstr "ダウンロードが完了しました"
#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
-msgstr ""
+msgstr "ダウンロード中: %li のうち %li 速度 %s/秒"
#: ../DistUpgrade/DistUpgradeViewGtk.py:108
#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
-msgstr ""
+msgstr "残り %s"
#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
msgid "Downloading file %li of %li"
-msgstr ""
+msgstr "%i のうち %i をダウンロード中"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
#. -> longer term, move this code into python-apt
#: ../DistUpgrade/DistUpgradeViewGtk.py:140
-#, fuzzy
msgid "Applying changes"
-msgstr "変更点を取得中..."
+msgstr "変更を適用中"
#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
-msgstr ""
+msgstr "'%s' がインストールできません"
#: ../DistUpgrade/DistUpgradeViewGtk.py:158
-#, fuzzy
msgid "The upgrade aborts now. Please report this bug."
-msgstr "選択したキーを削除できませんでした。バグとして報告してください。"
+msgstr "アップグレードが中断しました。不具合を報告してください。"
#. self.expander.set_expanded(True)
#: ../DistUpgrade/DistUpgradeViewGtk.py:171
@@ -308,86 +330,92 @@ msgid ""
"Replace configuration file\n"
"'%s'?"
msgstr ""
+"設定ファイル %s\n"
+"を置き換えますか?"
#: ../DistUpgrade/DistUpgradeViewGtk.py:188
msgid "The 'diff' command was not found"
-msgstr ""
+msgstr "'diff' コマンドが見つかりません"
#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
-msgstr ""
+msgstr "重大なエラーが発生しました"
#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
+"~/dist-upgrade.log と ~/dist-upgrade-apt.log を含めて不具合として報告してくだ"
+"さい。アップグレードは中断しました。 "
#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
-msgstr[0] ""
+msgstr[0] "%s つのパッケージが削除されます。"
#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
-msgstr[0] ""
+msgstr[0] "%s·つのパッケージがインストールされます。"
#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
-msgstr[0] ""
+msgstr[0] "%s·つのパッケージがアップグレードされます。"
#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
-msgstr ""
+msgstr "全部で %s つのパッケージをダウンロードする必要があります。"
#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
-msgstr ""
+msgstr "アップグレードには数時間かかり、今後一切キャンセルはできません。"
#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+"データロスを避けるため、すべてのアプリケーションとドキュメントを閉じてくださ"
+"い。"
#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
-msgstr ""
+msgstr "アップグレードが見つかりません"
#: ../DistUpgrade/DistUpgradeViewGtk.py:419
-#, fuzzy
msgid "Your system has already been upgraded."
-msgstr "システムに壊れたパッケージがあります!"
+msgstr "システムはすでに最新の状態です。"
#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
-msgstr ""
+msgstr "削除されるパッケージ: %s"
#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
-msgstr ""
+msgstr "インストール %s"
#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
-msgstr ""
+msgstr "アップグレード %s"
#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
-msgstr ""
+msgstr "リブートしてください"
#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
+"アップグレードが終了しました。リブートが必要ですが、すぐに実行しますか?"
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
@@ -405,90 +433,97 @@ msgid ""
"The system could be in an unusable state if you cancel the upgrade. You are "
"strongly adviced to resume the upgrade."
msgstr ""
+"アップグレードをキャンセルしますか?\n"
+"\n"
+"アップグレードをキャンセルすると、システムはおそらく不安定な状態になります。"
+"アップグレードを再開することを強くおすすめします。"
#: ../DistUpgrade/DistUpgrade.glade.h:5
msgid "Restart the system to complete the upgrade"
msgstr ""
+"アップグレードを完了するためにシステムの再起動が必要です"
#: ../DistUpgrade/DistUpgrade.glade.h:6
msgid "Start the upgrade?"
-msgstr ""
+msgstr "アップグレードを開始しますか?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
"Upgrading to Ubuntu \"Dapper\" 6.06"
"span>"
msgstr ""
+"Ubuntu \"Dapper\" 6.06 にアップデート"
+"中"
#: ../DistUpgrade/DistUpgrade.glade.h:8
msgid "Cleaning up"
-msgstr ""
+msgstr "クリーンアップ"
#: ../DistUpgrade/DistUpgrade.glade.h:9
-#, fuzzy
msgid "Details"
-msgstr "詳細"
+msgstr "詳細"
#: ../DistUpgrade/DistUpgrade.glade.h:10
msgid "Difference between the files"
-msgstr ""
+msgstr "ファイル間の違い"
#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
-msgstr ""
+msgstr "アップグレードをダウンロードし、インストール"
#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
-msgstr ""
+msgstr "ソフトウェア・チャンネルを最適化"
#: ../DistUpgrade/DistUpgrade.glade.h:13
msgid "Preparing the upgrade"
-msgstr ""
+msgstr "アップグレードの準備中"
#: ../DistUpgrade/DistUpgrade.glade.h:14
msgid "Restarting the system"
-msgstr ""
+msgstr "システムを再スタート中"
#: ../DistUpgrade/DistUpgrade.glade.h:15
msgid "Terminal"
-msgstr ""
+msgstr "端末"
#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
-msgstr ""
+msgstr "Ubuntu のアップグレード中"
#: ../DistUpgrade/DistUpgrade.glade.h:17
msgid "_Keep"
-msgstr ""
+msgstr "そのまま(_K)"
#: ../DistUpgrade/DistUpgrade.glade.h:18
-#, fuzzy
msgid "_Replace"
-msgstr "再読込"
+msgstr "置き換える(_R)"
#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
-msgstr ""
+msgstr "バグを報告する(_R)"
#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
-msgstr ""
+msgstr "すぐに再起動(_R)"
#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
-msgstr ""
+msgstr "アップグレードを再開する(_R)"
#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
msgid "Could not find the release notes"
-msgstr ""
+msgstr "アップグレードが見つかりません"
#: ../UpdateManager/DistUpgradeFetcher.py:69
msgid "The server may be overloaded. "
msgstr ""
#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
msgid "Could not download the release notes"
-msgstr ""
+msgstr "アップグレードをダウンロードできません"
#: ../UpdateManager/DistUpgradeFetcher.py:80
msgid "Please check your internet connection."
@@ -496,18 +531,20 @@ msgstr ""
#. no script file found in extracted tarbal
#: ../UpdateManager/DistUpgradeFetcher.py:151
+#, fuzzy
msgid "Could not run the upgrade tool"
-msgstr ""
+msgstr "アップグレードをインストールできません"
#: ../UpdateManager/DistUpgradeFetcher.py:152
#, fuzzy
msgid ""
"This is most likely a bug in the upgrade tool. Please report it as a bug"
-msgstr "選択したキーを削除できませんでした。バグとして報告してください。 "
+msgstr "算定中に解決できない問題がおきました。バグとして報告してください。 "
#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
msgid "Downloading the upgrade tool"
-msgstr ""
+msgstr "アップグレードをダウンロードし、インストール"
#: ../UpdateManager/DistUpgradeFetcher.py:175
msgid "The upgrade tool will guide you through the upgrade process."
@@ -518,8 +555,9 @@ msgid "Upgrade tool signature"
msgstr ""
#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
msgid "Upgrade tool"
-msgstr ""
+msgstr "アップグレード %s"
#: ../UpdateManager/DistUpgradeFetcher.py:207
msgid "Failed to fetch"
@@ -561,14 +599,14 @@ msgid ""
msgstr ""
#: ../UpdateManager/GtkProgress.py:107
-#, python-format
+#, fuzzy, python-format
msgid "Downloading file %li of %li with %s/s"
-msgstr ""
+msgstr "ダウンロード中: %li のうち %li 速度 %s/秒"
#: ../UpdateManager/GtkProgress.py:111
-#, python-format
+#, fuzzy, python-format
msgid "Downloading file %li of %li with unknown speed"
-msgstr ""
+msgstr "ダウンロード中: 速度不明で %li のうち %li"
#: ../UpdateManager/UpdateManager.py:147
msgid "The list of changes is not available yet. Please try again later."
@@ -584,14 +622,15 @@ msgstr ""
#. print "WARNING, keeping packages"
#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
msgid "Cannot install all available updates"
-msgstr ""
+msgstr "インストールできるアップデートを表示し、インストール"
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -607,7 +646,7 @@ msgstr "バージョン %s: \n"
#: ../UpdateManager/UpdateManager.py:390
#, fuzzy
msgid "Downloading the list of changes..."
-msgstr "変更点の取得を中止"
+msgstr "変更点を取得中..."
#: ../UpdateManager/UpdateManager.py:428
#, fuzzy
@@ -618,7 +657,7 @@ msgstr "システムは最新の状態です!"
#, fuzzy, python-format
msgid "You can install one update"
msgid_plural "You can install %s updates"
-msgstr[0] "アップデートをインストール中..."
+msgstr[0] "インストールできるアップデートを表示し、インストール"
#: ../UpdateManager/UpdateManager.py:439
#, python-format
@@ -628,19 +667,20 @@ msgstr ""
#: ../UpdateManager/UpdateManager.py:450
#, fuzzy
msgid "Hide details"
-msgstr "詳細"
+msgstr "詳細を表示"
#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
msgid "Show details"
-msgstr ""
+msgstr "詳細を表示"
#: ../UpdateManager/UpdateManager.py:467
msgid "Please wait, this can take some time."
msgstr ""
#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
msgid "Update is complete"
-msgstr ""
+msgstr "ダウンロードが完了しました"
#: ../UpdateManager/UpdateManager.py:583
msgid "Repositories changed"
@@ -701,6 +741,11 @@ msgid ""
"Your system does not check for updates automatically. You can configure this "
"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"."
msgstr ""
+"アップデートの情報を手動でチェックしてください\n"
+"\n"
+"システムはアップデートを自動的にチェックしません。この設定の変更は·\"システム"
+"(System)\"·->·\"システム管理\"·->·\"ソフトウェアのプロパティ (Software "
+"Properties)\" で行います。"
#: ../data/UpdateManager.glade.h:4
msgid ""
@@ -709,14 +754,18 @@ msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
+"システムを解析中です\n"
+"\n"
+"ソフトウェアアップデートはエラーを修正しています。セキュリティホールを修正"
+"し、新機能を提供します。"
#: ../data/UpdateManager.glade.h:7
msgid "Keep your system up-to-date"
-msgstr ""
+msgstr "システムを最新の状態にする"
#: ../data/UpdateManager.glade.h:8
msgid "Cancel _Download"
-msgstr ""
+msgstr "ダウンロードをキャンセル(_D)"
#: ../data/UpdateManager.glade.h:9
msgid "Changes"
@@ -724,11 +773,11 @@ msgstr "変更点"
#: ../data/UpdateManager.glade.h:10
msgid "Chec_k"
-msgstr ""
+msgstr "チェック(_K)"
#: ../data/UpdateManager.glade.h:11
msgid "Check the software channels for new updates"
-msgstr ""
+msgstr "新しいアップデートのためにソフトウェアチャンネルをチェック"
#: ../data/UpdateManager.glade.h:12
msgid "Description"
@@ -736,11 +785,11 @@ msgstr "詳細"
#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
-msgstr ""
+msgstr "リリースノート"
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
-msgstr ""
+msgstr "シングル・ファイルの進捗を表示"
#: ../data/UpdateManager.glade.h:16
msgid "Software Updates"
@@ -751,45 +800,42 @@ msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
+"アップデートによってソフトウェアの問題を修正し、セキュリティホールを除去し、"
+"新機能を追加します。"
#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
-msgstr ""
+msgstr "アップグレード(_P)"
#: ../data/UpdateManager.glade.h:19
msgid "Upgrade to the latest version of Ubuntu"
-msgstr ""
+msgstr "Ubuntu の最新バージョンにアップグレード"
#: ../data/UpdateManager.glade.h:20
msgid "_Check"
-msgstr ""
+msgstr "チェック(_C)"
#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
-msgstr ""
+msgstr "今後この情報を隠す(_H)"
#: ../data/UpdateManager.glade.h:22
-#, fuzzy
msgid "_Install Updates"
-msgstr "アップデートをインストール中..."
+msgstr "アップデートをインストール(_I)"
#: ../data/SoftwareProperties.glade.h:1
-#, fuzzy
msgid "Channels"
-msgstr "詳細"
+msgstr "チャンネル"
#: ../data/SoftwareProperties.glade.h:2
-#, fuzzy
msgid "Internet updates"
msgstr "インターネットアップデート"
#: ../data/SoftwareProperties.glade.h:3
-#, fuzzy
msgid "Keys"
-msgstr "詳細"
+msgstr "鍵"
#: ../data/SoftwareProperties.glade.h:4
-#, fuzzy
msgid "Add _Cdrom"
msgstr "CDの追加(_C)"
@@ -799,22 +845,19 @@ msgstr "認証"
#: ../data/SoftwareProperties.glade.h:6
msgid "D_elete downloaded software files:"
-msgstr ""
+msgstr "ダウンロードしたファイルを削除(_E):"
#: ../data/SoftwareProperties.glade.h:7
-#, fuzzy
msgid "Import the public key from a trusted software provider"
-msgstr "信頼されたキーリングから選択した鍵を削除します。"
+msgstr "信頼したソフトウェア供給者の公開鍵をインポートする"
#: ../data/SoftwareProperties.glade.h:8
-#, fuzzy
msgid "Installation Media"
-msgstr "アップデートをインストール中..."
+msgstr "インストールメディア"
#: ../data/SoftwareProperties.glade.h:9
-#, fuzzy
msgid "Internet Updates"
-msgstr "インターネットアップデート"
+msgstr "インターネットアップデート"
#: ../data/SoftwareProperties.glade.h:10
msgid ""
@@ -822,16 +865,17 @@ msgid ""
"automatically. The software package \"unattended-upgrades\" needs to be "
"installed therefor"
msgstr ""
+"公式な Ubuntu サーバからのセキュリティアップデートだけ自動的にインストールさ"
+"れます。なので \"非公式サーバにある\" ソフトウェアパッケージをインストールす"
+"る必要があります。"
#: ../data/SoftwareProperties.glade.h:11
-#, fuzzy
msgid "Restore _Defaults"
-msgstr "デフォルトの鍵を元に戻す"
+msgstr "デフォルトに戻す(_D)"
#: ../data/SoftwareProperties.glade.h:12
-#, fuzzy
msgid "Restore the default keys of your distribution"
-msgstr "デフォルトの鍵を元に戻す"
+msgstr "ディストリビューション標準の鍵を元に戻す"
#: ../data/SoftwareProperties.glade.h:13
msgid "Software Preferences"
@@ -839,15 +883,15 @@ msgstr "ソフトウェアの設定"
#: ../data/SoftwareProperties.glade.h:14
msgid "_Check for updates automatically:"
-msgstr ""
+msgstr "アップデートを自動的にチェックする(_C):"
#: ../data/SoftwareProperties.glade.h:15
msgid "_Download updates in the background, but do not install them"
-msgstr ""
+msgstr "アップデートをダウンロードはするが、インストールはしない(_D)"
#: ../data/SoftwareProperties.glade.h:16
msgid "_Install security updates without confirmation"
-msgstr ""
+msgstr "確認せずにセキュリティアップデートをインストール(_I)"
#: ../data/SoftwarePropertiesDialogs.glade.h:2
msgid " "
@@ -862,27 +906,30 @@ msgid ""
"\n"
"You need a working internet connection to continue."
msgstr ""
+"チャンネルの情報が古いです\n"
+"\n"
+"新規追加ないし変更したチャンネルからインストールないしアップデートするため"
+"に、チャンネルをリロードしてください。\n"
+"\n"
+"続けるためには、インターネット接続が有効になっている必要があります。"
#: ../data/SoftwarePropertiesDialogs.glade.h:8
-#, fuzzy
msgid "Channel"
-msgstr "詳細"
+msgstr "チャンネル"
#: ../data/SoftwarePropertiesDialogs.glade.h:9
msgid "Comment:"
msgstr "コメント:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-#, fuzzy
msgid "Components:"
-msgstr "コンポーネント"
+msgstr "コンポーネント:"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
msgid "Distribution:"
msgstr "ディストリビューション:"
#: ../data/SoftwarePropertiesDialogs.glade.h:12
-#, fuzzy
msgid "Sections"
msgstr "セクション:"
@@ -895,7 +942,6 @@ msgid "URI:"
msgstr "URI:"
#: ../data/SoftwarePropertiesDialogs.glade.h:15
-#, fuzzy
msgid ""
"Enter the complete APT line of the channel that you want to add"
"big>\n"
@@ -903,11 +949,10 @@ msgid ""
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
-"追加したい APT line のレポジトリを入力してください。\n"
+"追加したい完全な APT line を入力してください。\n"
"\n"
-"APT lineにはタイプ、場所、内容などを含めることができます。例:\"deb http://"
-"ftp.debian.org sarge main\"付属のドキュメントに詳細な記述形式について書か"
-"れています。"
+"APT lineにはタイプ、場所、チャンネルのセクションなどを含めることができます。"
+"例:\"deb http://ftp.debian.org sarge main\""
#: ../data/SoftwarePropertiesDialogs.glade.h:18
msgid "APT line:"
@@ -915,7 +960,7 @@ msgstr "APT line:"
#: ../data/SoftwarePropertiesDialogs.glade.h:19
msgid "Add Channel"
-msgstr ""
+msgstr "チャンネルを追加"
#: ../data/SoftwarePropertiesDialogs.glade.h:20
msgid ""
@@ -927,28 +972,27 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:22
msgid "Edit Channel"
-msgstr ""
+msgstr "チャンネルを編集"
#: ../data/SoftwarePropertiesDialogs.glade.h:23
msgid "Scanning CD-ROM"
-msgstr ""
+msgstr "CD-ROMをスキャン"
#: ../data/SoftwarePropertiesDialogs.glade.h:24
msgid "_Add Channel"
-msgstr ""
+msgstr "チャンネルを追加(_A)"
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
msgstr "カスタム(_C)"
#: ../data/SoftwarePropertiesDialogs.glade.h:26
-#, fuzzy
msgid "_Reload"
-msgstr "再読込"
+msgstr "再読込(_R)"
#: ../data/update-manager.desktop.in.h:1
msgid "Show and install available updates"
-msgstr ""
+msgstr "インストールできるアップデートを表示し、インストール"
#: ../data/update-manager.desktop.in.h:2
msgid "Update Manager"
@@ -960,64 +1004,62 @@ msgid ""
"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 ""
+msgstr "チャンネルリストの再読み込みを催促する"
#: ../data/update-manager.schemas.in.h:3
msgid "Show details of an update"
-msgstr ""
+msgstr "アップデートの詳細を表示"
#: ../data/update-manager.schemas.in.h:4
msgid "Stores the size of the update-manager dialog"
-msgstr ""
+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 ""
+msgstr "変更点と概要のリストを含んだ欄の状態を復元する"
#: ../data/update-manager.schemas.in.h:6
msgid "The window size"
-msgstr ""
+msgstr "ウィンドウのサイズ"
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
-msgstr ""
+msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../channels/Ubuntu.info.in:6
-#, fuzzy
msgid "Ubuntu 6.06 'Dapper Drake'"
-msgstr "Ubuntu 5.04 セキュリティアップデート"
+msgstr "buntu 6.06 'Dapper Drake'"
#. Description
#: ../channels/Ubuntu.info.in:23
-#, fuzzy
msgid "Ubuntu 6.06 Security Updates"
-msgstr "Ubuntu 5.04 セキュリティアップデート"
+msgstr "Ubuntu 6.06 セキュリティアップデート"
#. Description
#: ../channels/Ubuntu.info.in:40
-#, fuzzy
msgid "Ubuntu 6.06 Updates"
-msgstr "Ubuntu 5.04 セキュリティアップデート"
+msgstr "buntu 6.06 アップデート"
#. Description
#: ../channels/Ubuntu.info.in:57
-#, fuzzy
msgid "Ubuntu 6.06 Backports"
-msgstr "Ubuntu 5.04 セキュリティアップデート"
+msgstr "Ubuntu 6.06 バックポート"
#. Description
#: ../channels/Ubuntu.info.in:74
-#, fuzzy
msgid "Ubuntu 5.10 'Breezy Badger'"
-msgstr "Ubuntu 5.04 セキュリティアップデート"
+msgstr "Ubuntu·5.10·'Breezy·Badger'"
#. Description
#: ../channels/Ubuntu.info.in:91
@@ -1027,24 +1069,22 @@ msgstr "Ubuntu 5.10 セキュリティアップデート"
#. Description
#: ../channels/Ubuntu.info.in:108
msgid "Ubuntu 5.10 Updates"
-msgstr "Ubuntu 5.10 セキュリティアップデート"
+msgstr "Ubuntu 5.10 アップデート"
#. Description
#: ../channels/Ubuntu.info.in:125
-#, fuzzy
msgid "Ubuntu 5.10 Backports"
-msgstr "Ubuntu 5.10 セキュリティアップデート"
+msgstr "Ubuntu 5.10 バックポート"
#. CompDescription
#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
-#, fuzzy
msgid "Officially supported"
msgstr "公式サポート"
#. CompDescription
#: ../channels/Ubuntu.info.in:131
msgid "Restricted copyright"
-msgstr "Restricted copyright"
+msgstr "限定的な著作権(Restricted)"
#. CompDescription
#: ../channels/Ubuntu.info.in:134
@@ -1060,63 +1100,115 @@ msgstr "非フリー (Multiuniverse)"
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
-msgstr ""
+msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../channels/Debian.info.in:6
msgid "Debian 3.1 \"Sarge\""
-msgstr ""
+msgstr "Debian·3.1·\"Sarge\""
#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
-msgstr ""
+msgstr "http://security.debian.org/"
#. Description
#: ../channels/Debian.info.in:20
-#, fuzzy
msgid "Debian 3.1 \"Sarge\" Security Updates"
-msgstr "Debian Stable セキュリティアップデート"
+msgstr "Debian·3.1·\"Sarge\"·セキュリティアップデート"
#. Description
#: ../channels/Debian.info.in:34
msgid "Debian \"Etch\" (testing)"
-msgstr ""
+msgstr "Debian·\"Etch\"·(testing)"
#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
-msgstr ""
+msgstr "http://http.us.debian.org/debian/"
#. Description
#: ../channels/Debian.info.in:48
msgid "Debian \"Sid\" (unstable)"
-msgstr ""
+msgstr "Debian·\"Sid\"·(unstable)"
#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
-msgstr ""
+msgstr "非フリーな依存関係のあるDFSG適合ソフトウェア"
#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
-msgstr ""
+msgstr "DFSGに適合しないソフトウェア"
+
+#~ msgid "Oficially supported"
+#~ msgstr "公式サポート"
+
+#~ msgid ""
+#~ "The upgrade aborts now. Your system can be in an unusable state. Please "
+#~ "try 'sudo apt-get install -f' or Synaptic to fix your system."
+#~ msgstr ""
+#~ "アップグレードを中断しました。システムが不安定な状態になっています。システ"
+#~ "ムを修正するために 'sudo apt-get install -f ' または Synapticを試してみて"
+#~ "ください。"
+
+#~ msgid "Remove obsolete Packages?"
+#~ msgstr "古いパッケージ削除しますか?"
+
+#~ msgid "Installing updates"
+#~ msgstr "アップデートをインストール中"
+
+#~ msgid ""
+#~ "Upgrading to Ubuntu \"Dapper\" "
+#~ "6.04"
+#~ msgstr ""
+#~ "Ubuntu·\"Dapper\"·6.04 にアップグ"
+#~ "レード中"
+
+#~ msgid ""
+#~ "Checking for available updates\n"
+#~ "\n"
+#~ "Software updates can correct errors, eliminate security vulnerabilities, "
+#~ "and provide new features to you."
+#~ msgstr ""
+#~ "アップデートをチェック中\n"
+#~ "\n"
+#~ "アップデートによってソフトウェアの問題を修正し、セキュリティホールを除去"
+#~ "し、新機能を追加します。"
+
+#~ msgid "Check for available updates"
+#~ msgstr "インストールできるアップデートをチェック"
+
+#~ msgid "_Download updates in the backgound, but do not install them"
+#~ msgstr "アップデートを自動的にダウンロード、ただしインストールはしない(_D)"
#~ msgid "Sections:"
#~ msgstr "セクション:"
-#, fuzzy
-#~ msgid "Oficially supported"
-#~ msgstr "公式サポート"
+#~ msgid "Ubuntu 6.04 'Dapper Drake'"
+#~ msgstr "Ubuntu·6.04·'Dapper·Drake'"
+
+#~ msgid "Ubuntu 6.04 Security Updates"
+#~ msgstr "Ubuntu 6.04 セキュリティアップデート"
+
+#~ msgid "Ubuntu 6.04 Updates"
+#~ msgstr "Ubuntu 6.04 アップデート"
+
+#~ msgid "Ubuntu 6.04 Backports"
+#~ msgstr "Ubuntu 6.04 バックポート"
-#, fuzzy
#~ msgid "Reload the latest information about updates"
-#~ msgstr "サーバからパッケージ情報を再度読み込む。"
+#~ msgstr "アップデートに関する最新情報を再読み込み"
+
+#, fuzzy
+#~ msgid "Add the following software channel?"
+#~ msgid_plural "Add the following software channels?"
+#~ msgstr[0] "ソフトウェア・チャンネルを最適化"
#, fuzzy
-#~ msgid "Add Software Channels"
-#~ msgstr "ソフトウェアのアップデート"
+#~ msgid "Could not add any software channels"
+#~ msgstr "ソフトウェア・チャンネルを最適化"
#~ msgid ""
#~ "Downloading changes\n"
@@ -1130,13 +1222,56 @@ msgstr ""
#~ msgid "Show available updates and choose which to install"
#~ msgstr "アップデート可能なファイルの表示とインストール"
-#, fuzzy
#~ msgid "Ubuntu 5.04 \"Hoary Hedgehog\""
-#~ msgstr "Ubuntu 5.04 セキュリティアップデート"
+#~ msgstr "Ubuntu·5.04·\"Hoary·Hedgehog\""
+
+#~ msgid ""
+#~ "There is not enough free space on your system to download the required "
+#~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-"
+#~ "get clean'"
+#~ msgstr ""
+#~ "システムに要求されたパッケージをダウンロードするだけの十分な空き容量があり"
+#~ "ません。再び試行する前に 'sudo apt-get clean' などで空き容量を確保してくだ"
+#~ "さい"
-#, fuzzy
#~ msgid "Error fetching the packages"
-#~ msgstr "キー削除のエラー"
+#~ msgstr "パッケージ取得中にエラー"
+
+#~ msgid ""
+#~ "Some problem occured during the fetching of the packages. This is most "
+#~ "likely a network problem. Please check your network and try again. "
+#~ msgstr ""
+#~ "パッケージを取得中になんらかのエラーが発生しました。おそらくネットワークの"
+#~ "問題です。ネットワークを確認して再試行してください。 "
+
+#~ msgid ""
+#~ "%s packages are going to be removed.\n"
+#~ "%s packages are going to be newly installed.\n"
+#~ "%s packages are going to be upgraded.\n"
+#~ "\n"
+#~ "%s needs to be fetched"
+#~ msgstr ""
+#~ "%s·つのパッケージが削除されます。\n"
+#~ "%s·つのパッケージが新規インストールされます。\n"
+#~ "%s·つのパッケージがアップグレードされます。\n"
+#~ "\n"
+#~ "%s·つのパッケージを取得します"
+
+#~ msgid "To be installed: %s"
+#~ msgstr "インストールされるパッケージ:·%s"
+
+#~ msgid "To be upgraded: %s"
+#~ msgstr "アップグレードされるパッケージ:·%s"
+
+#~ msgid "Are you sure you want cancel?"
+#~ msgstr "本当にキャンセルしますか?"
+
+#~ msgid ""
+#~ "Canceling during a upgrade can leave the system in a unstable state. It "
+#~ "is strongly adviced to continue the operation. "
+#~ msgstr ""
+#~ "アップグレード中にキャンセルすると、システムが不安定な状態になります。動作"
+#~ "を継続することを強く忠告します。 "
#, fuzzy
#~ msgid "Sources"
@@ -1146,9 +1281,16 @@ msgstr ""
#~ msgid "Automatically check for updates"
#~ msgstr "アップデートを自動的にチェックする(_U)"
+#, fuzzy
+#~ msgid "Cancel downloading of the changelog"
+#~ msgstr "変更点の取得を中止"
+
#~ msgid "Choose a key-file"
#~ msgstr "キーファイルを選択"
+#~ msgid "Components"
+#~ msgstr "コンポーネント"
+
#~ msgid "Repository"
#~ msgstr "リポジトリ"
diff --git a/po/lt.po b/po/lt.po
index b3654f06..05794ece 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-20 21:56+0000\n"
-"Last-Translator: Žygimantas Beručka \n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-10 18:55+0000\n"
+"Last-Translator: Jonas Slivka \n"
"Language-Team: Lithuanian \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -77,6 +77,9 @@ msgid ""
"Your system contains broken packages that couldn't be fixed with this "
"software. Please fix them first using synaptic or apt-get before proceeding."
msgstr ""
+"Jūsų sistemoje yra sugadintų paketų, kurie negali būti sutaisyti šia "
+"programa. Prieš tęsdami pirmiausia sutaisykite juos naudodamiesi „synaptic“ "
+"arba „apt-get“."
#: ../DistUpgrade/DistUpgradeCache.py:135
msgid "Can't upgrade required meta-packages"
@@ -84,7 +87,7 @@ msgstr "Negalima atnaujinti reikiamų metapaketų"
#: ../DistUpgrade/DistUpgradeCache.py:142
msgid "A essential package would have to be removed"
-msgstr ""
+msgstr "Turėtų būti pašalintas esminis paketas"
#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
@@ -96,6 +99,8 @@ msgid ""
"A unresolvable problem occured while calculating the upgrade. Please report "
"this as a bug. "
msgstr ""
+"Iškilo neišsprendžiama problema apskaičiuojant atnaujinimą. Praneškite apie "
+"tai kaip klaidą. "
#. FIXME: maybe ask a question here? instead of failing?
#: ../DistUpgrade/DistUpgradeCache.py:169
@@ -108,6 +113,8 @@ msgid ""
"network problem. You may want to try again later. See below for a list of "
"unauthenticated packages."
msgstr ""
+"Nepavyko patvirtinti kelių paketų autentiškumo. Tai gali būti laikina tinklo "
+"problema. Galite bandyti vėliau. Žemiau yra nepatvirtintų paketų sąrašas."
#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
@@ -123,8 +130,9 @@ msgstr ""
#. FIXME: provide a list
#: ../DistUpgrade/DistUpgradeCache.py:241
+#, fuzzy
msgid "Can't guess meta-package"
-msgstr ""
+msgstr "Negalima nuspėti meta paketo"
#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
@@ -134,10 +142,15 @@ msgid ""
" Please install one of the packages above first using synaptic or apt-get "
"before proceeding."
msgstr ""
+"Jūsų sistemoje nėra „ubuntu-desktop“, „kubuntu-desktop“ ar „edubuntu-"
+"desktop“ paketų ir buvo neįmanoma nustatyti, kokią „Ubuntu“ versiją "
+"naudojate.\n"
+" Prieš tęsdami pirmiausia įdiekite vieną iš šių paketų naudodamiesi "
+"„synaptic“ arba „apt-get“."
#: ../DistUpgrade/DistUpgradeControler.py:42
msgid "Reading cache"
-msgstr ""
+msgstr "Nuskaitoma talpykla"
#. FIXME: offer to write a new self.sources.list entry
#: ../DistUpgrade/DistUpgradeControler.py:106
@@ -145,10 +158,13 @@ msgid "No valid entry found"
msgstr "Nerasta tinkamo įrašo"
#: ../DistUpgrade/DistUpgradeControler.py:107
+#, fuzzy
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
+"Skanuojant Jūsų saugyklos informaciją nebuvo rasta tinkamo atnaujinimo "
+"įrašo.\n"
#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
@@ -159,6 +175,8 @@ msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
+"Saugyklos informacijos atnaujinimo rezultatas buvo sugadinta byla. "
+"Praneškite apie tai kaip klaidą."
#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
@@ -169,6 +187,8 @@ msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
+"Atnaujinant iškilo problema. Tai greičiausiai kokia nors tinklo problema, "
+"todėl iš naujo patikrinkite tinklo jungtis ir bandykite dar."
#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
@@ -181,6 +201,9 @@ msgid ""
"trash and remove temporary packages of former installations using 'sudo apt-"
"get clean'."
msgstr ""
+"Atnaujinimas dabar bus nutrauktas. Atlaisvinkite bent %s disko. Išvalykite "
+"šiukšlinę ir pašalinkite laikinus paketus, likusius iš praeitų diegimų "
+"naudodamiesi komanda „sudo apt-get clean“."
#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
@@ -192,10 +215,13 @@ msgid "Could not install the upgrades"
msgstr "Nepavyko įdiegti atnaujinimų"
#: ../DistUpgrade/DistUpgradeControler.py:214
+#, fuzzy
msgid ""
"The upgrade aborts now. Your system can be in an unusable state. A recovery "
"is now run (dpkg --configure -a)."
msgstr ""
+"Atnaujinimas dabar bus nutrauktas. Jūsų sistema gali būti netinkama naudoti. "
+"Dabar bus vykdomas atkūrimas (dpkg --configure -a)."
#: ../DistUpgrade/DistUpgradeControler.py:230
msgid "Could not download the upgrades"
@@ -206,19 +232,20 @@ msgid ""
"The upgrade aborts now. Please check your internet connection or "
"installation media and try again. "
msgstr ""
+"Atnaujinimas dabar bus nutrauktas. Patikrinkite Interneto ryšį arba įdiegimo "
+"laikmeną ir bandykite dar. "
#: ../DistUpgrade/DistUpgradeControler.py:273
-#, fuzzy
msgid "Remove obsolete packages?"
msgstr "Pašalinti pasenusius paketus?"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Skip This Step"
-msgstr ""
+msgstr "_Praleisti šį žingsnį"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Remove"
-msgstr ""
+msgstr "P_ašalinti"
#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
@@ -229,6 +256,8 @@ msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
+"Išvalymo metu iškilo problema. Daugiau informacijos rasite žemiau esančiame "
+"pranešime. "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
#. then open the cache (again)
@@ -261,7 +290,7 @@ msgstr "Sistemos atnaujinimas baigtas."
#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
-msgstr ""
+msgstr "Įdėkite „%s“ į įrenginį „%s“"
#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
@@ -288,7 +317,7 @@ msgstr "Atsiunčiama rinkmena %li iš %li, %s/s greičiu"
#. -> longer term, move this code into python-apt
#: ../DistUpgrade/DistUpgradeViewGtk.py:140
msgid "Applying changes"
-msgstr ""
+msgstr "Pritaikomi pakeitimai"
#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
@@ -306,10 +335,12 @@ msgid ""
"Replace configuration file\n"
"'%s'?"
msgstr ""
+"Ar pakeisti konfigūracijos bylą\n"
+"„%s“?"
#: ../DistUpgrade/DistUpgradeViewGtk.py:188
msgid "The 'diff' command was not found"
-msgstr ""
+msgstr "Nerasta komanda „diff“"
#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
@@ -320,6 +351,8 @@ msgid ""
"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
+"Praneškite apie tai kaip klaidą ir prie pranešimo pridėkite „~/dist-upgrade."
+"log“ bei „~/dist-upgrade-apt.log“ bylas. Atnaujinimas dabar bus nutrauktas. "
#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
@@ -413,10 +446,15 @@ msgid ""
"The system could be in an unusable state if you cancel the upgrade. You are "
"strongly adviced to resume the upgrade."
msgstr ""
+"Ar nutraukti vykdomą atnaujinimą?\n"
+"\n"
+"Jei nutrauksite atnaujinimą, sistema gali tapti netinkama naudoti. Patartina "
+"pratęsti atnaujinimą."
#: ../DistUpgrade/DistUpgrade.glade.h:5
+#, fuzzy
msgid "Restart the system to complete the upgrade"
-msgstr ""
+msgstr "Iš naujo įkrauti sistemą norint užbaigti atnaujinimą"
#: ../DistUpgrade/DistUpgrade.glade.h:6
msgid "Start the upgrade?"
@@ -441,7 +479,7 @@ msgstr "Detalės"
#: ../DistUpgrade/DistUpgrade.glade.h:10
msgid "Difference between the files"
-msgstr ""
+msgstr "Skirtumai tarp bylų"
#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
@@ -469,7 +507,7 @@ msgstr "Atnaujinama Ubuntu"
#: ../DistUpgrade/DistUpgrade.glade.h:17
msgid "_Keep"
-msgstr ""
+msgstr "_Palikti"
#: ../DistUpgrade/DistUpgrade.glade.h:18
#, fuzzy
@@ -517,7 +555,8 @@ msgstr "Nepavyko įdiegti atnaujinimų"
msgid ""
"This is most likely a bug in the upgrade tool. Please report it as a bug"
msgstr ""
-"Jūsų pasirinkto rakto pašalinti nepavyko. Praneškite apie tai kaip klaidą."
+"Iškilo neišsprendžiama problema apskaičiuojant atnaujinimą. Praneškite apie "
+"tai kaip klaidą. "
#: ../UpdateManager/DistUpgradeFetcher.py:173
#, fuzzy
@@ -604,8 +643,8 @@ msgstr "Rodyti ir įdiegti galimus atnaujinimus"
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -738,7 +777,7 @@ msgstr "Pakeitimai"
#: ../data/UpdateManager.glade.h:10
msgid "Chec_k"
-msgstr ""
+msgstr "Ti_krinti"
#: ../data/UpdateManager.glade.h:11
msgid "Check the software channels for new updates"
@@ -778,7 +817,7 @@ msgstr "Atnaujinti iki naujausios Ubuntu versijos"
#: ../data/UpdateManager.glade.h:20
msgid "_Check"
-msgstr ""
+msgstr "_Patikrinti"
#: ../data/UpdateManager.glade.h:21
msgid "_Hide this information in the future"
@@ -825,11 +864,14 @@ msgid "Internet Updates"
msgstr "Internetiniai atnaujinimai"
#: ../data/SoftwareProperties.glade.h:10
+#, fuzzy
msgid ""
"Only security updates from the official Ubuntu servers will be installed "
"automatically. The software package \"unattended-upgrades\" needs to be "
"installed therefor"
msgstr ""
+"Tik saugumo atnaujinimai iš oficialių „Ubuntu“ serverių bus automatiškai "
+"įdiegti, todėl turi būti įdiegtas „unattended-upgrades“ programų paketas."
#: ../data/SoftwareProperties.glade.h:11
msgid "Restore _Defaults"
@@ -848,7 +890,6 @@ msgid "_Check for updates automatically:"
msgstr "_Ieškoti atnaujinimų automatiškai:"
#: ../data/SoftwareProperties.glade.h:15
-#, fuzzy
msgid "_Download updates in the background, but do not install them"
msgstr "_Atsiųsti atnaujinimus fone, tačiau jų neįdiegti"
@@ -869,6 +910,12 @@ msgid ""
"\n"
"You need a working internet connection to continue."
msgstr ""
+"Kanalo informacija yra pasenusi\n"
+"\n"
+"Jūs turite iš naujo įkelti kanalo informaciją, kad galėtumėte įdiegti "
+"programinę įrangą ir atnaujinimus iš naujai pridėtų ar pakeistų kanalų. \n"
+"\n"
+"Tęsimui reikia veikiančio Interneto ryšio."
#: ../data/SoftwarePropertiesDialogs.glade.h:8
msgid "Channel"
@@ -879,9 +926,8 @@ msgid "Comment:"
msgstr "Komentaras:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-#, fuzzy
msgid "Components:"
-msgstr "Komentaras:"
+msgstr "Komponentai:"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
msgid "Distribution:"
@@ -994,27 +1040,23 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../channels/Ubuntu.info.in:6
-#, fuzzy
msgid "Ubuntu 6.06 'Dapper Drake'"
-msgstr "Ubuntu 6.04 „Dapper Drake“"
+msgstr "Ubuntu 6.06 „Dapper Drake“"
#. Description
#: ../channels/Ubuntu.info.in:23
-#, fuzzy
msgid "Ubuntu 6.06 Security Updates"
-msgstr "Ubuntu 6.04 saugumo atnaujinimai"
+msgstr "Ubuntu 6.06 saugumo atnaujinimai"
#. Description
#: ../channels/Ubuntu.info.in:40
-#, fuzzy
msgid "Ubuntu 6.06 Updates"
-msgstr "Ubuntu 6.04 atnaujinimai"
+msgstr "Ubuntu 6.06 atnaujinimai"
#. Description
#: ../channels/Ubuntu.info.in:57
-#, fuzzy
msgid "Ubuntu 6.06 Backports"
-msgstr "Ubuntu 6.04 atnaujinimai"
+msgstr "Ubuntu 6.06 atnaujinimai"
#. Description
#: ../channels/Ubuntu.info.in:74
@@ -1039,7 +1081,7 @@ msgstr ""
#. CompDescription
#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
msgid "Officially supported"
-msgstr ""
+msgstr "Oficialiai palaikoma"
#. CompDescription
#: ../channels/Ubuntu.info.in:131
@@ -1102,15 +1144,15 @@ msgstr "Su DFSG suderinama programinė įranga su Ne Laisvomis priklausomybėmis
msgid "Non-DFSG-compatible Software"
msgstr "Su DFSG nesuderinama programinė įranga"
+#~ msgid "Oficially supported"
+#~ msgstr "Prižiūrima oficialiai"
+
#~ msgid "Installing updates"
#~ msgstr "Diegiami atnaujinimai"
#~ msgid "Sections:"
#~ msgstr "Skyriai:"
-#~ msgid "Oficially supported"
-#~ msgstr "Prižiūrima oficialiai"
-
#~ msgid ""
#~ "You need to manually reload the latest information about updates"
#~ "big>\n"
diff --git a/po/mk.po b/po/mk.po
index 998b7054..2b986317 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: mk\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-23 00:18+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-04 20:23+0000\n"
"Last-Translator: Арангел Ангов \n"
"Language-Team: Macedonian \n"
"MIME-Version: 1.0\n"
@@ -606,8 +606,8 @@ msgstr "Проверувам за надградби..."
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -1115,13 +1115,13 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Sections:"
-#~ msgstr "Оддели:"
-
#, fuzzy
#~ msgid "Oficially supported"
#~ msgstr "Официјално поддржано"
+#~ msgid "Sections:"
+#~ msgstr "Оддели:"
+
#~ msgid "Edit software sources and settings"
#~ msgstr "Уреди софтверски извори и поставувања"
diff --git a/po/nb.po b/po/nb.po
index 608bb9d5..7a35ccaf 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: nb\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-26 14:48+0000\n"
-"Last-Translator: Ingar Saltvik \n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-12 07:28+0000\n"
+"Last-Translator: Tor Harald Thorland \n"
"Language-Team: Norwegian Bokmal \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -215,13 +215,12 @@ msgid "Could not install the upgrades"
msgstr "Kunne ikke installere oppgraderingene"
#: ../DistUpgrade/DistUpgradeControler.py:214
-#, fuzzy
msgid ""
"The upgrade aborts now. Your system can be in an unusable state. A recovery "
"is now run (dpkg --configure -a)."
msgstr ""
-"Oppgraderingen avbrytes nå. Systemet ditt kan være ubrukelig. Vennlist prøv "
-"'sudo apt-get install -f' eller Synaptic for å fikse systemet ditt."
+"Oppgraderingen avbrytes nå. Systemet ditt kan være ubrukelig. En reperasjon "
+"kan være å kjøre (dpkg --configure -a)."
#: ../DistUpgrade/DistUpgradeControler.py:230
msgid "Could not download the upgrades"
@@ -236,17 +235,16 @@ msgstr ""
"installasjonsmediet og prøv på nytt. "
#: ../DistUpgrade/DistUpgradeControler.py:273
-#, fuzzy
msgid "Remove obsolete packages?"
msgstr "Ønsker du å fjerne utdaterte pakker?"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Skip This Step"
-msgstr ""
+msgstr "_Hopp over dette punktet"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Remove"
-msgstr ""
+msgstr "_Fjern"
#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
@@ -309,17 +307,16 @@ msgid "%s remaining"
msgstr "%s gjenstår"
#: ../DistUpgrade/DistUpgradeViewGtk.py:110
-#, fuzzy, python-format
+#, python-format
msgid "Downloading file %li of %li"
-msgstr "Laster ned fil %li av %li med %s/s"
+msgstr "Laster ned fil %li av %li"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
#. -> longer term, move this code into python-apt
#: ../DistUpgrade/DistUpgradeViewGtk.py:140
-#, fuzzy
msgid "Applying changes"
-msgstr "Laster ned endringer..."
+msgstr "Lagrer endringer"
#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
@@ -337,10 +334,12 @@ msgid ""
"Replace configuration file\n"
"'%s'?"
msgstr ""
+"Vil du erstatte konfigurasjonsfilen\n"
+"'%s?'"
#: ../DistUpgrade/DistUpgradeViewGtk.py:188
msgid "The 'diff' command was not found"
-msgstr ""
+msgstr "Kommandoen 'diff' ble ikke funnet"
#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
@@ -458,13 +457,12 @@ msgid "Start the upgrade?"
msgstr "Vil du starte oppgraderingen?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
-#, fuzzy
msgid ""
"Upgrading to Ubuntu \"Dapper\" 6.06"
"span>"
msgstr ""
"Oppgraderer til Ubuntu \"Dapper\" "
-"6.04"
+"6.06"
#: ../DistUpgrade/DistUpgrade.glade.h:8
msgid "Cleaning up"
@@ -476,7 +474,7 @@ msgstr "Detaljer"
#: ../DistUpgrade/DistUpgrade.glade.h:10
msgid "Difference between the files"
-msgstr ""
+msgstr "Forskjell mellom filene"
#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
@@ -504,12 +502,11 @@ msgstr "Oppgraderer Ubuntu"
#: ../DistUpgrade/DistUpgrade.glade.h:17
msgid "_Keep"
-msgstr ""
+msgstr "_Ta vare på"
#: ../DistUpgrade/DistUpgrade.glade.h:18
-#, fuzzy
msgid "_Replace"
-msgstr "_Last på nytt"
+msgstr "_Erstatt"
#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
@@ -641,8 +638,8 @@ msgstr "Vis og installèr tilgjengelige oppdateringer"
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -762,17 +759,16 @@ msgstr ""
"\"Programvareegenskaper\""
#: ../data/UpdateManager.glade.h:4
-#, fuzzy
msgid ""
"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-"Sjekker for tilgjengelige oppdateringer\n"
+"Analyserer ditt system\n"
"\n"
-"Programvareoppdateringer kan fikse feil, eliminere sikkerhetsproblemer og gi "
-"deg ny funksjonalitet."
+"Programvareoppdateringer kan reparere feil, eliminere sikkerhets problemer "
+"og gi deg ny funksjonalitet."
#: ../data/UpdateManager.glade.h:7
msgid "Keep your system up-to-date"
@@ -787,13 +783,12 @@ msgid "Changes"
msgstr "Endringer"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
msgid "Chec_k"
-msgstr "Sjekk"
+msgstr "Sjek_k"
#: ../data/UpdateManager.glade.h:11
msgid "Check the software channels for new updates"
-msgstr ""
+msgstr "Sjekk programvare kanaler for nye oppdateringer"
#: ../data/UpdateManager.glade.h:12
msgid "Description"
@@ -902,7 +897,6 @@ msgid "_Check for updates automatically:"
msgstr "_Sjekk for oppdateringer automatisk:"
#: ../data/SoftwareProperties.glade.h:15
-#, fuzzy
msgid "_Download updates in the background, but do not install them"
msgstr "_Last ned oppdateringer i bakgrunnen, men ikke installer dem"
@@ -939,7 +933,6 @@ msgid "Comment:"
msgstr "Kommentar:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-#, fuzzy
msgid "Components:"
msgstr "Komponenter"
@@ -1041,10 +1034,13 @@ msgid "Stores the size of the update-manager dialog"
msgstr "Lagrer størrelsen for update-manager dialogen"
#: ../data/update-manager.schemas.in.h:5
+#, fuzzy
msgid ""
"Stores the state of the expander that contains the list of changs and the "
"description"
msgstr ""
+"Lagrer innstillingene til delen som inneholder listen over endringer og "
+"beskrivelser"
#: ../data/update-manager.schemas.in.h:6
msgid "The window size"
@@ -1054,31 +1050,27 @@ msgstr "Vindusstørrelsen"
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
msgid "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
-msgstr ""
+msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../channels/Ubuntu.info.in:6
-#, fuzzy
msgid "Ubuntu 6.06 'Dapper Drake'"
-msgstr "Ubuntu 6.04 'Dapper Drake'"
+msgstr "Ubuntu 6.06 'Dapper Drake'"
#. Description
#: ../channels/Ubuntu.info.in:23
-#, fuzzy
msgid "Ubuntu 6.06 Security Updates"
-msgstr "Sikkerhetsoppdateringer for Ubuntu 6.04"
+msgstr "Sikkerhetsoppdateringer for Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:40
-#, fuzzy
msgid "Ubuntu 6.06 Updates"
-msgstr "Ubuntu 6.04 Oppdateringer"
+msgstr "Ubuntu 6.06 Oppdateringer"
#. Description
#: ../channels/Ubuntu.info.in:57
-#, fuzzy
msgid "Ubuntu 6.06 Backports"
-msgstr "Ubuntu 6.04 Backports"
+msgstr "Ubuntu 6.06 Backports"
#. Description
#: ../channels/Ubuntu.info.in:74
@@ -1124,7 +1116,7 @@ msgstr "Non-free (Multiverse)"
#: ../channels/Debian.info.in.h:4
#, no-c-format
msgid "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
-msgstr ""
+msgstr "http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../channels/Debian.info.in:6
@@ -1134,7 +1126,7 @@ msgstr "Debian 3.1 «Sarge»"
#. BaseURI
#: ../channels/Debian.info.in:19
msgid "http://security.debian.org/"
-msgstr ""
+msgstr "http://security.debian.org/"
#. Description
#: ../channels/Debian.info.in:20
@@ -1149,7 +1141,7 @@ msgstr "Debian \"Etch\" (testing)"
#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
-msgstr ""
+msgstr "http://http.us.debian.org/debian/"
#. Description
#: ../channels/Debian.info.in:48
@@ -1166,6 +1158,9 @@ msgstr "DFSG-kompatiblel programvare med Non-Free avhengigheter"
msgid "Non-DFSG-compatible Software"
msgstr "Ikke-DFSG-kompatibel programvare"
+#~ msgid "Oficially supported"
+#~ msgstr "Offisielt støttet"
+
#~ msgid "Installing updates"
#~ msgstr "Installerer oppdateringer"
@@ -1175,9 +1170,6 @@ msgstr "Ikke-DFSG-kompatibel programvare"
#~ msgid "Sections:"
#~ msgstr "Seksjoner:"
-#~ msgid "Oficially supported"
-#~ msgstr "Offisielt støttet"
-
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Oppdater pakkeinformasjonen fra tjeneren."
diff --git a/po/ne.po b/po/ne.po
index 73c023bf..921c0264 100644
--- a/po/ne.po
+++ b/po/ne.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager.HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-23 00:19+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-04 20:24+0000\n"
"Last-Translator: Jaydeep Bhusal \n"
"Language-Team: Nepali \n"
"MIME-Version: 1.0\n"
@@ -591,8 +591,8 @@ msgstr ""
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -1111,13 +1111,13 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Sections:"
-#~ msgstr "सेक्सनहरु:"
-
#, fuzzy
#~ msgid "Oficially supported"
#~ msgstr "कार्यालय बाट समर्थित"
+#~ msgid "Sections:"
+#~ msgstr "सेक्सनहरु:"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "सर्भर बाट प्याकेज जानकारी फेरि लोड गर्नुहोस"
diff --git a/po/nl.po b/po/nl.po
index c81baa63..68327d4b 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
"PO-Revision-Date: 2006-03-18 12:07+0000\n"
"Last-Translator: Michiel Sikkes \n"
"Language-Team: Nederlands \n"
@@ -575,8 +575,8 @@ msgstr ""
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
diff --git a/po/no.po b/po/no.po
index 081a41dd..27b46819 100644
--- a/po/no.po
+++ b/po/no.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: nb\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
"PO-Revision-Date: 2005-06-08 23:10+0200\n"
"Last-Translator: Terance Edward Sola \n"
"Language-Team: Norwegian Bokmal \n"
@@ -597,8 +597,8 @@ msgstr ""
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
diff --git a/po/pa.po b/po/pa.po
index 3b35ef00..f5b7d129 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: pa\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-18 12:07+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-04 20:24+0000\n"
"Last-Translator: Amanpreet Singh Alam \n"
"Language-Team: Punjabi \n"
"MIME-Version: 1.0\n"
@@ -581,8 +581,8 @@ msgstr ""
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
diff --git a/po/pl.po b/po/pl.po
index 7fff5196..8691f44b 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager cvs\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-26 19:34+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-10 09:28+0000\n"
"Last-Translator: Tomasz Dominikowski \n"
"Language-Team: Polish \n"
"MIME-Version: 1.0\n"
@@ -209,14 +209,13 @@ msgid "Could not install the upgrades"
msgstr "Instalacja aktualizacji zakończyła się niepowodzeniem."
#: ../DistUpgrade/DistUpgradeControler.py:214
-#, fuzzy
msgid ""
"The upgrade aborts now. Your system can be in an unusable state. A recovery "
"is now run (dpkg --configure -a)."
msgstr ""
"Aktualizacja została przerwana. System może znajdować się w stanie "
-"nienadającym się do użytku. Proszę spróbować naprawić system używając "
-"polecenia \"sudo apt-get install -f\" lub poprzez Synaptic Menedżer Pakietów."
+"nienadającym się do użytku. Uruchamianie naprawiania systemu (dpkg --"
+"configure -a)."
#: ../DistUpgrade/DistUpgradeControler.py:230
msgid "Could not download the upgrades"
@@ -231,17 +230,16 @@ msgstr ""
"dysk instalacyjny i spróbować ponownie. "
#: ../DistUpgrade/DistUpgradeControler.py:273
-#, fuzzy
msgid "Remove obsolete packages?"
msgstr "Usunąć niepotrzebne pakiety?"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Skip This Step"
-msgstr ""
+msgstr "Pomiń ten krok"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Remove"
-msgstr ""
+msgstr "Usuń"
#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
@@ -304,17 +302,16 @@ msgid "%s remaining"
msgstr "%s pozostało"
#: ../DistUpgrade/DistUpgradeViewGtk.py:110
-#, fuzzy, python-format
+#, python-format
msgid "Downloading file %li of %li"
-msgstr "Pobieranie pliku %li z %li z prędkością %s/s"
+msgstr "Pobieranie pliku %li z %li"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
#. -> longer term, move this code into python-apt
#: ../DistUpgrade/DistUpgradeViewGtk.py:140
-#, fuzzy
msgid "Applying changes"
-msgstr "Pobieranie informacji o zmianach..."
+msgstr "Zatwierdzanie zmian"
#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
@@ -332,10 +329,12 @@ msgid ""
"Replace configuration file\n"
"'%s'?"
msgstr ""
+"Zastąpić plik konfiguracyjny\n"
+"\"%s\"?"
#: ../DistUpgrade/DistUpgradeViewGtk.py:188
msgid "The 'diff' command was not found"
-msgstr ""
+msgstr "Komenda \"diff\" nie została odnaleziona"
#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
@@ -456,7 +455,6 @@ msgid "Start the upgrade?"
msgstr "Rozpocząć aktualizację?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
-#, fuzzy
msgid ""
"Upgrading to Ubuntu \"Dapper\" 6.06"
"span>"
@@ -474,7 +472,7 @@ msgstr "Szczegóły"
#: ../DistUpgrade/DistUpgrade.glade.h:10
msgid "Difference between the files"
-msgstr ""
+msgstr "Różnice pomiędzy plikami"
#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
@@ -502,12 +500,11 @@ msgstr "Aktualizacja Ubuntu"
#: ../DistUpgrade/DistUpgrade.glade.h:17
msgid "_Keep"
-msgstr ""
+msgstr "Zachowaj"
#: ../DistUpgrade/DistUpgrade.glade.h:18
-#, fuzzy
msgid "_Replace"
-msgstr "Wczytaj ponownie"
+msgstr "Zastąp"
#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
@@ -641,8 +638,8 @@ msgstr "Pokaż i zainstaluj dostępne aktualizacje"
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -658,7 +655,7 @@ msgstr "Wersja %s: \n"
#: ../UpdateManager/UpdateManager.py:390
#, fuzzy
msgid "Downloading the list of changes..."
-msgstr "Pobieranie pliku %li z %li z prędkością %s/s"
+msgstr "Pobieranie pliku %li z %li"
#: ../UpdateManager/UpdateManager.py:428
#, fuzzy
@@ -763,14 +760,13 @@ msgstr ""
"\"."
#: ../data/UpdateManager.glade.h:4
-#, fuzzy
msgid ""
"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-"Sprawdzanie dostępnych aktualizacji\n"
+"Sprawdzanie systemu\n"
"\n"
"Aktualizacje oprogramowania mogą poprawić błędy, wyeliminować słabe punkty "
"bezpieczeństwa i dostarczyć nowe funkcje."
@@ -788,13 +784,12 @@ msgid "Changes"
msgstr "Zmiany"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
msgid "Chec_k"
msgstr "Sprawdź"
#: ../data/UpdateManager.glade.h:11
msgid "Check the software channels for new updates"
-msgstr ""
+msgstr "Sprawdź kanały oprogramowania w poszukiwaniu nowych aktualizacji"
#: ../data/UpdateManager.glade.h:12
msgid "Description"
@@ -900,13 +895,12 @@ msgid "_Check for updates automatically:"
msgstr "Sprawdzaj dostępność aktualizacji automatycznie:"
#: ../data/SoftwareProperties.glade.h:15
-#, fuzzy
msgid "_Download updates in the background, but do not install them"
msgstr "Pobieraj aktualizacje w tle, ale ich nie instaluj"
#: ../data/SoftwareProperties.glade.h:16
msgid "_Install security updates without confirmation"
-msgstr "Instaluj aktualizacje bezpieczeństwa bez potwierdzania"
+msgstr "_Instaluj aktualizacje bezpieczeństwa bez potwierdzania"
#: ../data/SoftwarePropertiesDialogs.glade.h:2
msgid " "
@@ -937,7 +931,6 @@ msgid "Comment:"
msgstr "Komentarz:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-#, fuzzy
msgid "Components:"
msgstr "Komponenty"
@@ -1013,7 +1006,7 @@ msgstr "Pokaż i zainstaluj dostępne aktualizacje"
#: ../data/update-manager.desktop.in.h:2
msgid "Update Manager"
-msgstr "Menadżer aktualizacji"
+msgstr "Menedżer aktualizacji"
#: ../data/update-manager.schemas.in.h:1
msgid ""
@@ -1056,25 +1049,21 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../channels/Ubuntu.info.in:6
-#, fuzzy
msgid "Ubuntu 6.06 'Dapper Drake'"
msgstr "Ubuntu 6.06 \"Dapper Drake\""
#. Description
#: ../channels/Ubuntu.info.in:23
-#, fuzzy
msgid "Ubuntu 6.06 Security Updates"
msgstr "Aktualizacje bezpieczeństwa dla Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:40
-#, fuzzy
msgid "Ubuntu 6.06 Updates"
msgstr "Aktualizacje dla Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:57
-#, fuzzy
msgid "Ubuntu 6.06 Backports"
msgstr "Aktualizacje dla Ubuntu 6.06 (Backporty)"
@@ -1164,6 +1153,9 @@ msgstr "Oprogramowanie kompatybilne z DFSG z zależnościami Non-Free"
msgid "Non-DFSG-compatible Software"
msgstr "Oprogramowanie niekompatybilne z DFSG."
+#~ msgid "Oficially supported"
+#~ msgstr "Wspierane oficjalnie"
+
#~ msgid "Installing updates"
#~ msgstr "Instalowanie pakietów"
@@ -1173,9 +1165,6 @@ msgstr "Oprogramowanie niekompatybilne z DFSG."
#~ msgid "Sections:"
#~ msgstr "Sekcje:"
-#~ msgid "Oficially supported"
-#~ msgstr "Wspierane oficjalnie"
-
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Wczytuje ponownie z serwera informacje o pakietach."
diff --git a/po/pt.po b/po/pt.po
index 97b080da..8dd9916d 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -6,9 +6,9 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-25 21:49+0000\n"
-"Last-Translator: Rui Az. \n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-08 14:42+0000\n"
+"Last-Translator: Mykas0 \n"
"Language-Team: Ubuntu Portuguese Team \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -236,7 +236,6 @@ msgstr ""
"ou media de instalação e volte a tentar. "
#: ../DistUpgrade/DistUpgradeControler.py:273
-#, fuzzy
msgid "Remove obsolete packages?"
msgstr "Remover Pacotes obsoletos?"
@@ -246,7 +245,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Remove"
-msgstr ""
+msgstr "_Remover"
#: ../DistUpgrade/DistUpgradeControler.py:284
#, fuzzy
@@ -310,16 +309,16 @@ msgid "%s remaining"
msgstr "%s restantes"
#: ../DistUpgrade/DistUpgradeViewGtk.py:110
-#, fuzzy, python-format
+#, python-format
msgid "Downloading file %li of %li"
-msgstr "A descarregar ficheiro %li de %li com %s/s"
+msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
#. -> longer term, move this code into python-apt
#: ../DistUpgrade/DistUpgradeViewGtk.py:140
msgid "Applying changes"
-msgstr ""
+msgstr "Aplicando alterações"
#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
@@ -340,7 +339,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:188
msgid "The 'diff' command was not found"
-msgstr ""
+msgstr "O comando 'diff' não foi encontrado"
#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
@@ -457,13 +456,12 @@ msgid "Start the upgrade?"
msgstr "Iniciar a actualização?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
-#, fuzzy
msgid ""
"Upgrading to Ubuntu \"Dapper\" 6.06"
"span>"
msgstr ""
"A actualizar para Ubuntu \"Dapper\" "
-"6.04"
+"6.06"
#: ../DistUpgrade/DistUpgrade.glade.h:8
msgid "Cleaning up"
@@ -639,8 +637,8 @@ msgstr "Mostrar e instalar actualizações disponíveis"
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -779,13 +777,12 @@ msgid "Changes"
msgstr "Alterações"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
msgid "Chec_k"
-msgstr "_Verificar"
+msgstr "Verific_ar"
#: ../data/UpdateManager.glade.h:11
msgid "Check the software channels for new updates"
-msgstr ""
+msgstr "Verificar os canais de software por novas actualizações"
#: ../data/UpdateManager.glade.h:12
msgid "Description"
@@ -932,9 +929,8 @@ msgid "Comment:"
msgstr "Comentários:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-#, fuzzy
msgid "Components:"
-msgstr "Comentários:"
+msgstr "Componentes:"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
msgid "Distribution:"
@@ -1052,21 +1048,18 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../channels/Ubuntu.info.in:6
-#, fuzzy
msgid "Ubuntu 6.06 'Dapper Drake'"
-msgstr "Ubuntu 6.04 \"Dapper Drake\""
+msgstr "Ubuntu 6.06 'Dapper Drake'"
#. Description
#: ../channels/Ubuntu.info.in:23
-#, fuzzy
msgid "Ubuntu 6.06 Security Updates"
-msgstr "Ubuntu 6.04 Actualizações de Segurança"
+msgstr "Actualizações de Segurança Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:40
-#, fuzzy
msgid "Ubuntu 6.06 Updates"
-msgstr "Ubuntu 6.04 Actualizações"
+msgstr "Actualizações Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:57
@@ -1160,6 +1153,9 @@ msgstr "Software compatível-DFSG com Dependências Não-Livres"
msgid "Non-DFSG-compatible Software"
msgstr "Software compatível-DFSG"
+#~ msgid "Oficially supported"
+#~ msgstr "Suportado Oficialmente"
+
#~ msgid "Installing updates"
#~ msgstr "A instalar actualizações"
@@ -1169,9 +1165,6 @@ msgstr "Software compatível-DFSG"
#~ msgid "Sections:"
#~ msgstr "Secções:"
-#~ msgid "Oficially supported"
-#~ msgstr "Suportado Oficialmente"
-
#~ msgid "Reload the latest information about updates"
#~ msgstr "Reler a última informação sobre actualizações"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index eff32dbf..20543774 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -5,9 +5,9 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-23 01:47+0000\n"
-"Last-Translator: LKRaider \n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-10 05:17+0000\n"
+"Last-Translator: Mário Meyer \n"
"Language-Team: Ubuntu-BR \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -217,14 +217,12 @@ msgid "Could not install the upgrades"
msgstr "Não foi possível instalar as atualizações"
#: ../DistUpgrade/DistUpgradeControler.py:214
-#, fuzzy
msgid ""
"The upgrade aborts now. Your system can be in an unusable state. A recovery "
"is now run (dpkg --configure -a)."
msgstr ""
"A atualização será abortada agora. Seu sistema pode estar em um estado "
-"inutilizável. Por favor tente executar 'sudo apt-get install -f' ou entrar "
-"no Synaptic para corrigir o seu sistema."
+"instável. Uma recuperação é executada (dpkg --configure -a)."
#: ../DistUpgrade/DistUpgradeControler.py:230
msgid "Could not download the upgrades"
@@ -239,17 +237,16 @@ msgstr ""
"Internet ou mídia de instalação e tente de novo. "
#: ../DistUpgrade/DistUpgradeControler.py:273
-#, fuzzy
msgid "Remove obsolete packages?"
msgstr "Remover Pacotes obsoletos?"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Skip This Step"
-msgstr ""
+msgstr "_Pular Este Passo"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Remove"
-msgstr ""
+msgstr "_Remover"
#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
@@ -312,17 +309,16 @@ msgid "%s remaining"
msgstr "Faltam %s"
#: ../DistUpgrade/DistUpgradeViewGtk.py:110
-#, fuzzy, python-format
+#, python-format
msgid "Downloading file %li of %li"
-msgstr "Obtendo arquivo %li de %li a %s/s"
+msgstr "Obtendo arquivo %li de %li"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
#. -> longer term, move this code into python-apt
#: ../DistUpgrade/DistUpgradeViewGtk.py:140
-#, fuzzy
msgid "Applying changes"
-msgstr "Downloading changes..."
+msgstr "..."
#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
@@ -340,10 +336,12 @@ msgid ""
"Replace configuration file\n"
"'%s'?"
msgstr ""
+"Substituir arquivo de configuração\n"
+"'%s' ?"
#: ../DistUpgrade/DistUpgradeViewGtk.py:188
msgid "The 'diff' command was not found"
-msgstr ""
+msgstr "O comando 'diff' não foi encontrado"
#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
@@ -458,13 +456,12 @@ msgid "Start the upgrade?"
msgstr "Iniciar a Atualização?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
-#, fuzzy
msgid ""
"Upgrading to Ubuntu \"Dapper\" 6.06"
"span>"
msgstr ""
"Atualizando para o Ubuntu \"Dapper\" "
-"6.04"
+"6.06"
#: ../DistUpgrade/DistUpgrade.glade.h:8
msgid "Cleaning up"
@@ -476,7 +473,7 @@ msgstr "Detalhes"
#: ../DistUpgrade/DistUpgrade.glade.h:10
msgid "Difference between the files"
-msgstr ""
+msgstr "Diferenças entre os arquivos"
#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
@@ -504,12 +501,11 @@ msgstr "Atualizando o Ubuntu"
#: ../DistUpgrade/DistUpgrade.glade.h:17
msgid "_Keep"
-msgstr ""
+msgstr "_Manter"
#: ../DistUpgrade/DistUpgrade.glade.h:18
-#, fuzzy
msgid "_Replace"
-msgstr "_Recarregar"
+msgstr "_Subtituir"
#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
@@ -643,8 +639,8 @@ msgstr "Exibir e instalar as atualizações disponíveis"
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -660,7 +656,7 @@ msgstr "Version %s: \n"
#: ../UpdateManager/UpdateManager.py:390
#, fuzzy
msgid "Downloading the list of changes..."
-msgstr "Obtendo arquivo %li de %li a %s/s"
+msgstr "Obtendo arquivo %li de %li"
#: ../UpdateManager/UpdateManager.py:428
#, fuzzy
@@ -764,7 +760,6 @@ msgstr ""
"de Programas\"."
#: ../data/UpdateManager.glade.h:4
-#, fuzzy
msgid ""
"Analysing your system\n"
"\n"
@@ -789,13 +784,12 @@ msgid "Changes"
msgstr "Mudanças"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
msgid "Chec_k"
msgstr "_Verificar"
#: ../data/UpdateManager.glade.h:11
msgid "Check the software channels for new updates"
-msgstr ""
+msgstr "Verificar os canais de software por novas atualizações"
#: ../data/UpdateManager.glade.h:12
msgid "Description"
@@ -904,7 +898,6 @@ msgid "_Check for updates automatically:"
msgstr "Verifi_car por atualizações automaticamente:"
#: ../data/SoftwareProperties.glade.h:15
-#, fuzzy
msgid "_Download updates in the background, but do not install them"
msgstr "_Obter atualizações em segundo plano, mas não instalá-las"
@@ -941,9 +934,8 @@ msgid "Comment:"
msgstr "Comment:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-#, fuzzy
msgid "Components:"
-msgstr "Components"
+msgstr "Componentes:"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
msgid "Distribution:"
@@ -1061,27 +1053,23 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../channels/Ubuntu.info.in:6
-#, fuzzy
msgid "Ubuntu 6.06 'Dapper Drake'"
-msgstr "Ubuntu 6.04 'Dapper Drake'"
+msgstr "Ubuntu 6.06 'Dapper Drake'"
#. Description
#: ../channels/Ubuntu.info.in:23
-#, fuzzy
msgid "Ubuntu 6.06 Security Updates"
-msgstr "Atualizações de Segurança do Ubuntu 6.04"
+msgstr "Atualizações de Segurança do Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:40
-#, fuzzy
msgid "Ubuntu 6.06 Updates"
-msgstr "Atualizações do Ubuntu 6.04"
+msgstr "Atualizações do Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:57
-#, fuzzy
msgid "Ubuntu 6.06 Backports"
-msgstr "Backports do Ubuntu 6.04"
+msgstr "Backports do Ubuntu 6.06"
#. Description
#: ../channels/Ubuntu.info.in:74
@@ -1169,6 +1157,9 @@ 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 "Oficially supported"
+#~ msgstr "Suportado Oficialmente"
+
#~ msgid "Installing updates"
#~ msgstr "Instalando Atualizações"
@@ -1178,9 +1169,6 @@ msgstr "Programas não compatíveis com a DFSG"
#~ msgid "Sections:"
#~ msgstr "Sections:"
-#~ msgid "Oficially supported"
-#~ msgstr "Suportado Oficialmente"
-
#~ msgid "Reload the latest information about updates"
#~ msgstr "Recarregar as últimas informações sobre atualizações"
diff --git a/po/ro.po b/po/ro.po
index b44b33d4..f6815bcd 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-23 00:19+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-04 20:24+0000\n"
"Last-Translator: Dan Damian \n"
"Language-Team: Romanian \n"
"MIME-Version: 1.0\n"
@@ -605,8 +605,8 @@ msgstr ""
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -1122,13 +1122,13 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Sections:"
-#~ msgstr "Secţiuni:"
-
#, fuzzy
#~ msgid "Oficially supported"
#~ msgstr "Pachete suportate oficial"
+#~ msgid "Sections:"
+#~ msgstr "Secţiuni:"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Reîncarcă informaţiile despre pachete de pe server."
diff --git a/po/rw.po b/po/rw.po
index d744525a..5dafd11e 100644
--- a/po/rw.po
+++ b/po/rw.po
@@ -15,8 +15,8 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-18 12:07+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-04 20:24+0000\n"
"Last-Translator: Steve Murphy \n"
"Language-Team: Kinyarwanda \n"
"MIME-Version: 1.0\n"
@@ -381,7 +381,6 @@ msgstr ""
# #-#-#-#-# setup2.pot (PACKAGE VERSION) #-#-#-#-#
# setup2/source\ui\pages\plang.src:RESID_PAGE_PAGELANGUAGE.STR_PROG.text
-# #-#-#-#-# setup2.pot (PACKAGE VERSION) #-#-#-#-#
#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
@@ -602,8 +601,8 @@ msgstr ""
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -741,7 +740,6 @@ msgstr ""
# #-#-#-#-# basctl.pot (PACKAGE VERSION) #-#-#-#-#
# basctl/source\basicide\moptions.src:RID_MACROOPTIONS.RID_FT_DESCR.text
-# #-#-#-#-# basctl.pot (PACKAGE VERSION) #-#-#-#-#
#: ../data/UpdateManager.glade.h:12
msgid "Description"
msgstr "Isobanuramiterere"
@@ -783,7 +781,6 @@ msgstr ""
# #-#-#-#-# setup2.pot (PACKAGE VERSION) #-#-#-#-#
# setup2/source\ui\pages\plang.src:RESID_PAGE_PAGELANGUAGE.STR_PROG.text
-# #-#-#-#-# setup2.pot (PACKAGE VERSION) #-#-#-#-#
#: ../data/UpdateManager.glade.h:22
#, fuzzy
msgid "_Install Updates"
@@ -1338,7 +1335,6 @@ msgstr ""
# officecfg/registry\schema\org\openoffice\Office\Common.xcs:....Filter.Graphic.Export.PBM.FileFormat..0.text
# #-#-#-#-# officecfg.pot (PACKAGE VERSION) #-#-#-#-#
# officecfg/registry\schema\org\openoffice\Office\Common.xcs:....Filter.Graphic.Export.PGM.FileFormat..0.text
-# #-#-#-#-# officecfg.pot (PACKAGE VERSION) #-#-#-#-#
#~ msgid "Binary"
#~ msgstr "Nyabibiri"
diff --git a/po/sk.po b/po/sk.po
index 1e229b51..76b36a0e 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-26 01:43+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-07 00:57+0000\n"
"Last-Translator: Martin Mancuska \n"
"Language-Team: Slovak \n"
"MIME-Version: 1.0\n"
@@ -130,7 +130,7 @@ msgstr ""
#. FIXME: provide a list
#: ../DistUpgrade/DistUpgradeCache.py:241
msgid "Can't guess meta-package"
-msgstr ""
+msgstr "Nemôžem odhadnúť meta balíček."
#: ../DistUpgrade/DistUpgradeCache.py:242
msgid ""
@@ -140,45 +140,55 @@ msgid ""
" Please install one of the packages above first using synaptic or apt-get "
"before proceeding."
msgstr ""
+"Váš systmém neobsahuje žiadny balíčkov ubuntu-desktop, kubuntu-desktop alebo "
+"edubuntu-desktop a nebolo možné zistiť akú verziu ubuntu používate.\n"
+" Prosím, pred pokračovaním nainštalujte jeden z vyššie uvedených balíčkov "
+"pomocou synapticu alebo apt-get."
#: ../DistUpgrade/DistUpgradeControler.py:42
msgid "Reading cache"
-msgstr ""
+msgstr "Čítam cache"
#. FIXME: offer to write a new self.sources.list entry
#: ../DistUpgrade/DistUpgradeControler.py:106
msgid "No valid entry found"
-msgstr ""
+msgstr "Nebol nájdený žiadny platný záznam"
#: ../DistUpgrade/DistUpgradeControler.py:107
msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
+"Počas skenovania vašich zdrojov nebol nájdený žiadny platný záznam pre "
+"upgrade.\n"
#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
-msgstr ""
+msgstr "Neplatná informácia zdroja"
#: ../DistUpgrade/DistUpgradeControler.py:125
msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
+"Upgradovanie informácii o zdroji vrátilo neplatný súbor. Prosím, nahláste to "
+"ako bug."
#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
-msgstr ""
+msgstr "Chyba počas aktualizácie"
#: ../DistUpgrade/DistUpgradeControler.py:171
msgid ""
"A problem occured during the update. This is usually some sort of network "
"problem, please check your network connection and retry."
msgstr ""
+"Počas aktualizácie sa objavil problém. Toto je zvyčajne spôsobené chybou "
+"sieťového pripojenia, preto prosím skontrolujte vaše pripojenie a opakujte."
#: ../DistUpgrade/DistUpgradeControler.py:190
msgid "Not enough free disk space"
-msgstr ""
+msgstr "Nedostatok voľného miesta na disku"
#: ../DistUpgrade/DistUpgradeControler.py:191
#, python-format
@@ -187,122 +197,131 @@ msgid ""
"trash and remove temporary packages of former installations using 'sudo apt-"
"get clean'."
msgstr ""
+"Upgrade neočakávane skončil. Prosím, uvoľnite najmenej %s miesta na disku. "
+"Vyprázdnite váš kôš a odstráňte dočasné balíčky z predchádzajúcich "
+"inštalácií použitím 'sudo apt-get clean'."
#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
-msgstr ""
+msgstr "Chcete začať upgrade?"
#. installing the packages failed, can't be retried
#: ../DistUpgrade/DistUpgradeControler.py:213
msgid "Could not install the upgrades"
-msgstr ""
+msgstr "Nemožno nainštalovať upgrady"
#: ../DistUpgrade/DistUpgradeControler.py:214
msgid ""
"The upgrade aborts now. Your system can be in an unusable state. A recovery "
"is now run (dpkg --configure -a)."
msgstr ""
+"Upgrade neočakávane skončil. Váš systém môže byt v nestabilnom stave. Pre "
+"opravu skúste teraz spustiť (dpkg --configure -a)."
#: ../DistUpgrade/DistUpgradeControler.py:230
msgid "Could not download the upgrades"
-msgstr ""
+msgstr "Nemožno stiahnuť upgrady"
#: ../DistUpgrade/DistUpgradeControler.py:231
msgid ""
"The upgrade aborts now. Please check your internet connection or "
"installation media and try again. "
msgstr ""
+"Upgrade neočakávane skončil. Prosím, skontrolujte vaše internetové "
+"pripojenie alebo inštalačné médiá a skúste znova. "
#: ../DistUpgrade/DistUpgradeControler.py:273
msgid "Remove obsolete packages?"
-msgstr ""
+msgstr "Odstrániť zastaralé balíčky?"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Skip This Step"
-msgstr ""
+msgstr "_Preskočiť tento krok"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Remove"
-msgstr ""
+msgstr "_Odstrániť"
#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
-msgstr ""
+msgstr "Chyba počas zaznamenávania"
#: ../DistUpgrade/DistUpgradeControler.py:285
msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
+"Počas čistenia sa vyskytli nejaké problémy. Prosím, pre viac informácií si "
+"pozrite nižšie správu. "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
#. then open the cache (again)
#: ../DistUpgrade/DistUpgradeControler.py:299
#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
-msgstr ""
+msgstr "Kontrolovanie balíčkovacieho manažéra"
#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
-msgstr ""
+msgstr "Aktualizácia informácií o zdroji"
#: ../DistUpgrade/DistUpgradeControler.py:331
msgid "Asking for confirmation"
-msgstr ""
+msgstr "Požaduje sa potvrdenie"
#: ../DistUpgrade/DistUpgradeControler.py:335
msgid "Upgrading"
-msgstr ""
+msgstr "Upgradovanie"
#: ../DistUpgrade/DistUpgradeControler.py:342
msgid "Searching for obsolete software"
-msgstr ""
+msgstr "Vyhľadávanie zastaralého softwaru"
#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
-msgstr ""
+msgstr "Upgrade systému je kompletný."
#. print "mediaChange %s %s" % (medium, drive)
#: ../DistUpgrade/DistUpgradeViewGtk.py:78
#, python-format
msgid "Please insert '%s' into the drive '%s'"
-msgstr ""
+msgstr "Prosím, vložte '%s' do mechaniky '%s'"
#: ../DistUpgrade/DistUpgradeViewGtk.py:96
msgid "Download is complete"
-msgstr ""
+msgstr "Sťahovanie je dokončené"
#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
-msgstr ""
+msgstr "Sťahovanie súboru %li z %li pri %s/s"
#: ../DistUpgrade/DistUpgradeViewGtk.py:108
#: ../DistUpgrade/DistUpgradeViewGtk.py:216
#, python-format
msgid "%s remaining"
-msgstr ""
+msgstr "Zostáva %s"
#: ../DistUpgrade/DistUpgradeViewGtk.py:110
#, python-format
msgid "Downloading file %li of %li"
-msgstr ""
+msgstr "Sťahujem %li súbor z %li"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
#. -> longer term, move this code into python-apt
#: ../DistUpgrade/DistUpgradeViewGtk.py:140
msgid "Applying changes"
-msgstr ""
+msgstr "Aplikujem zmeny"
#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
-msgstr ""
+msgstr "Nemožno nainštalovať '%s'"
#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
-msgstr ""
+msgstr "Upgrade zlyhal. Prosím, oznámte to ako bug."
#. self.expander.set_expanded(True)
#: ../DistUpgrade/DistUpgradeViewGtk.py:171
@@ -311,91 +330,97 @@ msgid ""
"Replace configuration file\n"
"'%s'?"
msgstr ""
+"Nahradiť konfiguračný súbor\n"
+"'%s'?"
#: ../DistUpgrade/DistUpgradeViewGtk.py:188
msgid "The 'diff' command was not found"
-msgstr ""
+msgstr "Príkaz 'diff' nebol nájdený."
#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
-msgstr ""
+msgstr "Objavila sa závažná chyba"
#: ../DistUpgrade/DistUpgradeViewGtk.py:297
msgid ""
"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
+"Prosím, oznámte toto ako bug a ku vašej správe priložte súbory ~/dist-"
+"upgrade.log a ~/dist-upgrade-apt.log. Upgrade teraz skončí. "
#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
msgid "%s package is going to be removed."
msgid_plural "%s packages are going to be removed."
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "balíček %s bude odstránený."
+msgstr[1] "balíčky %s budú odstránené."
msgstr[2] ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:392
#, python-format
msgid "%s new package is going to be installed."
msgid_plural "%s new packages are going to be installed."
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "nový balíček %s bude nainštalovaný."
+msgstr[1] "nové balíčky %s budú nainštalované."
msgstr[2] ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:398
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "balíček %s bude upgradovaný."
+msgstr[1] "balíčky %s budú upgradované."
msgstr[2] ""
#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
msgid "You have to download a total of %s."
-msgstr ""
+msgstr "Musíte stiahnuť celkom %s."
#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
-msgstr ""
+msgstr "Upgrade môže trvať niekoľko hodín a nemôže byť neskôr zrušený."
#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
msgstr ""
+"Pre zamedzenie straty dát, zavrite všetky otvorené aplikácie a dokumenty."
#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:418
msgid "Could not find any upgrades"
-msgstr ""
+msgstr "Nemôžno nájsť žiadne upgrady"
#: ../DistUpgrade/DistUpgradeViewGtk.py:419
msgid "Your system has already been upgraded."
-msgstr ""
+msgstr "Váš systém bol už upgradovaný."
#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
-msgstr ""
+msgstr "Odstrániť %s"
#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
msgid "Install %s"
-msgstr ""
+msgstr "Inštalovať %s"
#: ../DistUpgrade/DistUpgradeViewGtk.py:438
#, python-format
msgid "Upgrade %s"
-msgstr ""
+msgstr "Upgradovať %s"
#: ../DistUpgrade/DistUpgradeView.py:75
msgid "Reboot required"
-msgstr ""
+msgstr "Je vyžadovaný reštart"
#: ../DistUpgrade/DistUpgradeView.py:76
msgid ""
"The upgrade is finished and a reboot is required. Do you want to do this now?"
msgstr ""
+"Upgrade bol dokončený a je potrebné reštartovať. Chcete reštartovať teraz?"
#. testcode to see if the bullets look nice in the dialog
#. for i in range(4):
@@ -404,7 +429,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgrade.glade.h:1
#: ../data/SoftwarePropertiesDialogs.glade.h:1
msgid " "
-msgstr ""
+msgstr " "
#: ../DistUpgrade/DistUpgrade.glade.h:2
msgid ""
@@ -413,88 +438,96 @@ msgid ""
"The system could be in an unusable state if you cancel the upgrade. You are "
"strongly adviced to resume the upgrade."
msgstr ""
+"Zrušiť prebiehajúci upgrade?\n"
+"\n"
+"Ak zrušíte upgrade, systém by mohol byť v nestabilnom stave. Je silne "
+"odporúčané pokračovať v upgrade."
#: ../DistUpgrade/DistUpgrade.glade.h:5
msgid "Restart the system to complete the upgrade"
-msgstr ""
+msgstr "Pre dokončenie upgradu reštartujte systém"
#: ../DistUpgrade/DistUpgrade.glade.h:6
msgid "Start the upgrade?"
-msgstr ""
+msgstr "Spustiť upgrade?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
msgid ""
"Upgrading to Ubuntu \"Dapper\" 6.06"
"span>"
msgstr ""
+"Upgraduje sa na Ubuntu \"Dapper\" "
+"6.06"
#: ../DistUpgrade/DistUpgrade.glade.h:8
msgid "Cleaning up"
-msgstr ""
+msgstr "Prebieha čistenie"
#: ../DistUpgrade/DistUpgrade.glade.h:9
msgid "Details"
-msgstr ""
+msgstr "Detaily"
#: ../DistUpgrade/DistUpgrade.glade.h:10
msgid "Difference between the files"
-msgstr ""
+msgstr "Rozdiel medzi súbormi"
#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
-msgstr ""
+msgstr "Sťahovanie a inštalovanie upgradov"
#: ../DistUpgrade/DistUpgrade.glade.h:12
msgid "Modifying the software channels"
-msgstr ""
+msgstr "Modifikujú sa programové kanály"
#: ../DistUpgrade/DistUpgrade.glade.h:13
msgid "Preparing the upgrade"
-msgstr ""
+msgstr "Pripravovanie upgradu"
#: ../DistUpgrade/DistUpgrade.glade.h:14
msgid "Restarting the system"
-msgstr ""
+msgstr "Reštartovanie systému"
#: ../DistUpgrade/DistUpgrade.glade.h:15
msgid "Terminal"
-msgstr ""
+msgstr "Terminál"
#: ../DistUpgrade/DistUpgrade.glade.h:16
msgid "Upgrading Ubuntu"
-msgstr ""
+msgstr "Upgraduje sa Ubuntu"
#: ../DistUpgrade/DistUpgrade.glade.h:17
msgid "_Keep"
-msgstr ""
+msgstr "_Ponechať"
#: ../DistUpgrade/DistUpgrade.glade.h:18
msgid "_Replace"
-msgstr ""
+msgstr "_Nahradiť"
#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
-msgstr ""
+msgstr "_Oznámiť chybu"
#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
-msgstr ""
+msgstr "_Reštartovať teraz"
#: ../DistUpgrade/DistUpgrade.glade.h:21
msgid "_Resume Upgrade"
-msgstr ""
+msgstr "_Pokračovať v upgrade"
#: ../UpdateManager/DistUpgradeFetcher.py:68
+#, fuzzy
msgid "Could not find the release notes"
-msgstr ""
+msgstr "Nemôžno nájsť žiadne upgrady"
#: ../UpdateManager/DistUpgradeFetcher.py:69
msgid "The server may be overloaded. "
msgstr ""
#: ../UpdateManager/DistUpgradeFetcher.py:79
+#, fuzzy
msgid "Could not download the release notes"
-msgstr ""
+msgstr "Nemožno stiahnuť upgrady"
#: ../UpdateManager/DistUpgradeFetcher.py:80
msgid "Please check your internet connection."
@@ -504,7 +537,7 @@ msgstr ""
#: ../UpdateManager/DistUpgradeFetcher.py:151
#, fuzzy
msgid "Could not run the upgrade tool"
-msgstr "Nemôžem vypočítať upgrade"
+msgstr "Nemožno nainštalovať upgrady"
#: ../UpdateManager/DistUpgradeFetcher.py:152
#, fuzzy
@@ -515,8 +548,9 @@ msgstr ""
"to ako bug. "
#: ../UpdateManager/DistUpgradeFetcher.py:173
+#, fuzzy
msgid "Downloading the upgrade tool"
-msgstr ""
+msgstr "Sťahovanie a inštalovanie upgradov"
#: ../UpdateManager/DistUpgradeFetcher.py:175
msgid "The upgrade tool will guide you through the upgrade process."
@@ -527,8 +561,9 @@ msgid "Upgrade tool signature"
msgstr ""
#: ../UpdateManager/DistUpgradeFetcher.py:185
+#, fuzzy
msgid "Upgrade tool"
-msgstr ""
+msgstr "Upgradovať %s"
#: ../UpdateManager/DistUpgradeFetcher.py:207
msgid "Failed to fetch"
@@ -569,14 +604,14 @@ msgid ""
msgstr ""
#: ../UpdateManager/GtkProgress.py:107
-#, python-format
+#, fuzzy, python-format
msgid "Downloading file %li of %li with %s/s"
-msgstr ""
+msgstr "Sťahovanie súboru %li z %li pri %s/s"
#: ../UpdateManager/GtkProgress.py:111
-#, python-format
+#, fuzzy, python-format
msgid "Downloading file %li of %li with unknown speed"
-msgstr ""
+msgstr "Sťahovanie súboru %li z %li pri %s/s"
#: ../UpdateManager/UpdateManager.py:147
msgid "The list of changes is not available yet. Please try again later."
@@ -589,14 +624,15 @@ msgstr ""
#. print "WARNING, keeping packages"
#: ../UpdateManager/UpdateManager.py:183
+#, fuzzy
msgid "Cannot install all available updates"
-msgstr ""
+msgstr "Nemožno nainštalovať upgrady"
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -609,20 +645,21 @@ msgid "Version %s: \n"
msgstr ""
#: ../UpdateManager/UpdateManager.py:390
+#, fuzzy
msgid "Downloading the list of changes..."
-msgstr ""
+msgstr "Sťahujem %li súbor z %li"
#: ../UpdateManager/UpdateManager.py:428
msgid "Your system is up-to-date"
msgstr ""
#: ../UpdateManager/UpdateManager.py:437
-#, python-format
+#, fuzzy, python-format
msgid "You can install one update"
msgid_plural "You can install %s updates"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] "Nemožno nainštalovať upgrady"
+msgstr[1] "Nemožno nainštalovať upgrady"
+msgstr[2] "Nemožno nainštalovať upgrady"
#: ../UpdateManager/UpdateManager.py:439
#, python-format
@@ -630,20 +667,22 @@ msgid "Download size: %s"
msgstr ""
#: ../UpdateManager/UpdateManager.py:450
+#, fuzzy
msgid "Hide details"
-msgstr ""
+msgstr "Zobraziť podrobnosti"
#: ../UpdateManager/UpdateManager.py:452 ../data/UpdateManager.glade.h:14
msgid "Show details"
-msgstr ""
+msgstr "Zobraziť podrobnosti"
#: ../UpdateManager/UpdateManager.py:467
msgid "Please wait, this can take some time."
msgstr ""
#: ../UpdateManager/UpdateManager.py:469
+#, fuzzy
msgid "Update is complete"
-msgstr ""
+msgstr "Sťahovanie je dokončené"
#: ../UpdateManager/UpdateManager.py:583
msgid "Repositories changed"
@@ -717,7 +756,7 @@ msgstr ""
#: ../data/UpdateManager.glade.h:9
msgid "Changes"
-msgstr ""
+msgstr "Zmeny"
#: ../data/UpdateManager.glade.h:10
msgid "Chec_k"
@@ -729,11 +768,11 @@ msgstr ""
#: ../data/UpdateManager.glade.h:12
msgid "Description"
-msgstr ""
+msgstr "Popis"
#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
-msgstr ""
+msgstr "Poznámky k vydaniu"
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
@@ -838,7 +877,7 @@ msgstr ""
#: ../data/SoftwarePropertiesDialogs.glade.h:2
msgid " "
-msgstr ""
+msgstr " "
#: ../data/SoftwarePropertiesDialogs.glade.h:3
msgid ""
@@ -956,7 +995,7 @@ msgstr ""
#: ../data/update-manager.schemas.in.h:6
msgid "The window size"
-msgstr ""
+msgstr "Veľkosť okna"
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
diff --git a/po/sv.po b/po/sv.po
index 0a9b6fba..06191638 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-27 18:10+0000\n"
-"Last-Translator: Robin Sonefors \n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-09 20:09+0000\n"
+"Last-Translator: Christian Bjälevik \n"
"Language-Team: Swedish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -33,7 +33,7 @@ msgstr "Importera nyckel"
#: ../SoftwareProperties/SoftwareProperties.py:423
msgid "Error importing selected file"
-msgstr "Fel vid import av vald fil"
+msgstr "Fel vid importing av vald fil"
#: ../SoftwareProperties/SoftwareProperties.py:424
msgid "The selected file may not be a GPG key file or it might be corrupt."
@@ -46,7 +46,8 @@ msgstr "Fel vid borttagning av nyckeln"
#: ../SoftwareProperties/SoftwareProperties.py:437
msgid "The key you selected could not be removed. Please report this as a bug."
-msgstr "Nyckeln du valde kan inte tas bort. Var vänlig anmäl det som en bugg."
+msgstr ""
+"Nyckeln du valde kan inte tas bort. Var vänlig rapportera detta som en bugg."
#: ../SoftwareProperties/SoftwareProperties.py:478
#, python-format
@@ -76,8 +77,9 @@ msgid ""
"Your system contains broken packages that couldn't be fixed with this "
"software. Please fix them first using synaptic or apt-get before proceeding."
msgstr ""
-"Ditt system innehåller trasiga paket som inte kunde repareras med detta "
-"program. Var god använd synaptic eller apt-get för att reparera dem."
+"Ditt system innehåller trasiga paket som inte kunde repareras med denna "
+"programvara. Reparera dem först med synaptic eller apt-get innan du "
+"fortsätter."
#: ../DistUpgrade/DistUpgradeCache.py:135
msgid "Can't upgrade required meta-packages"
@@ -85,20 +87,20 @@ msgstr "Kan inte uppdatera obligatoriska meta-paket"
#: ../DistUpgrade/DistUpgradeCache.py:142
msgid "A essential package would have to be removed"
-msgstr "Ett grundläggande paket skulle behövas tas bort"
+msgstr "Ett grundläggande paket skulle behöva tas bort"
#. FIXME: change the text to something more useful
#: ../DistUpgrade/DistUpgradeCache.py:145
msgid "Could not calculate the upgrade"
-msgstr "Det gick inte beräkna uppdateringen"
+msgstr "Kunde inte beräkna uppdateringen"
#: ../DistUpgrade/DistUpgradeCache.py:146
msgid ""
"A unresolvable problem occured while calculating the upgrade. Please report "
"this as a bug. "
msgstr ""
-"Ett problem som inte gick att lösa uppstod när uppdateringen kontrolerades. "
-"Rapportera gärna detta som en bugg. "
+"Ett problem som inte gick att lösa uppstod när uppdateringen beräknades. Var "
+"vänlig rapportera detta som en bugg. "
#. FIXME: maybe ask a question here? instead of failing?
#: ../DistUpgrade/DistUpgradeCache.py:169
@@ -113,19 +115,19 @@ msgid ""
msgstr ""
"Det gick inte att autentisiera vissa paket. Det kan vara ett tillfälligt "
"nätverksfel. Det kan hjälpa med att försöka senare. Se nedan för en lista "
-"med incke autentisierade paket."
+"med icke autentisierade paket."
#: ../DistUpgrade/DistUpgradeCache.py:233
#, python-format
msgid "Can't install '%s'"
-msgstr "Kan inte installera '%s'"
+msgstr "Kan inte installera \"%s\""
#: ../DistUpgrade/DistUpgradeCache.py:234
msgid ""
"It was impossible to install a required package. Please report this as a "
"bug. "
msgstr ""
-"Det var inte möjligt att installera ett obligatoriskt paket. Var god "
+"Det var inte möjligt att installera ett obligatoriskt paket. Var vänlig "
"rapportera detta som en bugg. "
#. FIXME: provide a list
@@ -161,7 +163,8 @@ msgid ""
"While scaning your repository information no valid entry for the upgrade was "
"found.\n"
msgstr ""
-"Ingen giltig källa för uppdatering hittades när dina förråd söktes igenom.\n"
+"Ingen giltig källa för uppdatering hittades när din förrådsinformation "
+"söktes igenom.\n"
#: ../DistUpgrade/DistUpgradeControler.py:124
msgid "Repository information invalid"
@@ -172,8 +175,8 @@ msgid ""
"Upgrading the repository information resulted in a invalid file. Please "
"report this as a bug."
msgstr ""
-"Uppdatering av informationen om förråd orsakade en ogiltig fil. Var god "
-"rabortera detta som en bug."
+"Uppdatering av förrådsinformationen orsakade en ogiltig fil. Var vänlig "
+"rapportera detta som en bugg."
#: ../DistUpgrade/DistUpgradeControler.py:170
msgid "Error during update"
@@ -185,7 +188,7 @@ msgid ""
"problem, please check your network connection and retry."
msgstr ""
"Ett problem inträffade under uppdateringen. Detta beror oftast på någon form "
-"av nätverks problem, var god kontrolera din nätverks anslutning och försök "
+"av nätverksproblem, var god kontrollera din nätverksanslutning och försök "
"igen."
#: ../DistUpgrade/DistUpgradeControler.py:190
@@ -201,7 +204,7 @@ msgid ""
msgstr ""
"Uppdateringen avbryter nu. Vänligen frigör minst %s diskutrymme. Töm din "
"papperskorg och ta bort temporära paket från tidigare uppdateringar genom "
-"att köra 'sudo apt-get clean'."
+"att köra \"sudo apt-get clean\"."
#: ../DistUpgrade/DistUpgradeControler.py:197
msgid "Do you want to start the upgrade?"
@@ -213,14 +216,12 @@ msgid "Could not install the upgrades"
msgstr "Det gick inte att installera uppdateringarna"
#: ../DistUpgrade/DistUpgradeControler.py:214
-#, fuzzy
msgid ""
"The upgrade aborts now. Your system can be in an unusable state. A recovery "
"is now run (dpkg --configure -a)."
msgstr ""
-"Uppdateringen avbryter nu. Ditt system kan vara i ett instabilt läget. "
-"Vänligen försök med 'sudo apt-get install -f' eller Synaptic för att fixa "
-"systemet."
+"Uppdateringen avbryts nu. Ditt system kan vara i ett oanvändbart läge. En "
+"återställning körs nu (dpkg --configure -a)."
#: ../DistUpgrade/DistUpgradeControler.py:230
msgid "Could not download the upgrades"
@@ -231,22 +232,20 @@ msgid ""
"The upgrade aborts now. Please check your internet connection or "
"installation media and try again. "
msgstr ""
-"Uppdeateringen avbryter nu. Var god kontrollerar din internetanslutning "
-"eller installationsmedia och försök igen. "
+"Uppdateringen avbryts nu. Var god kontrollera din internetanslutning eller "
+"ditt installationsmedia och försök igen. "
#: ../DistUpgrade/DistUpgradeControler.py:273
-#, fuzzy
msgid "Remove obsolete packages?"
msgstr "Ta bort föråldrade paket?"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Skip This Step"
-msgstr ""
+msgstr "_Hoppa över det här steget"
#: ../DistUpgrade/DistUpgradeControler.py:274
-#, fuzzy
msgid "_Remove"
-msgstr "Ta bort"
+msgstr "_Ta bort"
#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
@@ -257,7 +256,7 @@ msgid ""
"Some problem occured during the clean-up. Please see the below message for "
"more information. "
msgstr ""
-"Ett fel inträffade vid upprensningen. Se meddelandet nedan för mer "
+"Något fel inträffade vid upprensningen. Se meddelandet nedan för mer "
"information. "
#. sanity check (check for ubuntu-desktop, brokenCache etc)
@@ -265,7 +264,7 @@ msgstr ""
#: ../DistUpgrade/DistUpgradeControler.py:299
#: ../DistUpgrade/DistUpgradeControler.py:325
msgid "Checking package manager"
-msgstr "Kontrolerar pakethanterare"
+msgstr "Kontrollerar pakethanterare"
#: ../DistUpgrade/DistUpgradeControler.py:317
msgid "Updating repository information"
@@ -285,7 +284,7 @@ msgstr "Söker efter föråldrad mjukvara"
#: ../DistUpgrade/DistUpgradeControler.py:347
msgid "System upgrade is complete."
-msgstr "Systemuppdateringarna är klara"
+msgstr "Systemuppdateringen är klar."
#. print "mediaChange %s %s" % (medium, drive)
#: ../DistUpgrade/DistUpgradeViewGtk.py:78
@@ -300,7 +299,7 @@ msgstr "Hämtningen är färdig"
#: ../DistUpgrade/DistUpgradeViewGtk.py:107
#, python-format
msgid "Downloading file %li of %li at %s/s"
-msgstr "Hämtar hem fil %li av %li med en hastighet av %s/s"
+msgstr "Hämtar hem fil %li av %li i %s/s"
#: ../DistUpgrade/DistUpgradeViewGtk.py:108
#: ../DistUpgrade/DistUpgradeViewGtk.py:216
@@ -309,26 +308,25 @@ msgid "%s remaining"
msgstr "%s återstår"
#: ../DistUpgrade/DistUpgradeViewGtk.py:110
-#, fuzzy, python-format
+#, python-format
msgid "Downloading file %li of %li"
-msgstr "Hämtar hem fil %li av %li med en hastighet av %s/s"
+msgstr "Laddar ner fil %li av %li"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
#. -> longer term, move this code into python-apt
#: ../DistUpgrade/DistUpgradeViewGtk.py:140
-#, fuzzy
msgid "Applying changes"
-msgstr "Hämtar ändringar..."
+msgstr "Genomför ändringar"
#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
msgid "Could not install '%s'"
-msgstr "Det gick inte installera \"%s\""
+msgstr "Kunde inte installera \"%s\""
#: ../DistUpgrade/DistUpgradeViewGtk.py:158
msgid "The upgrade aborts now. Please report this bug."
-msgstr "Uppdateringen avbryts. Var vänlig rapportera denna bugg."
+msgstr "Uppdateringen avbryts nu. Var vänlig rapportera detta som en bugg."
#. self.expander.set_expanded(True)
#: ../DistUpgrade/DistUpgradeViewGtk.py:171
@@ -337,10 +335,12 @@ msgid ""
"Replace configuration file\n"
"'%s'?"
msgstr ""
+"Ersätt konfigurationsfil\n"
+"\"%s\"?"
#: ../DistUpgrade/DistUpgradeViewGtk.py:188
msgid "The 'diff' command was not found"
-msgstr ""
+msgstr "Kommandot \"diff\" hittades inte"
#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
@@ -351,8 +351,8 @@ msgid ""
"Please report this as a bug and include the files ~/dist-upgrade.log and ~/"
"dist-upgrade-apt.log in your report. The upgrade aborts now. "
msgstr ""
-"Var vänlig rapportera detta som en bugg och inkludera ~/dist-upgrade.log och "
-"~/dist-upgrade-apt.log i din rapport. Uppdateringen avbryts. "
+"Var vänlig rapportera detta som en bugg och inkludera filerna ~/dist-upgrade."
+"log och ~/dist-upgrade-apt.log i din rapport. Uppdateringen avbryts nu. "
#: ../DistUpgrade/DistUpgradeViewGtk.py:386
#, python-format
@@ -372,8 +372,8 @@ msgstr[1] "%s nya paket kommer att installeras."
#, python-format
msgid "%s package is going to be upgraded."
msgid_plural "%s packages are going to be upgraded."
-msgstr[0] "%s packet kommer att uppgraderas."
-msgstr[1] "%s packet kommer att uppgraderas."
+msgstr[0] "%s paket kommer att uppgraderas."
+msgstr[1] "%s paket kommer att uppgraderas."
#: ../DistUpgrade/DistUpgradeViewGtk.py:405
#, python-format
@@ -383,13 +383,12 @@ msgstr "Du behöver ladda ner totalt %s."
#: ../DistUpgrade/DistUpgradeViewGtk.py:409
msgid ""
"The upgrade can take several hours and cannot be canceled at any time later."
-msgstr "Uppdateringen kan ta flera timmar och kan inte avbrytas under tiden."
+msgstr ""
+"Uppdateringen kan ta flera timmar och kan inte avbrytas någon gång senare."
#: ../DistUpgrade/DistUpgradeViewGtk.py:412
msgid "To prevent data loss close all open applications and documents."
-msgstr ""
-"För att förhindra att data försvinner rekomenderas du att stänga alla "
-"program och dokument."
+msgstr "För att förhindra dataförlust stäng alla öppna program och dokument."
#. FIXME: this should go into DistUpgradeController
#: ../DistUpgrade/DistUpgradeViewGtk.py:418
@@ -403,7 +402,7 @@ msgstr "Ditt system har redan uppdaterats."
#: ../DistUpgrade/DistUpgradeViewGtk.py:434
#, python-format
msgid "Remove %s"
-msgstr "Tabort %s"
+msgstr "Ta bort %s"
#: ../DistUpgrade/DistUpgradeViewGtk.py:436
#, python-format
@@ -443,8 +442,8 @@ msgid ""
msgstr ""
"Avbryt pågående uppdatering?\n"
"\n"
-"Systemet kan bli instabilt om du avbryter uppdateringen. Du är strakt "
-"rekommderad att fortsätta uppdateringen."
+"Systemet kan hamna i ett oanvändbart läge om du avbryter uppdateringen. Du "
+"är starkt rekommderad att fortsätta uppdateringen."
#: ../DistUpgrade/DistUpgrade.glade.h:5
msgid "Restart the system to complete the upgrade"
@@ -456,13 +455,12 @@ msgid "Start the upgrade?"
msgstr "Starta uppdateringen?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
-#, fuzzy
msgid ""
"Upgrading to Ubuntu \"Dapper\" 6.06"
"span>"
msgstr ""
"Uppdaterar till Ubuntu \"Dapper\" "
-"6.04"
+"6.06"
#: ../DistUpgrade/DistUpgrade.glade.h:8
msgid "Cleaning up"
@@ -474,7 +472,7 @@ msgstr "Detaljer"
#: ../DistUpgrade/DistUpgrade.glade.h:10
msgid "Difference between the files"
-msgstr ""
+msgstr "Skillnad mellan filerna"
#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
@@ -502,16 +500,15 @@ msgstr "Uppdaterar Ubuntu"
#: ../DistUpgrade/DistUpgrade.glade.h:17
msgid "_Keep"
-msgstr ""
+msgstr "_Behåll"
#: ../DistUpgrade/DistUpgrade.glade.h:18
-#, fuzzy
msgid "_Replace"
-msgstr "_Uppdatera"
+msgstr "_Ersätt"
#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
-msgstr "_Rapportera Bugg"
+msgstr "_Rapportera bugg"
#: ../DistUpgrade/DistUpgrade.glade.h:20
msgid "_Restart Now"
@@ -550,8 +547,8 @@ msgstr "Det gick inte att installera uppdateringarna"
msgid ""
"This is most likely a bug in the upgrade tool. Please report it as a bug"
msgstr ""
-"Ett problem som inte gick att lösa uppstod när uppdateringen kontrolerades. "
-"Rapportera gärna detta som en bugg. "
+"Ett problem som inte gick att lösa uppstod när uppdateringen beräknades. Var "
+"vänlig rapportera detta som en bugg. "
#: ../UpdateManager/DistUpgradeFetcher.py:173
#, fuzzy
@@ -614,7 +611,7 @@ msgstr ""
#: ../UpdateManager/GtkProgress.py:107
#, fuzzy, python-format
msgid "Downloading file %li of %li with %s/s"
-msgstr "Hämtar hem fil %li av %li med en hastighet av %s/s"
+msgstr "Hämtar hem fil %li av %li i %s/s"
#: ../UpdateManager/GtkProgress.py:111
#, fuzzy, python-format
@@ -642,8 +639,8 @@ msgstr "Visa och installera tillgängliga uppdateringar"
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -751,24 +748,23 @@ msgid ""
"Your system does not check for updates automatically. You can configure this "
"behavior in \"System\" -> \"Administration\" -> \"Software Properties\"."
msgstr ""
-"Du måste kontrollera efter nya uppdateringar manuellt\n"
+"Du måste kolla efter uppdateringar manuellt\n"
"\n"
-"Ditt system kontrollerar inte automatiskt efter uppdateringar . Du kan "
-"konfiguera detta beteende i \"System\" -> \"Administration\" -> "
+"Ditt system kollar inte efter uppdateringar automatiskt. Du kan konfiguera "
+"detta beteende i \"System\" -> \"Administration\" -> "
"\"Programvaruinställningar\""
#: ../data/UpdateManager.glade.h:4
-#, fuzzy
msgid ""
"Analysing your system\n"
"\n"
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-"Kontrollerar efter tillgängliga updateringar\n"
+"Analyserar ditt system\n"
"\n"
-"Uppdateringar av mjukvara kan rätta fel, eliminera säkerhetshål, och "
-"tillhandahålla nya funktioner till dig."
+"Programvaruuppdateringar kan åtgärda fel, eliminera säkerhetshål och "
+"tillhandahålla nya funktioner för dig."
#: ../data/UpdateManager.glade.h:7
msgid "Keep your system up-to-date"
@@ -776,21 +772,19 @@ msgstr "Håll ditt system uppdaterat"
#: ../data/UpdateManager.glade.h:8
msgid "Cancel _Download"
-msgstr "Avbryta _Nedladdning"
+msgstr "Avbryt _nedladdningen"
#: ../data/UpdateManager.glade.h:9
msgid "Changes"
msgstr "Ändringar"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
msgid "Chec_k"
msgstr "_Kontrollera"
#: ../data/UpdateManager.glade.h:11
-#, fuzzy
msgid "Check the software channels for new updates"
-msgstr "All programvara från denna kanal är aktuell."
+msgstr "Kontrollera programvarukanalerna efter nya uppdateringar"
#: ../data/UpdateManager.glade.h:12
msgid "Description"
@@ -798,7 +792,7 @@ msgstr "Beskrivning"
#: ../data/UpdateManager.glade.h:13
msgid "Release Notes"
-msgstr "Utgåveanteckningar"
+msgstr "Utgåvoanteckningar"
#: ../data/UpdateManager.glade.h:15
msgid "Show progress of single files"
@@ -813,8 +807,8 @@ msgid ""
"Software updates can correct errors, eliminate security vulnerabilities, and "
"provide new features to you."
msgstr ""
-"Mjukvaruuppdateringar kan åtgärda fel, avlägsna säkerhetshål eller "
-"sårbarheter och förse programmet med nya funktioner."
+"Programvaruuppdateringar kan åtgärda fel, eliminera säkerhetshål och "
+"tillhandahålla nya funktioner för dig."
#: ../data/UpdateManager.glade.h:18
msgid "U_pgrade"
@@ -834,7 +828,7 @@ msgstr "_Dölj denna information i framtiden"
#: ../data/UpdateManager.glade.h:22
msgid "_Install Updates"
-msgstr "_Installera Uppdateringar"
+msgstr "_Installera uppdateringar"
#: ../data/SoftwareProperties.glade.h:1
msgid "Channels"
@@ -846,7 +840,7 @@ msgstr "Internetuppdateringar"
#: ../data/SoftwareProperties.glade.h:3
msgid "Keys"
-msgstr "Detaljer"
+msgstr "Nycklar"
#: ../data/SoftwareProperties.glade.h:4
msgid "Add _Cdrom"
@@ -858,11 +852,11 @@ msgstr "Autentisering"
#: ../data/SoftwareProperties.glade.h:6
msgid "D_elete downloaded software files:"
-msgstr "_Tabort nerladdade programfiler:"
+msgstr "_Ta bort nerladdade programfiler:"
#: ../data/SoftwareProperties.glade.h:7
msgid "Import the public key from a trusted software provider"
-msgstr "Importera den publika nyckeln för en betrod mjukvaruutgivare."
+msgstr "Importera den publika nyckeln från en betrodd mjukvaruutgivare"
#: ../data/SoftwareProperties.glade.h:8
msgid "Installation Media"
@@ -870,7 +864,7 @@ msgstr "Installationsmedia"
#: ../data/SoftwareProperties.glade.h:9
msgid "Internet Updates"
-msgstr "Internet-uppdateringar"
+msgstr "Internetuppdateringar"
#: ../data/SoftwareProperties.glade.h:10
msgid ""
@@ -878,7 +872,7 @@ msgid ""
"automatically. The software package \"unattended-upgrades\" needs to be "
"installed therefor"
msgstr ""
-"Endast säkerhetsuppdateringar från officiela Ubuntu-servrar kommer att "
+"Endast säkerhetsuppdateringar från de officiella Ubuntu-servrarna kommer att "
"installeras automatiskt. Programpaketet \"unattended-upgrades\" behöver "
"därför installeras"
@@ -888,7 +882,7 @@ msgstr "_Återställ standardalternativ"
#: ../data/SoftwareProperties.glade.h:12
msgid "Restore the default keys of your distribution"
-msgstr "Återställ standardnycklar för din distribution"
+msgstr "Återställ standardnycklarna för din distribution"
#: ../data/SoftwareProperties.glade.h:13
msgid "Software Preferences"
@@ -896,12 +890,11 @@ msgstr "Programvaruinställningar"
#: ../data/SoftwareProperties.glade.h:14
msgid "_Check for updates automatically:"
-msgstr "Leta efter uppdateringar _automatiskt:"
+msgstr "Kolla efter uppdateringar _automatiskt:"
#: ../data/SoftwareProperties.glade.h:15
-#, fuzzy
msgid "_Download updates in the background, but do not install them"
-msgstr "_Hämta uppdateringar i bakgrunden, men installera dom inte"
+msgstr "_Hämta uppdateringar i bakgrunden, men installera dem inte"
#: ../data/SoftwareProperties.glade.h:16
msgid "_Install security updates without confirmation"
@@ -920,12 +913,12 @@ msgid ""
"\n"
"You need a working internet connection to continue."
msgstr ""
-"Kanalinformationen är föråldrad\n"
+"Kanalinformationen är gammal\n"
"\n"
"Du behöver uppdatera kanalinformationen för att installera program och "
-"uppdateringar från nya och ändrade kanaler. \n"
+"uppdateringar från nya tillagda eller ändrade kanaler. \n"
"\n"
-"Du behöver en internetanslutning som fungerar för att kunna fortsätta."
+"Du behöver en fungerande internetanslutning för att kunna fortsätta."
#: ../data/SoftwarePropertiesDialogs.glade.h:8
msgid "Channel"
@@ -936,9 +929,8 @@ msgid "Comment:"
msgstr "Kommentar:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-#, fuzzy
msgid "Components:"
-msgstr "Komponenter"
+msgstr "Komponenter:"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
msgid "Distribution:"
@@ -964,10 +956,10 @@ msgid ""
"The APT line contains the type, location and sections of a channel, for "
"example \"deb http://ftp.debian.org sarge main\"."
msgstr ""
-"Skriv in en komplett APT-rad för kanalen du vill lägga till"
+"Skriv in den kompletta APT-raden för kanalen du vill lägga till"
"big>\n"
"\n"
-"APT-raden inehåller typ, plats och avdelningar för kanalen, till exempel "
+"APT-raden innehåller typ, plats och avdelningar för kanalen, till exempel "
"\"deb http://ftp.debian.org sarge main\"."
#: ../data/SoftwarePropertiesDialogs.glade.h:18
@@ -997,7 +989,7 @@ msgstr "Söker igenom CD-skivan"
#: ../data/SoftwarePropertiesDialogs.glade.h:24
#, fuzzy
msgid "_Add Channel"
-msgstr "_Läggtill kanal"
+msgstr "_Lägg till kanal"
#: ../data/SoftwarePropertiesDialogs.glade.h:25
msgid "_Custom"
@@ -1005,7 +997,7 @@ msgstr "An_passad"
#: ../data/SoftwarePropertiesDialogs.glade.h:26
msgid "_Reload"
-msgstr "_Uppdatera"
+msgstr "_Läs om"
#: ../data/update-manager.desktop.in.h:1
msgid "Show and install available updates"
@@ -1021,13 +1013,13 @@ msgid ""
"channel list manually. This option allows to hide the reminder shown in this "
"case."
msgstr ""
-"Om automatisk kontroll av uppdateringar är avaktiverad behöver du manuelt "
-"uppdatera kanallistan. Det här alternativet möjliggör att dölja påminelser "
-"som annars visas."
+"Om automatisk kontroll av uppdateringar är inaktiverad behöver du ladda om "
+"kanallistan manuellt. Det här alternativet möjliggör att dölja påminnelser "
+"som visas i det här läget."
#: ../data/update-manager.schemas.in.h:2
msgid "Remind to reload the channel list"
-msgstr "Påmin om att uppdatera kanallistan"
+msgstr "Påminn om att uppdatera kanallistan"
#: ../data/update-manager.schemas.in.h:3
msgid "Show details of an update"
@@ -1042,11 +1034,12 @@ msgid ""
"Stores the state of the expander that contains the list of changs and the "
"description"
msgstr ""
-"Sparar läget om extra information ska visas för ändringar och beskrivningar"
+"Sparar läget på expanderaren som innehåller listan på ändringar och "
+"beskrivningar"
#: ../data/update-manager.schemas.in.h:6
msgid "The window size"
-msgstr "Fönstrets storlek"
+msgstr "Fönsterstorleken"
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
@@ -1056,32 +1049,28 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../channels/Ubuntu.info.in:6
-#, fuzzy
msgid "Ubuntu 6.06 'Dapper Drake'"
-msgstr "Ubuntu 6.04 'Dapper Drake'"
+msgstr "Ubuntu 6.06 \"Dapper Drake\""
#. Description
#: ../channels/Ubuntu.info.in:23
-#, fuzzy
msgid "Ubuntu 6.06 Security Updates"
-msgstr "Ubuntu 6.04 Säkerhetsuppdateringar"
+msgstr "Ubuntu 6.06 Säkerhetsuppdateringar"
#. Description
#: ../channels/Ubuntu.info.in:40
-#, fuzzy
msgid "Ubuntu 6.06 Updates"
-msgstr "Ubuntu 6.04 Uppdateringar"
+msgstr "Ubuntu 6.06 Uppdateringar"
#. Description
#: ../channels/Ubuntu.info.in:57
-#, fuzzy
msgid "Ubuntu 6.06 Backports"
-msgstr "Ubuntu 6.04 Backåtanpassningar"
+msgstr "Ubuntu 6.06 Bakåtportningar"
#. Description
#: ../channels/Ubuntu.info.in:74
msgid "Ubuntu 5.10 'Breezy Badger'"
-msgstr "Ubuntu 5.10 'Breezy Badger'"
+msgstr "Ubuntu 5.10 \"Breezy Badger\""
#. Description
#: ../channels/Ubuntu.info.in:91
@@ -1096,7 +1085,7 @@ msgstr "Ubuntu 5.10 Uppdateringar"
#. Description
#: ../channels/Ubuntu.info.in:125
msgid "Ubuntu 5.10 Backports"
-msgstr "Ubuntu 5.10 Bakåtanpassningar"
+msgstr "Ubuntu 5.10 Bakåtportningar"
#. CompDescription
#: ../channels/Ubuntu.info.in:128 ../channels/Debian.info.in:51
@@ -1147,7 +1136,7 @@ msgstr "Debian \"Etch\" (testing)"
#. BaseURI
#: ../channels/Debian.info.in:47
msgid "http://http.us.debian.org/debian/"
-msgstr "http://http.us.debian.org/debian/"
+msgstr "http://ftp.se.debian.org/debian/"
#. Description
#: ../channels/Debian.info.in:48
@@ -1157,12 +1146,15 @@ msgstr "Debian \"Sid\" (unstable)"
#. CompDescription
#: ../channels/Debian.info.in:54
msgid "DFSG-compatible Software with Non-Free Dependencies"
-msgstr "DFSG-kompatibel mjukvara med beroenden till ickefri"
+msgstr "DFSG-kompatibel programvara med icke-fria beroenden"
#. CompDescription
#: ../channels/Debian.info.in:57
msgid "Non-DFSG-compatible Software"
-msgstr "Inte DFSG-kompatibel mjukvara"
+msgstr "Inte DFSG-kompatibel programvara"
+
+#~ msgid "Oficially supported"
+#~ msgstr "Stöds officiellt"
#~ msgid "Installing updates"
#~ msgstr "Installerar uppdateringar"
@@ -1173,9 +1165,6 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgid "Sections:"
#~ msgstr "Avdelningar:"
-#~ msgid "Oficially supported"
-#~ msgstr "Stöds officiellt"
-
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Läs om paketinformationen från servern."
@@ -1546,9 +1535,6 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgid "_Actions"
#~ msgstr "_Åtgärder"
-#~ msgid "_Help"
-#~ msgstr "_Hjälp"
-
#~ msgid "Connect to daemon..."
#~ msgstr "Anslut till demon..."
@@ -1938,7 +1924,6 @@ msgstr "Inte DFSG-kompatibel mjukvara"
#~ msgid "Found 1 matching package"
#~ msgstr "Hittade 1 matchande paket"
-# Patch = programfix enligt Datatermgruppen
#~ msgid "Found %d matching patches"
#~ msgstr "Hittade %d matchande programfixar"
diff --git a/po/uk.po b/po/uk.po
index 2f279ae7..b28b9276 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -5,8 +5,8 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-23 11:26+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-04 20:25+0000\n"
"Last-Translator: Serhey Kusyumoff \n"
"Language-Team: Ukrainian \n"
"MIME-Version: 1.0\n"
@@ -285,9 +285,9 @@ msgid "%s remaining"
msgstr "%s залишилось"
#: ../DistUpgrade/DistUpgradeViewGtk.py:110
-#, fuzzy, python-format
+#, python-format
msgid "Downloading file %li of %li"
-msgstr "Завантажується файл %li of %li at %s/s"
+msgstr ""
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
@@ -613,8 +613,8 @@ msgstr "Пошук пакунків для апгрейду"
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -1124,6 +1124,10 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
+#, fuzzy
+#~ msgid "Oficially supported"
+#~ msgstr "Офіціально підтримуються"
+
#, fuzzy
#~ msgid "Installing updates"
#~ msgstr "Встановлення оновлень..."
@@ -1131,10 +1135,6 @@ msgstr ""
#~ msgid "Sections:"
#~ msgstr "Розділи:"
-#, fuzzy
-#~ msgid "Oficially supported"
-#~ msgstr "Офіціально підтримуються"
-
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Перезавантажити з сервера інформацію про пакет"
diff --git a/po/update-manager.pot b/po/update-manager.pot
index 03d89b4c..1f8ff309 100644
--- a/po/update-manager.pot
+++ b/po/update-manager.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -576,8 +576,8 @@ msgstr ""
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
diff --git a/po/vi.po b/po/vi.po
index ed93d106..42a17993 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager Gnome HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-23 00:20+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-04 20:25+0000\n"
"Last-Translator: Clytie Siddall \n"
"Language-Team: Vietnamese \n"
"MIME-Version: 1.0\n"
@@ -588,8 +588,8 @@ msgstr "Đang kiểm tra có cập nhật..."
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -1095,13 +1095,13 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Sections:"
-#~ msgstr "Phần:"
-
#, fuzzy
#~ msgid "Oficially supported"
#~ msgstr "Được hỗ trợ một cách chính thức"
+#~ msgid "Sections:"
+#~ msgstr "Phần:"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "Tải lại thông tin gói từ máy phục vụ."
@@ -1243,7 +1243,6 @@ msgstr ""
# #-#-#-#-# compendium3.po (alleyoop HEAD) #-#-#-#-#
# #-#-#-#-# vi.po (Gnome-icon-theme) #-#-#-#-#
-# 48x48/emblems/emblem-bin.icon.in.h:1
#~ msgid "Binary"
#~ msgstr "Nhị phân"
diff --git a/po/xh.po b/po/xh.po
index 2458d655..c79fa740 100644
--- a/po/xh.po
+++ b/po/xh.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: update-notifier\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-18 12:11+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-04 20:25+0000\n"
"Last-Translator: Canonical Ltd \n"
"Language-Team: Xhosa \n"
"MIME-Version: 1.0\n"
@@ -576,8 +576,8 @@ msgstr ""
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 726ffbb8..58f4deb7 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-26 12:31+0000\n"
-"Last-Translator: firingstone \n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-08 11:35+0000\n"
+"Last-Translator: stone_unix \n"
"Language-Team: zh_CN \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -197,13 +197,12 @@ msgid "Could not install the upgrades"
msgstr "无法安装升级"
#: ../DistUpgrade/DistUpgradeControler.py:214
-#, fuzzy
msgid ""
"The upgrade aborts now. Your system can be in an unusable state. A recovery "
"is now run (dpkg --configure -a)."
msgstr ""
-"升级现在取消。你的系统可能处于不稳定状态。请试着用'sudo apt-get install -f'或"
-"者新立得来修复你的系统。"
+"升级现在取消。你的系统可能处于不稳定状态。恢复工作在运行中(dpkg --configure -"
+"a)。"
#: ../DistUpgrade/DistUpgradeControler.py:230
msgid "Could not download the upgrades"
@@ -216,17 +215,16 @@ msgid ""
msgstr "升级现在取消。请检查你的网络连接活重新放置安装媒体后再试。 "
#: ../DistUpgrade/DistUpgradeControler.py:273
-#, fuzzy
msgid "Remove obsolete packages?"
msgstr "删除陈旧的软件包?"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Skip This Step"
-msgstr ""
+msgstr "跳过这个步骤(_S)"
#: ../DistUpgrade/DistUpgradeControler.py:274
msgid "_Remove"
-msgstr ""
+msgstr "删除(_R)"
#: ../DistUpgrade/DistUpgradeControler.py:284
msgid "Error during commit"
@@ -287,17 +285,16 @@ msgid "%s remaining"
msgstr "还剩%s"
#: ../DistUpgrade/DistUpgradeViewGtk.py:110
-#, fuzzy, python-format
+#, python-format
msgid "Downloading file %li of %li"
-msgstr "正在下载文件%li来自%li速度是%s/s"
+msgstr "正在下载第 %li 个文件(共 %li 个文件)"
#. FIXME: add support for the timeout
#. of the terminal (to display something useful then)
#. -> longer term, move this code into python-apt
#: ../DistUpgrade/DistUpgradeViewGtk.py:140
-#, fuzzy
msgid "Applying changes"
-msgstr "正在下载更改..."
+msgstr "正在应用更新"
#: ../DistUpgrade/DistUpgradeViewGtk.py:157
#, python-format
@@ -315,10 +312,12 @@ msgid ""
"Replace configuration file\n"
"'%s'?"
msgstr ""
+"替换配置文件\n"
+"“%s”吗?"
#: ../DistUpgrade/DistUpgradeViewGtk.py:188
msgid "The 'diff' command was not found"
-msgstr ""
+msgstr "外部命令“diff”没有找到"
#: ../DistUpgrade/DistUpgradeViewGtk.py:296
msgid "A fatal error occured"
@@ -425,12 +424,11 @@ msgid "Start the upgrade?"
msgstr "开始升级?"
#: ../DistUpgrade/DistUpgrade.glade.h:7
-#, fuzzy
msgid ""
"Upgrading to Ubuntu \"Dapper\" 6.06"
"span>"
msgstr ""
-"升级到 Ubuntu \"Dapper\" 6.04"
+"升级到 Ubuntu \"Dapper\" 6.06"
#: ../DistUpgrade/DistUpgrade.glade.h:8
msgid "Cleaning up"
@@ -442,7 +440,7 @@ msgstr "详细信息"
#: ../DistUpgrade/DistUpgrade.glade.h:10
msgid "Difference between the files"
-msgstr ""
+msgstr "文件之间的区别"
#: ../DistUpgrade/DistUpgrade.glade.h:11
msgid "Downloading and installing the upgrades"
@@ -470,12 +468,11 @@ msgstr "升级Ubuntu"
#: ../DistUpgrade/DistUpgrade.glade.h:17
msgid "_Keep"
-msgstr ""
+msgstr "维持原状(_K)"
#: ../DistUpgrade/DistUpgrade.glade.h:18
-#, fuzzy
msgid "_Replace"
-msgstr "重新载入(_R)"
+msgstr "替换(_R)"
#: ../DistUpgrade/DistUpgrade.glade.h:19
msgid "_Report Bug"
@@ -604,8 +601,8 @@ msgstr "显示并安装可用更新"
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -620,7 +617,7 @@ msgstr "版本 %s: \n"
#: ../UpdateManager/UpdateManager.py:390
#, fuzzy
msgid "Downloading the list of changes..."
-msgstr "正在下载文件%li来自%li速度是%s/s"
+msgstr "正在下载第 %li 个文件(共 %li 个文件)"
#: ../UpdateManager/UpdateManager.py:428
#, fuzzy
@@ -716,7 +713,6 @@ msgstr ""
"变."
#: ../data/UpdateManager.glade.h:4
-#, fuzzy
msgid ""
"Analysing your system\n"
"\n"
@@ -725,7 +721,7 @@ msgid ""
msgstr ""
"正在检查有效的更新\n"
"\n"
-"软件更新可以为你修复错误,除去安全漏洞及提供新的特性。"
+"软件更新可以为你修复错误,除去安全漏洞,并提供新的特性。"
#: ../data/UpdateManager.glade.h:7
msgid "Keep your system up-to-date"
@@ -740,13 +736,12 @@ msgid "Changes"
msgstr "更改"
#: ../data/UpdateManager.glade.h:10
-#, fuzzy
msgid "Chec_k"
-msgstr "检查(_C)"
+msgstr "检查(_K)"
#: ../data/UpdateManager.glade.h:11
msgid "Check the software channels for new updates"
-msgstr ""
+msgstr "检查软件频道以获得新的更新"
#: ../data/UpdateManager.glade.h:12
msgid "Description"
@@ -852,7 +847,6 @@ msgid "_Check for updates automatically:"
msgstr "自动检查更新(_C)"
#: ../data/SoftwareProperties.glade.h:15
-#, fuzzy
msgid "_Download updates in the background, but do not install them"
msgstr "在后台下载更新,但是不安装(_D)"
@@ -886,9 +880,8 @@ msgid "Comment:"
msgstr "注释:"
#: ../data/SoftwarePropertiesDialogs.glade.h:10
-#, fuzzy
msgid "Components:"
-msgstr "组件"
+msgstr "组件:"
#: ../data/SoftwarePropertiesDialogs.glade.h:11
msgid "Distribution:"
@@ -1001,27 +994,23 @@ msgstr "http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog"
#. Description
#: ../channels/Ubuntu.info.in:6
-#, fuzzy
msgid "Ubuntu 6.06 'Dapper Drake'"
-msgstr "Ubuntu 6.04 'Dapper Drake'"
+msgstr "Ubuntu 6-06 'Dapper Drake'"
#. Description
#: ../channels/Ubuntu.info.in:23
-#, fuzzy
msgid "Ubuntu 6.06 Security Updates"
-msgstr "Ubuntu 6.04 安全更新"
+msgstr "Ubuntu 6-06 安全更新"
#. Description
#: ../channels/Ubuntu.info.in:40
-#, fuzzy
msgid "Ubuntu 6.06 Updates"
-msgstr "Ubuntu 6.04 更新"
+msgstr "Ubuntu 6-06 升级"
#. Description
#: ../channels/Ubuntu.info.in:57
-#, fuzzy
msgid "Ubuntu 6.06 Backports"
-msgstr "Ubuntu 6.04 移植"
+msgstr "Ubuntu 6-06 降级移植"
#. Description
#: ../channels/Ubuntu.info.in:74
@@ -1109,6 +1098,9 @@ msgstr "带有非自由依赖关系的DFSG兼容软件"
msgid "Non-DFSG-compatible Software"
msgstr "非DFSG兼容软件"
+#~ msgid "Oficially supported"
+#~ msgstr "官方支持"
+
#~ msgid "Installing updates"
#~ msgstr "安装更新"
@@ -1118,9 +1110,6 @@ msgstr "非DFSG兼容软件"
#~ msgid "Sections:"
#~ msgstr "节:"
-#~ msgid "Oficially supported"
-#~ msgstr "官方支持"
-
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "从服务器重新装入软件包信息。"
diff --git a/po/zh_HK.po b/po/zh_HK.po
index bb32fbb5..0d8623a9 100644
--- a/po/zh_HK.po
+++ b/po/zh_HK.po
@@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager 0.41.1\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-23 00:20+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-04 20:25+0000\n"
"Last-Translator: Abel Cheung \n"
"Language-Team: Chinese (traditional) \n"
"MIME-Version: 1.0\n"
@@ -588,8 +588,8 @@ msgstr "正在檢查更新套件..."
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -1095,13 +1095,13 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Sections:"
-#~ msgstr "分類:"
-
#, fuzzy
#~ msgid "Oficially supported"
#~ msgstr "官方支援"
+#~ msgid "Sections:"
+#~ msgstr "分類:"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "由伺服器重新載入套件資料。"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 4e86d520..b3da871f 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager 0.41.1\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-10 10:51+0200\n"
-"PO-Revision-Date: 2006-03-23 00:20+0000\n"
+"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"PO-Revision-Date: 2006-04-04 20:25+0000\n"
"Last-Translator: Abel Cheung \n"
"Language-Team: Chinese (traditional) \n"
"MIME-Version: 1.0\n"
@@ -588,8 +588,8 @@ msgstr "正在檢查更新套件..."
#: ../UpdateManager/UpdateManager.py:184
msgid ""
"Some updates require the removal of further software. Use the function "
-"\"Smart Upgrade\" of the package manager \"Synaptic\" or run \"sudo apt-get "
-"dist-upgrade\" in a terminal to update your system completely."
+"\"Mark All Upgrades\" of the package manager \"Synaptic\" or run \"sudo apt-"
+"get dist-upgrade\" in a terminal to update your system completely."
msgstr ""
#: ../UpdateManager/UpdateManager.py:194
@@ -1095,13 +1095,13 @@ msgstr ""
msgid "Non-DFSG-compatible Software"
msgstr ""
-#~ msgid "Sections:"
-#~ msgstr "分類:"
-
#, fuzzy
#~ msgid "Oficially supported"
#~ msgstr "官方支援"
+#~ msgid "Sections:"
+#~ msgstr "分類:"
+
#, fuzzy
#~ msgid "Reload the latest information about updates"
#~ msgstr "由伺服器重新載入套件資料。"
--
cgit v1.2.3
From c5279cfbb9ad48c9d95e535734f311d7c9d98818 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Wed, 12 Apr 2006 20:11:08 +0200
Subject: * make it not check for new distro releases anymore for dapper
---
UpdateManager/MetaRelease.py | 4 +++-
UpdateManager/UpdateManager.py | 15 +++++++++------
data/update-manager.schemas.in | 16 ++++++++++++++++
debian/changelog | 2 ++
update-manager | 3 +++
5 files changed, 33 insertions(+), 7 deletions(-)
diff --git a/UpdateManager/MetaRelease.py b/UpdateManager/MetaRelease.py
index 0cfb9f36..b655f36a 100644
--- a/UpdateManager/MetaRelease.py
+++ b/UpdateManager/MetaRelease.py
@@ -57,8 +57,10 @@ class MetaRelease(gobject.GObject):
}
- def __init__(self):
+ def __init__(self, useDevelopmentRelase=False):
gobject.GObject.__init__(self)
+ if useDevelopmentRelase:
+ self.METARELEASE_URI = self.METARELEASE_URI_UNSTABLE
self.metarelease_information = None
self.downloading = True
# we start the download thread here and we have a timeout
diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py
index 42982de4..5773c5a6 100644
--- a/UpdateManager/UpdateManager.py
+++ b/UpdateManager/UpdateManager.py
@@ -739,12 +739,15 @@ class UpdateManager(SimpleGladeApp):
def main(self, options):
- self.meta = MetaRelease()
- # the user wants to see the development release
- if options.devel_release:
- self.meta.METARELEASE_URI = self.meta.METARELEASE_URI_UNSTABLE
- self.meta.connect("new_dist_available",self.new_dist_available)
- self.meta.connect("dist_no_longer_supported",self.dist_no_longer_supported)
+ # check if we are interessted in dist-upgrade information
+ # (we are not by default on dapper)
+ gconfclient = gconf.client_get_default()
+ if options.check_dist_upgrades or \
+ gconfclient.get_bool("/apps/update-manager/check_dist_upgrades"):
+ # the user wants to see the development release
+ self.meta = MetaRelease(options.devel_release)
+ self.meta.connect("new_dist_available",self.new_dist_available)
+ self.meta.connect("dist_no_longer_supported",self.dist_no_longer_supported)
while gtk.events_pending():
gtk.main_iteration()
diff --git a/data/update-manager.schemas.in b/data/update-manager.schemas.in
index 06308871..68a8deef 100644
--- a/data/update-manager.schemas.in
+++ b/data/update-manager.schemas.in
@@ -47,6 +47,22 @@
+
+ /schemas/apps/update-manager/check_dist_upgrades
+ /apps/update-manager/check_dist_upgrades
+ update-manager
+ bool
+ False
+
+
+ Remind to reload the channel list
+
+ 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.
+
+
+
diff --git a/debian/changelog b/debian/changelog
index 303e46a2..d00f910b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,8 @@ update-manager (0.42.2ubuntu12) dapper; urgency=low
* fix the help string in update-manager (ubuntu: #23274)
* fix the bad grammar in "Cannot install all available updates"
(ubuntu: #32864)
+ * don't inform about new distro release on dapper by default (can be
+ changed via a gconf setting/commandline switch)
--
diff --git a/update-manager b/update-manager
index 6c1f3fd0..5c69addc 100644
--- a/update-manager
+++ b/update-manager
@@ -48,6 +48,9 @@ if __name__ == "__main__":
# Begin parsing of options
parser = OptionParser()
+ parser.add_option ("-c", "--check-dist-upgrades", action="store_true",
+ dest="check_dist_upgrades", default=False,
+ help="Check if a new distribution release is available")
parser.add_option ("-d", "--devel-release", action="store_true",
dest="devel_release", default=False,
help="Check if upgrading to the latest devel release "
--
cgit v1.2.3
From 00af0c2e8a7b983a1570e69a1a0696c51a58685b Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Wed, 12 Apr 2006 20:21:59 +0200
Subject: * fix disable and "no components selected"
---
SoftwareProperties/dialog_add.py | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/SoftwareProperties/dialog_add.py b/SoftwareProperties/dialog_add.py
index cee2f9b8..fbf741c5 100644
--- a/SoftwareProperties/dialog_add.py
+++ b/SoftwareProperties/dialog_add.py
@@ -120,7 +120,8 @@ class dialog_add:
# since we're passing the SourceEntry as it is now,
# this SourceEntry needs to be in the sourceslist,
# so temporarily swap the original for the current
- self.sourceslist.list[self.source_entry_index] = source_entry
+ if source_entry:
+ self.sourceslist.list[self.source_entry_index] = source_entry
dialog = dialog_edit.dialog_edit(self.parent, self.sourceslist,
source_entry, self.datadir)
res = dialog.run()
@@ -151,8 +152,13 @@ class dialog_add:
# we use "selected" for pretty much everything *but* we use
# self.source_entry.uri to make sure that the mirror information is
# preserved
+
line = "%s %s %s" % (self.selected.type, self.source_entry.uri, self.selected.dist)
- if len(self.selected_comps) > 0:
+ if self.source_entry.disabled:
+ line = "#" + line
+ if len(self.selected.comps) > 0 and len(self.selected_comps) == 0:
+ line = "#" + line
+ elif len(self.selected_comps) > 0:
line += " " + " ".join(self.selected_comps)
if self.selected.matches(self.source_entry) and self.source_entry.comment != "":
line += " #"+self.source_entry.comment
@@ -170,7 +176,9 @@ class dialog_add:
if self.source_entry:
# 'edit' - ode
if not self.custom:
- self.sourceslist.list[self.source_entry_index] = self._make_source_entry()
+ entry = self._make_source_entry()
+ if entry:
+ self.sourceslist.list[self.source_entry_index] = entry
else:
# 'add' mode
self.sourceslist.add(self.selected.type,
--
cgit v1.2.3
From 3dbbb375ff7a77872ae811d9cef31b55d082077a Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Wed, 12 Apr 2006 20:57:31 +0200
Subject: * update the adept-periodic-config file as well
---
SoftwareProperties/SoftwareProperties.py | 48 +++++++++++++++-----------------
1 file changed, 23 insertions(+), 25 deletions(-)
diff --git a/SoftwareProperties/SoftwareProperties.py b/SoftwareProperties/SoftwareProperties.py
index 296c71dc..aa3114f0 100644
--- a/SoftwareProperties/SoftwareProperties.py
+++ b/SoftwareProperties/SoftwareProperties.py
@@ -317,31 +317,29 @@ class SoftwareProperties(SimpleGladeApp):
self.write_config()
def write_config(self):
- #print "write_config()"
- periodic = "/etc/apt/apt.conf.d/10periodic"
-
- # read the old content
- content = []
- if os.path.isfile(periodic):
- content = open(periodic, "r").readlines()
-
- cnf = apt_pkg.Config.SubTree("APT::Periodic")
-
- # write a new file without the updated keys
- f = open(periodic, "w")
- for line in content:
- found = False
- for key in cnf.List():
- if line.find("APT::Periodic::%s" % (key)) >= 0:
- found = True
- break
- if not found:
- f.write(line)
-
- # append the updated keys
- for i in cnf.List():
- f.write("APT::Periodic::%s \"%s\";\n" % (i, cnf.FindI(i)))
- f.close()
+ # update the adept file as well if it is there
+ for periodic in ["/etc/apt/apt.conf.d/10periodic",
+ "/etc/apt/apt.conf.d/15adept-periodic-update"]:
+
+ # read the old content first
+ content = []
+ if os.path.isfile(periodic):
+ content = open(periodic, "r").readlines()
+ cnf = apt_pkg.Config.SubTree("APT::Periodic")
+
+ # then write a new file without the updated keys
+ f = open(periodic, "w")
+ for line in content:
+ for key in cnf.List():
+ if line.find("APT::Periodic::%s" % (key)) >= 0:
+ break
+ else:
+ f.write(line)
+
+ # and append the updated keys
+ for i in cnf.List():
+ f.write("APT::Periodic::%s \"%s\";\n" % (i, cnf.FindI(i)))
+ f.close()
def save_sourceslist(self):
#location = "/etc/apt/sources.list"
--
cgit v1.2.3
From 79037450162dad5a8e96608d1e6d7c9f28957691 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Wed, 12 Apr 2006 21:05:03 +0200
Subject: * data/update-manager.schemas.in: fix the description
---
data/update-manager.schemas.in | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/update-manager.schemas.in b/data/update-manager.schemas.in
index 68a8deef..275f8be5 100644
--- a/data/update-manager.schemas.in
+++ b/data/update-manager.schemas.in
@@ -55,11 +55,11 @@
False
- Remind to reload the channel list
+ Check for new distribution releases
- 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.
+ Check automatically if a new version of the current
+ distribution is available and offer to upgrade (if
+ possible).
--
cgit v1.2.3
From 8f811a14d7d26d87b9b79a910ba3202c49ebbf94 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Wed, 12 Apr 2006 21:05:22 +0200
Subject: * UpdateManager/UpdateManager.py: only supress new release
information
---
UpdateManager/UpdateManager.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py
index 5773c5a6..cb2b4d10 100644
--- a/UpdateManager/UpdateManager.py
+++ b/UpdateManager/UpdateManager.py
@@ -739,15 +739,15 @@ class UpdateManager(SimpleGladeApp):
def main(self, options):
+ gconfclient = gconf.client_get_default()
+ self.meta = MetaRelease(options.devel_release)
+ self.meta.connect("dist_no_longer_supported",self.dist_no_longer_supported)
+
# check if we are interessted in dist-upgrade information
# (we are not by default on dapper)
- gconfclient = gconf.client_get_default()
if options.check_dist_upgrades or \
gconfclient.get_bool("/apps/update-manager/check_dist_upgrades"):
- # the user wants to see the development release
- self.meta = MetaRelease(options.devel_release)
self.meta.connect("new_dist_available",self.new_dist_available)
- self.meta.connect("dist_no_longer_supported",self.dist_no_longer_supported)
while gtk.events_pending():
gtk.main_iteration()
--
cgit v1.2.3
From f8a44b4bd3f1d72a3c56e5f17a443f33a5868067 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Wed, 12 Apr 2006 21:07:55 +0200
Subject: * removed some debug output
---
UpdateManager/UpdateManager.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py
index cb2b4d10..45638838 100644
--- a/UpdateManager/UpdateManager.py
+++ b/UpdateManager/UpdateManager.py
@@ -642,12 +642,12 @@ class UpdateManager(SimpleGladeApp):
dialog.destroy()
def on_button_dist_upgrade_clicked(self, button):
- print "on_button_dist_upgrade_clicked"
+ #print "on_button_dist_upgrade_clicked"
fetcher = DistUpgradeFetcher(self, self.new_dist)
fetcher.run()
def new_dist_available(self, meta_release, upgradable_to):
- print "new_dist_available: %s" % upgradable_to.name
+ #print "new_dist_available: %s" % upgradable_to.name
# check if the user already knowns about this dist
#seen = self.gconfclient.get_string("/apps/update-manager/seen_dist")
#if name == seen:
--
cgit v1.2.3
From f3f7ea7021572b48116c9f81664573175c663b45 Mon Sep 17 00:00:00 2001
From: Michael Vogt
Date: Thu, 13 Apr 2006 12:21:20 +0200
Subject: * po/*: make update-po * po/POTFILES.in: added
data/gnome-software-properties.desktop.in
---
debian/changelog | 6 ++++++
po/POTFILES.in | 1 +
po/bg.po | 49 ++++++++++++++++++++++++++++++++-----------------
po/br.po | 46 ++++++++++++++++++++++++++++++++--------------
po/cs.po | 47 +++++++++++++++++++++++++++++++++--------------
po/da.po | 46 ++++++++++++++++++++++++++++++++--------------
po/de.po | 50 +++++++++++++++++++++++++++++++++-----------------
po/el.po | 48 ++++++++++++++++++++++++++++++++++--------------
po/en_CA.po | 49 ++++++++++++++++++++++++++++++++-----------------
po/en_GB.po | 49 ++++++++++++++++++++++++++++++++-----------------
po/es.po | 50 +++++++++++++++++++++++++++++++++-----------------
po/fi.po | 50 +++++++++++++++++++++++++++++++++-----------------
po/fr.po | 50 +++++++++++++++++++++++++++++++++-----------------
po/gl.po | 49 ++++++++++++++++++++++++++++++++-----------------
po/he.po | 49 ++++++++++++++++++++++++++++++++-----------------
po/hu.po | 48 ++++++++++++++++++++++++++++++++++--------------
po/it.po | 50 +++++++++++++++++++++++++++++++++-----------------
po/ja.po | 50 +++++++++++++++++++++++++++++++++-----------------
po/lt.po | 47 +++++++++++++++++++++++++++++++++--------------
po/mk.po | 49 ++++++++++++++++++++++++++++++++-----------------
po/nb.po | 50 +++++++++++++++++++++++++++++++++-----------------
po/ne.po | 49 ++++++++++++++++++++++++++++++++-----------------
po/nl.po | 46 ++++++++++++++++++++++++++++++++--------------
po/no.po | 49 ++++++++++++++++++++++++++++++++-----------------
po/pa.po | 47 +++++++++++++++++++++++++++++++++--------------
po/pl.po | 50 +++++++++++++++++++++++++++++++++-----------------
po/pt.po | 50 +++++++++++++++++++++++++++++++++-----------------
po/pt_BR.po | 50 +++++++++++++++++++++++++++++++++-----------------
po/ro.po | 51 +++++++++++++++++++++++++++++++++------------------
po/rw.po | 47 +++++++++++++++++++++++++++++++++--------------
po/sk.po | 46 ++++++++++++++++++++++++++++++++--------------
po/sv.po | 50 +++++++++++++++++++++++++++++++++-----------------
po/uk.po | 49 ++++++++++++++++++++++++++++++++-----------------
po/update-manager.pot | 46 ++++++++++++++++++++++++++++++++--------------
po/vi.po | 49 ++++++++++++++++++++++++++++++++-----------------
po/xh.po | 47 +++++++++++++++++++++++++++++++++--------------
po/zh_CN.po | 50 +++++++++++++++++++++++++++++++++-----------------
po/zh_HK.po | 49 ++++++++++++++++++++++++++++++++-----------------
po/zh_TW.po | 49 ++++++++++++++++++++++++++++++++-----------------
39 files changed, 1213 insertions(+), 594 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index 06036f97..af2ff3e0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+update-manager (0.42.2ubuntu13) dapper; urgency=low
+
+ * po/POTFILES.in: add missing desktop file (ubuntu: #39410)
+
+ --
+
update-manager (0.42.2ubuntu12) dapper; urgency=low
* channels/*.in: typo fix
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 5fc754e5..ed7c079a 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -17,6 +17,7 @@ data/SoftwareProperties.glade
data/SoftwarePropertiesDialogs.glade
data/update-manager.desktop.in
data/update-manager.schemas.in
+data/gnome-software-properties.desktop.in
[type: gettext/rfc822deb] channels/Ubuntu.info.in
[type: gettext/rfc822deb] channels/Debian.info.in
[type: python] update-manager
diff --git a/po/bg.po b/po/bg.po
index 60ab98c3..33f17206 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"POT-Creation-Date: 2006-04-13 12:19+0200\n"
"PO-Revision-Date: 2006-04-04 20:18+0000\n"
"Last-Translator: Rostislav Raykov \n"
"Language-Team: Bulgarian \n"
@@ -27,29 +27,29 @@ msgstr ""
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:421
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:431
msgid "Error importing selected file"
msgstr "Грешка при внасяне на избрания файл"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:432
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:444
msgid "Error removing the key"
msgstr "Грешка при премахване на ключа"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:445
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"Ключа, който сте избрали, не може да бъде премахнат. Докладвайте това като "
"грешка."
-#: ../SoftwareProperties/SoftwareProperties.py:478
+#: ../SoftwareProperties/SoftwareProperties.py:486
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -57,11 +57,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:535
+#: ../SoftwareProperties/SoftwareProperties.py:543
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:551
+#: ../SoftwareProperties/SoftwareProperties.py:559
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -962,33 +962,51 @@ msgstr "Управление на обновленията"
#: ../data/update-manager.schemas.in.h:1
msgid ""
+"Check automatically if a new version of the current distribution is "
+"available and offer to upgrade (if possible)."
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:2
+msgid "Check for new distribution releases"
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:3
+msgid ""
"If automatic checking for updates is 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
+#: ../data/update-manager.schemas.in.h:4
msgid "Remind to reload the channel list"
msgstr ""
-#: ../data/update-manager.schemas.in.h:3
+#: ../data/update-manager.schemas.in.h:5
msgid "Show details of an update"
msgstr ""
-#: ../data/update-manager.schemas.in.h:4
+#: ../data/update-manager.schemas.in.h:6
msgid "Stores the size of the update-manager dialog"
msgstr ""
-#: ../data/update-manager.schemas.in.h:5
+#: ../data/update-manager.schemas.in.h:7
msgid ""
"Stores the state of the expander that contains the list of changs and the "
"description"
msgstr ""
-#: ../data/update-manager.schemas.in.h:6
+#: ../data/update-manager.schemas.in.h:8
msgid "The window size"
msgstr ""
+#: ../data/gnome-software-properties.desktop.in.h:1
+msgid "Configure software channels and internet updates"
+msgstr ""
+
+#: ../data/gnome-software-properties.desktop.in.h:2
+msgid "Software Properties"
+msgstr "Настройки на софтуера"
+
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -1149,9 +1167,6 @@ msgstr ""
#~ msgid "Edit software sources and settings"
#~ msgstr "Редактиране на източниците и настройките на софтуера"
-#~ msgid "Software Properties"
-#~ msgstr "Настройки на софтуера"
-
#~ msgid "Sources"
#~ msgstr "Източници"
diff --git a/po/br.po b/po/br.po
index efcee48a..a15d2199 100644
--- a/po/br.po
+++ b/po/br.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"POT-Creation-Date: 2006-04-13 12:19+0200\n"
"PO-Revision-Date: 2006-04-04 20:18+0000\n"
"Last-Translator: Rosetta Administrators \n"
"Language-Team: Breton
\n"
@@ -27,27 +27,27 @@ msgstr ""
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:421
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:431
msgid "Error importing selected file"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:432
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:444
msgid "Error removing the key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:445
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:478
+#: ../SoftwareProperties/SoftwareProperties.py:486
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -55,11 +55,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:535
+#: ../SoftwareProperties/SoftwareProperties.py:543
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:551
+#: ../SoftwareProperties/SoftwareProperties.py:559
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -911,33 +911,51 @@ msgstr ""
#: ../data/update-manager.schemas.in.h:1
msgid ""
+"Check automatically if a new version of the current distribution is "
+"available and offer to upgrade (if possible)."
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:2
+msgid "Check for new distribution releases"
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:3
+msgid ""
"If automatic checking for updates is 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
+#: ../data/update-manager.schemas.in.h:4
msgid "Remind to reload the channel list"
msgstr ""
-#: ../data/update-manager.schemas.in.h:3
+#: ../data/update-manager.schemas.in.h:5
msgid "Show details of an update"
msgstr ""
-#: ../data/update-manager.schemas.in.h:4
+#: ../data/update-manager.schemas.in.h:6
msgid "Stores the size of the update-manager dialog"
msgstr ""
-#: ../data/update-manager.schemas.in.h:5
+#: ../data/update-manager.schemas.in.h:7
msgid ""
"Stores the state of the expander that contains the list of changs and the "
"description"
msgstr ""
-#: ../data/update-manager.schemas.in.h:6
+#: ../data/update-manager.schemas.in.h:8
msgid "The window size"
msgstr ""
+#: ../data/gnome-software-properties.desktop.in.h:1
+msgid "Configure software channels and internet updates"
+msgstr ""
+
+#: ../data/gnome-software-properties.desktop.in.h:2
+msgid "Software Properties"
+msgstr ""
+
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
diff --git a/po/cs.po b/po/cs.po
index 37c7543f..23aa9e17 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"POT-Creation-Date: 2006-04-13 12:19+0200\n"
"PO-Revision-Date: 2006-04-12 13:20+0000\n"
"Last-Translator: Ondřej Nový \n"
"Language-Team: Czech \n"
@@ -28,28 +28,28 @@ msgstr "Každých %s dní"
msgid "After %s days"
msgstr "Po %s dnech"
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:421
msgid "Import key"
msgstr "Importovat klíč"
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:431
msgid "Error importing selected file"
msgstr "Chyba při importování vybraného souboru"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:432
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "Vybraný soubor nemusí obsahovat GPG klíč nebo může být porušen."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:444
msgid "Error removing the key"
msgstr "Chyba při odstraňování klíče"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:445
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"Vybraný klíč nemohl být odstraněn. Prosim nahlašte tento problém jako chybu"
-#: ../SoftwareProperties/SoftwareProperties.py:478
+#: ../SoftwareProperties/SoftwareProperties.py:486
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -60,11 +60,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:535
+#: ../SoftwareProperties/SoftwareProperties.py:543
msgid "Please enter a name for the disc"
msgstr "Prosím zadejte jméno disku"
-#: ../SoftwareProperties/SoftwareProperties.py:551
+#: ../SoftwareProperties/SoftwareProperties.py:559
msgid "Please insert a disc in the drive:"
msgstr "Prosím vložte disk do mechaniky:"
@@ -1001,6 +1001,16 @@ msgstr "Správce Aktualizací"
#: ../data/update-manager.schemas.in.h:1
msgid ""
+"Check automatically if a new version of the current distribution is "
+"available and offer to upgrade (if possible)."
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:2
+msgid "Check for new distribution releases"
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:3
+msgid ""
"If automatic checking for updates is disabeld, you have to reload the "
"channel list manually. This option allows to hide the reminder shown in this "
"case."
@@ -1009,28 +1019,37 @@ msgstr ""
"zdrojů ručne. Tato volba umožní ukrytí upomínky zobrazované v takovém "
"případě."
-#: ../data/update-manager.schemas.in.h:2
+#: ../data/update-manager.schemas.in.h:4
msgid "Remind to reload the channel list"
msgstr "Připomenout obnovení seznamu zdrojů"
-#: ../data/update-manager.schemas.in.h:3
+#: ../data/update-manager.schemas.in.h:5
msgid "Show details of an update"
msgstr "Zobrazit detaily aktualizace"
-#: ../data/update-manager.schemas.in.h:4
+#: ../data/update-manager.schemas.in.h:6
msgid "Stores the size of the update-manager dialog"
msgstr "Uchovává velikost dialogu update-manageru"
-#: ../data/update-manager.schemas.in.h:5
+#: ../data/update-manager.schemas.in.h:7
msgid ""
"Stores the state of the expander that contains the list of changs and the "
"description"
msgstr ""
-#: ../data/update-manager.schemas.in.h:6
+#: ../data/update-manager.schemas.in.h:8
msgid "The window size"
msgstr "Velikost okna"
+#: ../data/gnome-software-properties.desktop.in.h:1
+msgid "Configure software channels and internet updates"
+msgstr ""
+
+#: ../data/gnome-software-properties.desktop.in.h:2
+#, fuzzy
+msgid "Software Properties"
+msgstr "Předvolby software"
+
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
diff --git a/po/da.po b/po/da.po
index 1e399ac4..677b67d4 100644
--- a/po/da.po
+++ b/po/da.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"POT-Creation-Date: 2006-04-13 12:19+0200\n"
"PO-Revision-Date: 2006-04-10 19:53+0000\n"
"Last-Translator: Andreas Lloyd \n"
"Language-Team: Danish \n"
@@ -27,29 +27,29 @@ msgstr "Hver %s. dag"
msgid "After %s days"
msgstr "Efter %s dag(e)"
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:421
msgid "Import key"
msgstr "Importér nøgle"
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:431
msgid "Error importing selected file"
msgstr "Fejl under importering af den valgte fil"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:432
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr "Den valgte fil lader ikke til at være en GPG nøglefil eller er korrupt"
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:444
msgid "Error removing the key"
msgstr "Fejl ved fjernelse af nøgle"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:445
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"Den valgte nøgle kunne ikke fjernes. Rapporter venligst denne fejl som en "
"bug."
-#: ../SoftwareProperties/SoftwareProperties.py:478
+#: ../SoftwareProperties/SoftwareProperties.py:486
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -60,11 +60,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:535
+#: ../SoftwareProperties/SoftwareProperties.py:543
msgid "Please enter a name for the disc"
msgstr "Indtast venligst et navn for disken"
-#: ../SoftwareProperties/SoftwareProperties.py:551
+#: ../SoftwareProperties/SoftwareProperties.py:559
msgid "Please insert a disc in the drive:"
msgstr "Indtast venligst en disk i drevet:"
@@ -940,33 +940,51 @@ msgstr ""
#: ../data/update-manager.schemas.in.h:1
msgid ""
+"Check automatically if a new version of the current distribution is "
+"available and offer to upgrade (if possible)."
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:2
+msgid "Check for new distribution releases"
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:3
+msgid ""
"If automatic checking for updates is 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
+#: ../data/update-manager.schemas.in.h:4
msgid "Remind to reload the channel list"
msgstr ""
-#: ../data/update-manager.schemas.in.h:3
+#: ../data/update-manager.schemas.in.h:5
msgid "Show details of an update"
msgstr ""
-#: ../data/update-manager.schemas.in.h:4
+#: ../data/update-manager.schemas.in.h:6
msgid "Stores the size of the update-manager dialog"
msgstr ""
-#: ../data/update-manager.schemas.in.h:5
+#: ../data/update-manager.schemas.in.h:7
msgid ""
"Stores the state of the expander that contains the list of changs and the "
"description"
msgstr ""
-#: ../data/update-manager.schemas.in.h:6
+#: ../data/update-manager.schemas.in.h:8
msgid "The window size"
msgstr ""
+#: ../data/gnome-software-properties.desktop.in.h:1
+msgid "Configure software channels and internet updates"
+msgstr ""
+
+#: ../data/gnome-software-properties.desktop.in.h:2
+msgid "Software Properties"
+msgstr ""
+
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
diff --git a/po/de.po b/po/de.po
index 18672ebf..4174fb29 100644
--- a/po/de.po
+++ b/po/de.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"POT-Creation-Date: 2006-04-13 12:19+0200\n"
"PO-Revision-Date: 2006-04-09 00:46+0000\n"
"Last-Translator: Peter Jochum \n"
"Language-Team: German GNOME Translations \n"
@@ -28,31 +28,31 @@ msgstr "Alle %s Tage"
msgid "After %s days"
msgstr "Nach %s Tagen"
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:421
msgid "Import key"
msgstr "Schlüssel importieren"
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:431
msgid "Error importing selected file"
msgstr "Fehler beim Importieren der gewählten Datei"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:432
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
"Die ausgewählte Datei ist möglicherweise keine GPG-Schlüsseldatei oder "
"beschädigt."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:444
msgid "Error removing the key"
msgstr "Fehler beim Entfernen des Schlüssels"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:445
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"Der ausgewählte Schlüssel konnte nicht entfernt werden. Bitte erstellen Sie "
"hierfür einen Fehlerbericht."
-#: ../SoftwareProperties/SoftwareProperties.py:478
+#: ../SoftwareProperties/SoftwareProperties.py:486
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -63,11 +63,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:535
+#: ../SoftwareProperties/SoftwareProperties.py:543
msgid "Please enter a name for the disc"
msgstr "Geben Sie einen Namen für das Medium ein"
-#: ../SoftwareProperties/SoftwareProperties.py:551
+#: ../SoftwareProperties/SoftwareProperties.py:559
msgid "Please insert a disc in the drive:"
msgstr "Bitte legen Sie ein Medium in das Laufwerk"
@@ -1034,6 +1034,16 @@ msgstr "Aktualisierungsverwaltung"
#: ../data/update-manager.schemas.in.h:1
msgid ""
+"Check automatically if a new version of the current distribution is "
+"available and offer to upgrade (if possible)."
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:2
+msgid "Check for new distribution releases"
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:3
+msgid ""
"If automatic checking for updates is disabeld, you have to reload the "
"channel list manually. This option allows to hide the reminder shown in this "
"case."
@@ -1042,19 +1052,19 @@ msgstr ""
"Sie die Liste der Software-Kanäle manuell neu laden. Diese Option erlaubt es "
"den Erinnerungsdialog, der in diesem Fall angezeigt wird, zu verstecken."
-#: ../data/update-manager.schemas.in.h:2
+#: ../data/update-manager.schemas.in.h:4
msgid "Remind to reload the channel list"
msgstr "An das Laden der Kanal-Liste erinnern"
-#: ../data/update-manager.schemas.in.h:3
+#: ../data/update-manager.schemas.in.h:5
msgid "Show details of an update"
msgstr "Zeige Details einer Aktualisierung"
-#: ../data/update-manager.schemas.in.h:4
+#: ../data/update-manager.schemas.in.h:6
msgid "Stores the size of the update-manager dialog"
msgstr "Speichert die Größe des Fensters der Aktualisierungsverwaltung"
-#: ../data/update-manager.schemas.in.h:5
+#: ../data/update-manager.schemas.in.h:7
msgid ""
"Stores the state of the expander that contains the list of changs and the "
"description"
@@ -1062,10 +1072,19 @@ msgstr ""
"Speichert den Zustand des Expanders, der die Liste der Änderungen und die "
"Beschreibung enthält"
-#: ../data/update-manager.schemas.in.h:6
+#: ../data/update-manager.schemas.in.h:8
msgid "The window size"
msgstr "Die Fenstergröße"
+#: ../data/gnome-software-properties.desktop.in.h:1
+#, fuzzy
+msgid "Configure software channels and internet updates"
+msgstr "Überprüfe die Softwarekanäle auf neue Aktualisierungen"
+
+#: ../data/gnome-software-properties.desktop.in.h:2
+msgid "Software Properties"
+msgstr "Software-Eigenschaften"
+
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -1417,9 +1436,6 @@ msgstr "Nicht DFSG-kompatible Software"
#~ msgid "Edit software sources and settings"
#~ msgstr "Bearbeiten der Software-Quellen und Einstellungen"
-#~ msgid "Software Properties"
-#~ msgstr "Software-Eigenschaften"
-
#~ msgid "Ubuntu Update Manager"
#~ msgstr "Ubuntu Aktualisierungsverwaltung"
diff --git a/po/el.po b/po/el.po
index d9d40b94..c2e8e253 100644
--- a/po/el.po
+++ b/po/el.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: el\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"POT-Creation-Date: 2006-04-13 12:19+0200\n"
"PO-Revision-Date: 2006-04-05 14:17+0000\n"
"Last-Translator: Kostas Papadimas \n"
"Language-Team: Greek \n"
@@ -26,31 +26,31 @@ msgstr "Κάθε %s ημέρες"
msgid "After %s days"
msgstr "Μετά από %s ημέρες"
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:421
msgid "Import key"
msgstr "Εισαγωγή κλειδιού"
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:431
msgid "Error importing selected file"
msgstr "Σφάλμα εισαγωγής επιλεγμένου αρχείου"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:432
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:444
msgid "Error removing the key"
msgstr "Σφάλμα απομάκρυνσης του κλειδιού"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:445
msgid "The key you selected could not be removed. Please report this as a bug."
msgstr ""
"Το επιλεγμένο κλειδί δεν μπορεί να απομακρυνθεί. Παρακαλώ αναφέρετε το ως "
"σφάλμα."
-#: ../SoftwareProperties/SoftwareProperties.py:478
+#: ../SoftwareProperties/SoftwareProperties.py:486
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -61,11 +61,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:535
+#: ../SoftwareProperties/SoftwareProperties.py:543
msgid "Please enter a name for the disc"
msgstr "Παρακαλώ εισάγετε ένα όνομα για το δίσκο"
-#: ../SoftwareProperties/SoftwareProperties.py:551
+#: ../SoftwareProperties/SoftwareProperties.py:559
msgid "Please insert a disc in the drive:"
msgstr "Παρακαλώ εισάγετε ένα δίσκο στον οδηγό:"
@@ -1007,6 +1007,16 @@ msgstr "Διαχείριση αναβαθμίσεων"
#: ../data/update-manager.schemas.in.h:1
msgid ""
+"Check automatically if a new version of the current distribution is "
+"available and offer to upgrade (if possible)."
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:2
+msgid "Check for new distribution releases"
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:3
+msgid ""
"If automatic checking for updates is disabeld, you have to reload the "
"channel list manually. This option allows to hide the reminder shown in this "
"case."
@@ -1014,19 +1024,19 @@ msgstr ""
"Αν έχει απενεργοποιηθεί ο αυτόματος έλεγχος για ενημερώσεις, θα πρέπει να "
"ανανεώσετε τη λίστα καναλιών χειροκίνητα."
-#: ../data/update-manager.schemas.in.h:2
+#: ../data/update-manager.schemas.in.h:4
msgid "Remind to reload the channel list"
msgstr "Υπενθύμιση για την ανανέωση της λίστας καναλιών"
-#: ../data/update-manager.schemas.in.h:3
+#: ../data/update-manager.schemas.in.h:5
msgid "Show details of an update"
msgstr "Εμφάνιση λεπτομερειών μιας ενημέρωσης"
-#: ../data/update-manager.schemas.in.h:4
+#: ../data/update-manager.schemas.in.h:6
msgid "Stores the size of the update-manager dialog"
msgstr "Αποθηκεύει το μέγεθος του διαλόγου του update-manager"
-#: ../data/update-manager.schemas.in.h:5
+#: ../data/update-manager.schemas.in.h:7
msgid ""
"Stores the state of the expander that contains the list of changs and the "
"description"
@@ -1034,10 +1044,20 @@ msgstr ""
"Αποθηκεύει τη κατάσταση του expander που περιέχει τη λίστα των αλλαγών και "
"τις περιγραφής τους"
-#: ../data/update-manager.schemas.in.h:6
+#: ../data/update-manager.schemas.in.h:8
msgid "The window size"
msgstr "Το μέγεθος του παραθύρου"
+#: ../data/gnome-software-properties.desktop.in.h:1
+#, fuzzy
+msgid "Configure software channels and internet updates"
+msgstr "Έλεγχος των καναλιών λογισμικού για ενημερώσεις"
+
+#: ../data/gnome-software-properties.desktop.in.h:2
+#, fuzzy
+msgid "Software Properties"
+msgstr "Προτιμήσεις λογισμικού"
+
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
diff --git a/po/en_CA.po b/po/en_CA.po
index 0bf80595..783fa5cf 100644
--- a/po/en_CA.po
+++ b/po/en_CA.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"POT-Creation-Date: 2006-04-13 12:19+0200\n"
"PO-Revision-Date: 2006-04-04 20:23+0000\n"
"Last-Translator: Adam Weinberger \n"
"Language-Team: Canadian English \n"
@@ -27,28 +27,28 @@ msgstr ""
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:421
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:431
msgid "Error importing selected file"
msgstr "Error importing selected file"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:432
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:444
msgid "Error removing the key"
msgstr "Error removing the key"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:445
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:478
+#: ../SoftwareProperties/SoftwareProperties.py:486
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -56,11 +56,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:535
+#: ../SoftwareProperties/SoftwareProperties.py:543
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:551
+#: ../SoftwareProperties/SoftwareProperties.py:559
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -968,33 +968,51 @@ msgstr "Update Manager"
#: ../data/update-manager.schemas.in.h:1
msgid ""
+"Check automatically if a new version of the current distribution is "
+"available and offer to upgrade (if possible)."
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:2
+msgid "Check for new distribution releases"
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:3
+msgid ""
"If automatic checking for updates is 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
+#: ../data/update-manager.schemas.in.h:4
msgid "Remind to reload the channel list"
msgstr ""
-#: ../data/update-manager.schemas.in.h:3
+#: ../data/update-manager.schemas.in.h:5
msgid "Show details of an update"
msgstr ""
-#: ../data/update-manager.schemas.in.h:4
+#: ../data/update-manager.schemas.in.h:6
msgid "Stores the size of the update-manager dialog"
msgstr ""
-#: ../data/update-manager.schemas.in.h:5
+#: ../data/update-manager.schemas.in.h:7
msgid ""
"Stores the state of the expander that contains the list of changs and the "
"description"
msgstr ""
-#: ../data/update-manager.schemas.in.h:6
+#: ../data/update-manager.schemas.in.h:8
msgid "The window size"
msgstr ""
+#: ../data/gnome-software-properties.desktop.in.h:1
+msgid "Configure software channels and internet updates"
+msgstr ""
+
+#: ../data/gnome-software-properties.desktop.in.h:2
+msgid "Software Properties"
+msgstr "Software Properties"
+
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -1332,9 +1350,6 @@ msgstr ""
#~ msgid "Edit software sources and settings"
#~ msgstr "Edit software sources and settings"
-#~ msgid "Software Properties"
-#~ msgstr "Software Properties"
-
#~ msgid "Ubuntu Update Manager"
#~ msgstr "Ubuntu Update Manager"
diff --git a/po/en_GB.po b/po/en_GB.po
index b668c040..78274fa7 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"POT-Creation-Date: 2006-04-13 12:19+0200\n"
"PO-Revision-Date: 2006-04-04 20:23+0000\n"
"Last-Translator: Abigail Brady \n"
"Language-Team: \n"
@@ -26,28 +26,28 @@ msgstr ""
msgid "After %s days"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:421
msgid "Import key"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:431
msgid "Error importing selected file"
msgstr "Error importing selected file"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:432
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:444
msgid "Error removing the key"
msgstr "Error removing the key"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:445
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:478
+#: ../SoftwareProperties/SoftwareProperties.py:486
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -55,11 +55,11 @@ msgid ""
"%s"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:535
+#: ../SoftwareProperties/SoftwareProperties.py:543
msgid "Please enter a name for the disc"
msgstr ""
-#: ../SoftwareProperties/SoftwareProperties.py:551
+#: ../SoftwareProperties/SoftwareProperties.py:559
msgid "Please insert a disc in the drive:"
msgstr ""
@@ -968,33 +968,51 @@ msgstr "Update Manager"
#: ../data/update-manager.schemas.in.h:1
msgid ""
+"Check automatically if a new version of the current distribution is "
+"available and offer to upgrade (if possible)."
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:2
+msgid "Check for new distribution releases"
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:3
+msgid ""
"If automatic checking for updates is 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
+#: ../data/update-manager.schemas.in.h:4
msgid "Remind to reload the channel list"
msgstr ""
-#: ../data/update-manager.schemas.in.h:3
+#: ../data/update-manager.schemas.in.h:5
msgid "Show details of an update"
msgstr ""
-#: ../data/update-manager.schemas.in.h:4
+#: ../data/update-manager.schemas.in.h:6
msgid "Stores the size of the update-manager dialog"
msgstr ""
-#: ../data/update-manager.schemas.in.h:5
+#: ../data/update-manager.schemas.in.h:7
msgid ""
"Stores the state of the expander that contains the list of changs and the "
"description"
msgstr ""
-#: ../data/update-manager.schemas.in.h:6
+#: ../data/update-manager.schemas.in.h:8
msgid "The window size"
msgstr ""
+#: ../data/gnome-software-properties.desktop.in.h:1
+msgid "Configure software channels and internet updates"
+msgstr ""
+
+#: ../data/gnome-software-properties.desktop.in.h:2
+msgid "Software Properties"
+msgstr "Software Properties"
+
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -1155,9 +1173,6 @@ msgstr ""
#~ msgid "Edit software sources and settings"
#~ msgstr "Edit software sources and settings"
-#~ msgid "Software Properties"
-#~ msgstr "Software Properties"
-
#, fuzzy
#~ msgid "Sources"
#~ msgstr "Software Sources"
diff --git a/po/es.po b/po/es.po
index d012c46b..54fc7ca9 100644
--- a/po/es.po
+++ b/po/es.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: es\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"POT-Creation-Date: 2006-04-13 12:19+0200\n"
"PO-Revision-Date: 2006-04-08 13:26+0000\n"
"Last-Translator: Ricardo Pérez López \n"
"Language-Team: Spanish \n"
@@ -29,31 +29,31 @@ msgstr "Cada %s días"
msgid "After %s days"
msgstr "Después de %s días"
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:421
msgid "Import key"
msgstr "Importar clave"
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:431
msgid "Error importing selected file"
msgstr "Hubo un error al importar el fichero seleccionado"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:432
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:444
msgid "Error removing the key"
msgstr "Hubo un error al quitar la clave"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:445
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:478
+#: ../SoftwareProperties/SoftwareProperties.py:486
#, python-format
msgid ""
"Error scaning the CD\n"
@@ -64,11 +64,11 @@ msgstr ""
"\n"
"%s"
-#: ../SoftwareProperties/SoftwareProperties.py:535
+#: ../SoftwareProperties/SoftwareProperties.py:543
msgid "Please enter a name for the disc"
msgstr "Por favor, introduzca un nombre para el disco"
-#: ../SoftwareProperties/SoftwareProperties.py:551
+#: ../SoftwareProperties/SoftwareProperties.py:559
msgid "Please insert a disc in the drive:"
msgstr "Por favor, inserte un disco en la unidad:"
@@ -1024,6 +1024,16 @@ msgstr "Gestor de actualizaciones"
#: ../data/update-manager.schemas.in.h:1
msgid ""
+"Check automatically if a new version of the current distribution is "
+"available and offer to upgrade (if possible)."
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:2
+msgid "Check for new distribution releases"
+msgstr ""
+
+#: ../data/update-manager.schemas.in.h:3
+msgid ""
"If automatic checking for updates is disabeld, you have to reload the "
"channel list manually. This option allows to hide the reminder shown in this "
"case."
@@ -1032,19 +1042,19 @@ msgstr ""
"la lista de canales manualmente. Esta opción le permite ocultar la "
"notificación que se muestra en este caso."
-#: ../data/update-manager.schemas.in.h:2
+#: ../data/update-manager.schemas.in.h:4
msgid "Remind to reload the channel list"
msgstr "Recordar la recarga de la lista de canales"
-#: ../data/update-manager.schemas.in.h:3
+#: ../data/update-manager.schemas.in.h:5
msgid "Show details of an update"
msgstr "Mostrar detalles de una actualización"
-#: ../data/update-manager.schemas.in.h:4
+#: ../data/update-manager.schemas.in.h:6
msgid "Stores the size of the update-manager dialog"
msgstr "Almacena el tamaño de la ventana del gestor de actualizaciones"
-#: ../data/update-manager.schemas.in.h:5
+#: ../data/update-manager.schemas.in.h:7
msgid ""
"Stores the state of the expander that contains the list of changs and the "
"description"
@@ -1052,10 +1062,19 @@ msgstr ""
"Almacena el estado del expansor que contiene la lista de cambios y sus "
"descripciones"
-#: ../data/update-manager.schemas.in.h:6
+#: ../data/update-manager.schemas.in.h:8
msgid "The window size"
msgstr "El tamaño de la ventana"
+#: ../data/gnome-software-properties.desktop.in.h:1
+#, fuzzy
+msgid "Configure software channels and internet updates"
+msgstr "Comprobar si hay nuevas actualizaciones en los canales de software"
+
+#: ../data/gnome-software-properties.desktop.in.h:2
+msgid "Software Properties"
+msgstr "Propiedades de software"
+
#. ChangelogURI
#: ../channels/Ubuntu.info.in.h:4
#, no-c-format
@@ -1397,9 +1416,6 @@ msgstr "Software no compatible con la DFSG"
#~ msgid "Edit software sources and settings"
#~ msgstr "Editar fuentes de software y preferencias"
-#~ msgid "Software Properties"
-#~ msgstr "Propiedades de software"
-
#~ msgid "Ubuntu Update Manager"
#~ msgstr "Gestor de actualizaciones de Ubuntu"
diff --git a/po/fi.po b/po/fi.po
index 9765f20c..1d2a29c4 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-12 16:40+0200\n"
+"POT-Creation-Date: 2006-04-13 12:19+0200\n"
"PO-Revision-Date: 2006-04-10 07:26+0000\n"
"Last-Translator: Timo Jyrinki \n"
"Language-Team: Finnish \n"
@@ -26,30 +26,30 @@ msgstr "%s päivän välein"
msgid "After %s days"
msgstr "%s päivän jälkeen"
-#: ../SoftwareProperties/SoftwareProperties.py:413
+#: ../SoftwareProperties/SoftwareProperties.py:421
msgid "Import key"
msgstr "Tuo avain"
-#: ../SoftwareProperties/SoftwareProperties.py:423
+#: ../SoftwareProperties/SoftwareProperties.py:431
msgid "Error importing selected file"
msgstr "Virhe tuotaessa valittua avainta"
-#: ../SoftwareProperties/SoftwareProperties.py:424
+#: ../SoftwareProperties/SoftwareProperties.py:432
msgid "The selected file may not be a GPG key file or it might be corrupt."
msgstr ""
"Valittu tiedosto ei ole kelvollinen GPG-avaintiedosto, tai se on "
"vahingoittunut."
-#: ../SoftwareProperties/SoftwareProperties.py:436
+#: ../SoftwareProperties/SoftwareProperties.py:444
msgid "Error removing the key"
msgstr "Virhe poistettaessa avainta"
-#: ../SoftwareProperties/SoftwareProperties.py:437
+#: ../SoftwareProperties/SoftwareProperties.py:445
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:478
+#: ../SoftwareProperties/SoftwareProperties.py:486
#, python-format
msgid ""
"