From 81af9bae57e5f4b9ed55cd4356f82880ae7b500f Mon Sep 17 00:00:00 2001 From: Sebastian Heinlein Date: Wed, 22 Feb 2006 00:44:45 +0100 Subject: * Add a prototype of a sources.list installer. double click on a sources.list to get the channels merged into your current channel list --- setup.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 6395dd28..ded9c30e 100755 --- a/setup.py +++ b/setup.py @@ -39,7 +39,8 @@ setup(name='update-manager', ], scripts=[ 'gnome-software-properties', - 'update-manager' + 'update-manager', + 'add-software-channel' ], data_files=[ ('share/update-manager/glade', @@ -56,6 +57,12 @@ setup(name='update-manager', ), ('share/pixmaps', ["data/update-manager.png"] + ), + ('share/applications', + ["data/mime/add-software-channel.desktop"] + ), + ('share/mime/packages', + ["data/mime/apt.xml"] ) ] + I18NFILES + HELPFILES, ) -- cgit v1.2.3 From 28d131b543b638589c243abb6b1c247c8c653321 Mon Sep 17 00:00:00 2001 From: Sebastian Heinlein Date: Thu, 23 Feb 2006 13:24:40 +0100 Subject: * Move the mime type handling of sources.lists to gnome-software-properties * Renamed mime type to text/x-apt-sources-list * Remove all depricated add-software-channel code * Add a schemas file for update-manager * Use dh_gconf * Software Properties: - Move the channel buttons to the bottom of the notebook to get more vertical space for the channels - Set a global window icon for SoftwareProperties and its children - Add drag and drop support for sources.list on the treeview_sources - Allow to enable and disable channels - Do not use so much space for rendering the sources lista - Use the comment instead of the URI in the channel list if we don't find a nice name - Show the type only on source channels - "binary" is too technial - Add some small sanity checks to aptsources - Use single quotes in the predefind distru names * Dialog add: - merge the custom and the default add dialog - sanity checks for the custom apt line, that do not allow to add a wrong one * Update Manager: - add an option to hide the reload reminder --- SoftwareProperties/SoftwareProperties.py | 107 +++-- SoftwareProperties/aptsources.py | 32 +- SoftwareProperties/dialog_add.py | 89 ++-- UpdateManager/UpdateManager.py | 10 +- add-software-channel | 90 ----- data/SoftwareProperties.glade | 26 +- data/SoftwareProperties.gladep | 8 - data/SoftwarePropertiesDialogs.glade | 606 +++++++++++++++++++++------- data/UpdateManager.glade | 65 ++- data/gnome-software-properties.desktop.in | 3 +- data/gnome-software-properties.gladep | 8 - data/mime/add-software-channel.applications | 9 - data/mime/add-software-channel.desktop | 11 - data/mime/add-software-channel.desktop.in | 11 - data/mime/apt.xml | 2 +- data/update-manager.gladep | 8 - data/update-manager.schemas.in | 52 +++ debian/rules | 1 + gnome-software-properties | 7 +- po/POTFILES.in | 2 + po/bg.po | 120 ++++-- po/da.po | 98 ++++- po/de.po | 122 ++++-- po/el.po | 98 ++++- po/en_CA.po | 116 +++++- po/en_GB.po | 116 +++++- po/es.po | 122 ++++-- po/fi.po | 120 ++++-- po/fr.po | 120 ++++-- po/gl.po | 122 ++++-- po/he.po | 104 ++++- po/hu.po | 114 +++++- po/it.po | 122 ++++-- po/ja.po | 116 +++++- po/lt.po | 120 +++++- po/mk.po | 118 +++++- po/nb.po | 116 +++++- po/ne.po | 116 +++++- po/nl.po | 96 ++++- po/no.po | 116 +++++- po/pa.po | 99 ++++- po/pl.po | 116 +++++- po/pt_BR.po | 119 +++++- po/ro.po | 98 ++++- po/rw.po | 124 ++++-- po/sv.po | 119 ++++-- po/uk.po | 118 +++++- po/update-manager.pot | 96 ++++- po/vi.po | 114 +++++- po/xh.po | 98 ++++- po/zh_CN.po | 98 ++++- po/zh_HK.po | 116 +++++- po/zh_TW.po | 116 +++++- setup.py | 15 +- 54 files changed, 3869 insertions(+), 1016 deletions(-) delete mode 100755 add-software-channel delete mode 100644 data/SoftwareProperties.gladep delete mode 100644 data/gnome-software-properties.gladep delete mode 100644 data/mime/add-software-channel.applications delete mode 100644 data/mime/add-software-channel.desktop delete mode 100644 data/mime/add-software-channel.desktop.in delete mode 100644 data/update-manager.gladep create mode 100644 data/update-manager.schemas.in (limited to 'setup.py') diff --git a/SoftwareProperties/SoftwareProperties.py b/SoftwareProperties/SoftwareProperties.py index 690b30dd..0e9a0f0d 100644 --- a/SoftwareProperties/SoftwareProperties.py +++ b/SoftwareProperties/SoftwareProperties.py @@ -37,6 +37,7 @@ from UpdateManager.Common.SimpleGladeApp import SimpleGladeApp import aptsources import dialog_add import dialog_edit +import dialog_sources_list from dialog_apt_key import apt_key from utils import * @@ -50,11 +51,22 @@ CONF_MAP = { "max_size" : "APT::Archives::MaxSize", "max_age" : "APT::Archives::MaxAge" } - +( + COLUMN_ACTIVE, + COLUMN_DESC +) = range(2) class SoftwareProperties(SimpleGladeApp): - def __init__(self, datadir=None, options=None, parent=None): + def __init__(self, datadir=None, options=None, file=None, parent=None): + + # set a default window icon + icons = gtk.icon_theme_get_default() + try: + logo=icons.load_icon("update-manager", 48, 0) + gtk.window_set_default_icon_list(logo) + except: + pass # FIXME: some saner way is needed here if datadir == None: @@ -64,6 +76,8 @@ class SoftwareProperties(SimpleGladeApp): None, domain="update-manager") self.modified = False + self.file = file + #self.gnome_program = gnome.init("Software Properties", "0.41") #self.gconfclient = gconf.client_get_default() @@ -170,25 +184,72 @@ class SoftwareProperties(SimpleGladeApp): self.init_keyslist() self.reload_keyslist() + # drag and drop support for sources.list + self.treeview_sources.drag_dest_set(gtk.DEST_DEFAULT_ALL, \ + [('text/uri-list',0, 0)], \ + gtk.gdk.ACTION_COPY) + self.treeview_sources.connect("drag_data_received",\ + self.on_sources_drag_data_received) + + + # call the add sources.list dialog if we got a file from the cli + if self.file != None: + self.open_file(file) + + def open_file(self, file): + """Show an confirmation for adding the channels of the specified file""" + dialog = dialog_sources_list.AddSourcesList(self.window_main, + self.sourceslist, + self.datadir, + file) + res = dialog.run() + if res == gtk.RESPONSE_OK: + self.reload_sourceslist() + self.modified = True + + def on_sources_drag_data_received(self, widget, context, x, y, + selection, target_type, timestamp): + """Extract the dropped file pathes and open the first file, only""" + uri = selection.data.strip() + uri_splitted = uri.split() + if len(uri_splitted)>0: + self.open_file(uri_splitted[0]) + def hide(self): self.window_main.hide() def init_sourceslist(self): - self.source_store = gtk.ListStore(str, bool, gobject.TYPE_PYOBJECT) + self.source_store = gtk.ListStore(gobject.TYPE_BOOLEAN, + gobject.TYPE_STRING, + gobject.TYPE_PYOBJECT) self.treeview_sources.set_model(self.source_store) - tr = gtk.CellRendererText() - tr.set_property("xpad", 10) - tr.set_property("ypad", 10) - - source_col = gtk.TreeViewColumn("Description", tr, markup=LIST_MARKUP) - source_col.set_max_width(500) - - self.treeview_sources.append_column(source_col) + cell_desc = gtk.CellRendererText() + #cell_desc.set_property("xpad", 10) + #cell_desc.set_property("ypad", 10) + col_desc = gtk.TreeViewColumn(_("Software Channel"), cell_desc, + markup=COLUMN_DESC) + col_desc.set_max_width(500) + + cell_toggle = gtk.CellRendererToggle() + cell_toggle.connect('toggled', self.on_channel_toggled) + col_active = gtk.TreeViewColumn(_("Active"), cell_toggle, + active=COLUMN_ACTIVE) + + self.treeview_sources.append_column(col_active) + self.treeview_sources.append_column(col_desc) self.sourceslist = aptsources.SourcesList() self.matcher = aptsources.SourceEntryMatcher() + def on_channel_toggled(self, cell_toggle, path): + """Enable or disable the selected channel""" + iter = self.source_store.get_iter((int(path),)) + source_entry = self.source_store.get_value(iter, LIST_ENTRY_OBJ) + source_entry.disabled = not source_entry.disabled + self.reload_sourceslist() + self.modified = True + def init_keyslist(self): self.keys_store = gtk.ListStore(str) self.treeview2.set_model(self.keys_store) @@ -201,16 +262,14 @@ class SoftwareProperties(SimpleGladeApp): def reload_sourceslist(self): self.source_store.clear() for source in self.sourceslist.list: - if source.invalid or source.disabled: + if source.invalid: continue - (a_type, dist, comps) = self.matcher.match(source) - - contents = "" - if source.comment != "": - contents += "%s\n\n" % (source.comment) - contents +="%s (%s) \n%s" % (dist,a_type, comps) + (nice_type, nice_dist, nice_comps) = self.matcher.match(source) - self.source_store.append([contents, not source.disabled, source]) + contents = "%s%s" % (nice_dist, nice_comps) + if source.type == "deb-src": + contents = "%s - %s %s" % (nice_dist, nice_type, nice_comps) + self.source_store.append([not source.disabled, contents, source]) def reload_keyslist(self): self.keys_store.clear() @@ -220,11 +279,11 @@ class SoftwareProperties(SimpleGladeApp): def on_combobox_update_interval_changed(self, widget): i = self.combobox_update_interval.get_active() if i != -1: - value = self.combobox_interval_mapping[i] - # Only write the key if it has changed - if not value == apt_pkg.Config.FindI(CONF_MAP["autoupdate"]): - apt_pkg.Config.Set(CONF_MAP["autoupdate"], str(value)) - self.write_config() + value = self.combobox_interval_mapping[i] + # Only write the key if it has changed + if not value == apt_pkg.Config.FindI(CONF_MAP["autoupdate"]): + apt_pkg.Config.Set(CONF_MAP["autoupdate"], str(value)) + self.write_config() def on_opt_autoupdate_toggled(self, widget): if self.checkbutton_auto_update.get_active(): diff --git a/SoftwareProperties/aptsources.py b/SoftwareProperties/aptsources.py index 03459adf..f751cf7c 100644 --- a/SoftwareProperties/aptsources.py +++ b/SoftwareProperties/aptsources.py @@ -102,8 +102,16 @@ class SourceEntry: line = line[:i] # source is ok, split it and see what we have pieces = self.mysplit(line) + # Sanity check + if len(pieces) < 3: + self.invalid = True + return # Type, deb or deb-src self.type = string.strip(pieces[0]) + # Sanity check + if self.type not in ("deb", "deb-src"): + self.invalid = True + return # URI self.uri = string.strip(pieces[1]) # distro and components (optional) @@ -326,7 +334,7 @@ class SourceEntryMatcher: _ = gettext.gettext self.type_list = [] self.type_list.append(self.MatchType("^deb$",_("Binary"))) - self.type_list.append(self.MatchType("^deb-src$",_("Source"))) + self.type_list.append(self.MatchType("^deb-src$",_("Source Code"))) self.dist_list = [] @@ -338,7 +346,7 @@ class SourceEntryMatcher: # CDs self.dist_list.append(self.MatchDist("cdrom:\[Ubuntu.*5.10", ".*", - _("CD disk with Ubuntu 5.10 \"Breezy Badger\""), + _("CD disk with Ubuntu 5.10 'Breezy Badger'"), ubuntu_comps, ubuntu_comps_descr)) self.dist_list.append(self.MatchDist("cdrom:\[Ubuntu.*5.04", ".*", @@ -352,7 +360,7 @@ class SourceEntryMatcher: # Warty self.dist_list.append(self.MatchDist(".*archive.ubuntu.com/ubuntu", "^warty$", - "Ubuntu 4.10 \"Warty Warthog\"", + "Ubuntu 4.10 'Warty Warthog'", ubuntu_comps, ubuntu_comps_descr)) self.dist_list.append(self.MatchDist(".*security.ubuntu.com/ubuntu", "^warty-security$", @@ -377,7 +385,7 @@ class SourceEntryMatcher: ubuntu_comps, ubuntu_comps_descr)) self.dist_list.append(self.MatchDist(".*archive.ubuntu.com/ubuntu", "^hoary$", - "Ubuntu 5.04 \"Hoary Hedgehog\"", + "Ubuntu 5.04 'Hoary Hedgehog'", ubuntu_comps, ubuntu_comps_descr)) self.dist_list.append(self.MatchDist(".*archive.ubuntu.com/ubuntu", "^hoary-updates$", @@ -394,7 +402,7 @@ class SourceEntryMatcher: ubuntu_comps, ubuntu_comps_descr)) self.dist_list.append(self.MatchDist(".*archive.ubuntu.com/ubuntu", "^breezy$", - "Ubuntu 5.10 \"Breezy Badger\"", + "Ubuntu 5.10 'Breezy Badger'", ubuntu_comps, ubuntu_comps_descr)) self.dist_list.append(self.MatchDist(".*archive.ubuntu.com/ubuntu", "^breezy-updates$", @@ -411,7 +419,7 @@ class SourceEntryMatcher: ubuntu_comps, ubuntu_comps_descr)) self.dist_list.append(self.MatchDist(".*archive.ubuntu.com/ubuntu", "^dapper$", - "Ubuntu 6.04 \"Dapper Drake\"", + "Ubuntu 6.04 'Dapper Drake'", ubuntu_comps, ubuntu_comps_descr)) self.dist_list.append(self.MatchDist(".*archive.ubuntu.com/ubuntu", "^dapper-updates$", @@ -430,11 +438,11 @@ class SourceEntryMatcher: # dists by name self.dist_list.append(self.MatchDist(".*debian.org/debian", "^sarge$", - _("Debian 3.1 \"Sarge\""), + _("Debian 3.1 'Sarge'"), debian_comps, debian_comps_descr)) self.dist_list.append(self.MatchDist(".*debian.org/debian", "^woody$", - _("Debian 3.0 \"Woody\""), + _("Debian 3.0 'Woody'"), debian_comps, debian_comps_descr)) # securtiy self.dist_list.append(self.MatchDist(".*security.debian.org", @@ -452,7 +460,7 @@ class SourceEntryMatcher: debian_comps, debian_comps_descr)) self.dist_list.append(self.MatchDist(".*debian.org/debian", "^unstable$", - _("Debian Unstable \"Sid\""), + _("Debian Unstable 'Sid'"), debian_comps, debian_comps_descr)) # non-us @@ -477,6 +485,10 @@ class SourceEntryMatcher: # some sane defaults first type_description = source.type dist_description = source.uri + " " + source.dist + # if there is a comment use it instead of the url + if source.comment: + dist_description = source.comment + comp_description = "" for c in source.comps: comp_description = comp_description + " " + c @@ -488,7 +500,7 @@ class SourceEntryMatcher: for d in self.dist_list: #print "'%s'" %source.uri - if re.match(d.uri, source.uri) and re.match(d.dist,source.dist): + if re.match(d.uri, source.uri) and re.match(d.dist, source.dist): dist_description = d.description comp_description = "" for c in source.comps: diff --git a/SoftwareProperties/dialog_add.py b/SoftwareProperties/dialog_add.py index 9b384623..effd9f24 100644 --- a/SoftwareProperties/dialog_add.py +++ b/SoftwareProperties/dialog_add.py @@ -45,16 +45,58 @@ class dialog_add: self.main = widget = self.gladexml.get_widget("dialog_add") self.main.set_transient_for(self.parent) - combo = self.gladexml.get_widget("combobox_what") + # Setup the official channel widgets + self.combo = self.gladexml.get_widget("combobox_what") self.gladexml.signal_connect("on_combobox_what_changed", self.on_combobox_what_changed, None) - # combox box needs cell = gtk.CellRendererText() - combo.pack_start(cell, True) - combo.add_attribute(cell, 'text', 0) - self.fill_combo(combo) - self.gladexml.signal_connect("on_button_custom_clicked", - self.on_button_custom_clicked, None) + self.combo.pack_start(cell, True) + self.combo.add_attribute(cell, 'text', 0) + self.fill_combo(self.combo) + # Setup the custom channel widgets + self.entry = self.gladexml.get_widget("entry_source_line") + self.gladexml.signal_connect("on_entry_source_line_changed", + self.check_line) + + # Setup the toggle action + self.radio_official = self.gladexml.get_widget("radiobutton_official") + self.radio_custom = self.gladexml.get_widget("radiobutton_custom") + self.button_add = self.gladexml.get_widget("button_add_channel") + self.gladexml.signal_connect("on_radiobutton_custom_toggled", + self.on_radio_custom_toggled) + self.gladexml.signal_connect("on_radiobutton_official_toggled", + self.on_radio_official_toggled) + + # We start with the official channels: + self.official = True + self.radio_custom.toggled() + + def check_line(self, *args): + """Check for a valid apt line""" + if self.official == True: + self.button_add.set_sensitive(True) + return + + line = self.entry.get_text() + "\n" + source_entry = aptsources.SourceEntry(line) + if source_entry.invalid == True or source_entry.disabled == True: + self.button_add.set_sensitive(False) + else: + self.button_add.set_sensitive(True) + + + def on_radio_custom_toggled(self, radio): + state = radio.get_active() + self.entry.set_sensitive(state) + self.check_line() + + def on_radio_official_toggled(self, radio): + state = radio.get_active() + self.combo.set_sensitive(state) + for check in self.comps: + check.set_sensitive(state) + self.official = state + self.button_add.set_sensitive(state) def fill_combo(self,combo): liststore = gtk.ListStore(gobject.TYPE_STRING,gobject.TYPE_PYOBJECT) @@ -72,25 +114,14 @@ class dialog_add: (name, template) = liststore.get(a_iter, 0,1) self.selected = template comps = template.comps + self.comps=[] for c in comps: checkbox = gtk.CheckButton(c.description) checkbox.set_active(c.on_by_default) checkbox.set_data("name",c.name) vbox.pack_start(checkbox) checkbox.show() - - def on_button_custom_clicked(self, widget, data): - #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)) - self.main.response(res) + self.comps.append(checkbox) def get_enabled_comps(self, checkbutton): if checkbutton.get_active(): @@ -100,12 +131,16 @@ class dialog_add: res = self.main.run() if res == gtk.RESPONSE_OK: # add repository - 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) + if self.official == True: + 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) + else: + line = self.entry.get_text() + "\n" + self.sourceslist.list.append(aptsources.SourceEntry(line)) self.main.hide() return res diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 8b757bd1..e6394223 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -28,6 +28,7 @@ pygtk.require('2.0') import gtk import gtk.gdk import gtk.glade +import gconf import gobject import apt import apt_pkg @@ -40,7 +41,6 @@ import os.path import urllib2 import re import tempfile -import gconf import pango import subprocess import pwd @@ -290,6 +290,10 @@ class UpdateManager(SimpleGladeApp): self.restore_state() + def on_checkbutton_reminder_toggled(self, checkbutton): + self.gconfclient.set_bool("/apps/update-manager/remind_reload", + not checkbutton.get_active()) + def close(self, widget, data=None): if self.window_main.get_property("sensitive") is False: return True @@ -812,6 +816,10 @@ class UpdateManager(SimpleGladeApp): def check_auto_update(self): # Check if automatic update is enabled. If not show a dialog to inform # the user about the need of manual "reloads" + remind = self.gconfclient.get_bool("/apps/update-manager/remind_reload") + if remind == False: + return + update_days = apt_pkg.Config.FindI("APT::Periodic::Update-Package-Lists") if update_days < 1: self.dialog_manual_update.set_transient_for(self.window_main) diff --git a/add-software-channel b/add-software-channel deleted file mode 100755 index 348e0f24..00000000 --- a/add-software-channel +++ /dev/null @@ -1,90 +0,0 @@ -#!/usr/bin/env python -import pygtk -import gtk -import gtk.glade -import gobject -import os -from optparse import OptionParser -from SoftwareProperties.aptsources import SourcesList, SourceEntryMatcher -from gettext import gettext as _ -import gettext -import urllib - -class AddSoftwareChannel: - def __init__(self, data, file): - icons = gtk.icon_theme_get_default() - logo_pixbuf=icons.load_icon("gnome-settings-default-applications", - 32, 0) - gtk.window_set_default_icon_list(logo_pixbuf) - - self.glade = gtk.glade.XML(os.path.join(data, - "dialog_add_channels.glade")) - self.glade.signal_autoconnect(self) - self.dialog = self.glade.get_widget("dialog_add_channel") - self.label = self.glade.get_widget("label_sources") - self.button_add = self.glade.get_widget("button_add") - self.button_cancel = self.glade.get_widget("button_cancel") - self.treeview = self.glade.get_widget("treeview_sources") - - self.dialog.realize() - self.dialog.window.set_functions(gtk.gdk.FUNC_MOVE) - - # Setup the treeview - self.store = gtk.ListStore(gobject.TYPE_STRING) - self.treeview.set_model(self.store) - cell = gtk.CellRendererText() - column = gtk.TreeViewColumn("Software Channel", cell, markup=0) - column.set_max_width(500) - self.treeview.append_column(column) - - # Parse the source.list file - self.sources = SingleSourcesList(self.format_uri(file)) - self.matcher = SourceEntryMatcher() - for source in self.sources.list: - if source.invalid or source.disabled: - continue - (a_type, dist, comps) = self.matcher.match(source) - line = "%s (%s) \n%s" %\ - self.matcher.match(source) - self.store.append([line]) - - header = gettext.ngettext("Add the following software channel?", - "Add the following software channels?", - len(self.sources.list)) - body = _("You can install software from a channel. Nice, or?") - self.label.set_markup("%s\n\n%s" % (header, body)) - self.button_add.set_use_underline(True) - self.button_add.set_label(gettext.ngettext("_Add Channel", - "_Add Channels", - len(self.sources.list))) - - self.dialog.run() - self.dialog.destroy() - - def format_uri(self, uri): - path = urllib.url2pathname(uri) # escape special chars - path = path.strip('\r\n\x00') # remove \r\n and NULL - if path.startswith('file:\\\\\\'): # windows - path = path[8:] # 8 is len('file:///') - elif path.startswith('file://'): #nautilus, rox - path = path[7:] # 7 is len('file://') - elif path.startswith('file:'): # xffm - path = path[5:] # 5 is len('file:') - return path - -class SingleSourcesList(SourcesList): - def __init__(self, file): - self.list = [] - self.load(file) - -def main(file): -# file="sources.list" - print file - data = "/usr/share/update-manager/glade" - dialog = AddSoftwareChannel(data, file) - -if __name__ == '__main__': - parser = OptionParser() - (options, args) = parser.parse_args() - main(args[0]) - diff --git a/data/SoftwareProperties.glade b/data/SoftwareProperties.glade index 89a56f11..27f53404 100644 --- a/data/SoftwareProperties.glade +++ b/data/SoftwareProperties.glade @@ -68,7 +68,7 @@ 0 - + True False 6 @@ -104,9 +104,9 @@ - + True - GTK_BUTTONBOX_START + False 6 @@ -120,6 +120,11 @@ True + + 0 + False + False + @@ -133,6 +138,11 @@ True + + 0 + False + False + @@ -146,6 +156,11 @@ True + + 0 + False + False + @@ -221,6 +236,11 @@ + + 0 + False + False + diff --git a/data/SoftwareProperties.gladep b/data/SoftwareProperties.gladep deleted file mode 100644 index 183077ba..00000000 --- a/data/SoftwareProperties.gladep +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - FALSE - diff --git a/data/SoftwarePropertiesDialogs.glade b/data/SoftwarePropertiesDialogs.glade index a9e13d5e..c98cc636 100644 --- a/data/SoftwarePropertiesDialogs.glade +++ b/data/SoftwarePropertiesDialogs.glade @@ -5,7 +5,7 @@ 6 - Add repository... + Add Channel GTK_WINDOW_TOPLEVEL GTK_WIN_POS_NONE True @@ -18,33 +18,19 @@ GDK_GRAVITY_NORTH_WEST True False - True + False True False - 6 + 12 True GTK_BUTTONBOX_END - - - True - True - True - _Custom - True - GTK_RELIEF_NORMAL - True - -6 - - - - True @@ -59,13 +45,13 @@ - + True True True True True - gtk-ok + gtk-add True GTK_RELIEF_NORMAL True @@ -82,42 +68,156 @@ - + + 6 True False 12 - + True - <b>Repository</b> - False - True - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - + False + 6 - - - True - False - True - + + + True + True + GTK_RELIEF_NORMAL + True + False + False + True + + + + + True + <b>Official Ubuntu Channel</b> + False + True + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + + + 0 + False + False + + + + + + True + False + 0 + + + + True + + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + False + 6 + + + + True + False + True + + + + 0 + True + True + + + + + + True + + + 0 + False + False + + + + + + True + False + 6 + + + + + + + + + + + + + + + 0 + True + True + + + + + 0 + True + True + + + + + 0 + True + True + + 0 @@ -127,46 +227,145 @@ - - True - <b>Components</b> - False - True - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - + True False 6 - - + + True + True + GTK_RELIEF_NORMAL + True + False + False + True + radiobutton_official + - - + + + True + <b>Custom Channel</b> + False + True + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + + + 0 + False + False + - + + True + False + 0 + + + + True + + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + False + 10 + + + + True + APT line: + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + The APT line contains the type, location and components of a channel, for example 'deb http://ftp.debian.org sarge main' + True + True + True + 0 + + True + * + True + + + + 0 + True + True + + + + + 0 + True + True + + + + + 0 + True + True + @@ -182,10 +381,6 @@ True - - - - @@ -374,60 +569,7 @@ The APT line contains the type, location and content of a repository, for exampl - - True - False - 10 - - - - True - APT line: - False - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - True - True - True - True - 0 - - True - * - True - - - 0 - True - True - - - - - 0 - False - True - + @@ -463,7 +605,7 @@ The APT line contains the type, location and content of a repository, for exampl GDK_GRAVITY_NORTH_WEST True False - True + False @@ -1913,4 +2055,192 @@ You can add and remove authentication keys in this dialog. A key makes it possib + + 6 + + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + False + False + True + False + False + GDK_WINDOW_TYPE_HINT_DIALOG + GDK_GRAVITY_NORTH_WEST + True + False + False + + + + True + False + 12 + + + + True + GTK_BUTTONBOX_END + + + + True + True + True + gtk-cancel + True + GTK_RELIEF_NORMAL + True + -6 + + + + + + True + True + True + GTK_RELIEF_NORMAL + True + -5 + + + + True + gtk-add + 4 + 0.5 + 0.5 + 0 + 0 + + + + + + + + True + True + True + gtk-close + True + GTK_RELIEF_NORMAL + True + -7 + + + + + 0 + False + True + GTK_PACK_END + + + + + + 6 + True + False + 12 + + + + True + gtk-dialog-question + 6 + 0 + 0 + 0 + 0 + + + 0 + False + True + + + + + + True + False + 12 + + + + True + + False + False + GTK_JUSTIFY_LEFT + True + False + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + 200 + True + True + GTK_POLICY_AUTOMATIC + GTK_POLICY_AUTOMATIC + GTK_SHADOW_IN + GTK_CORNER_TOP_LEFT + + + + True + True + False + True + False + True + False + False + False + + + + + 0 + True + True + + + + + 0 + True + True + + + + + 0 + True + True + + + + + + diff --git a/data/UpdateManager.glade b/data/UpdateManager.glade index 400a4f75..c94edff6 100644 --- a/data/UpdateManager.glade +++ b/data/UpdateManager.glade @@ -1388,25 +1388,58 @@ Need to get the changes from the central server - + True - True - <b><big>You need to manually reload the latest information about updates</big></b> + False + 12 + + + + True + True + <b><big>You need to manually reload the latest information about updates</big></b> Your system does not check for updates automatically. You can configure this behavior in "System" -> "Administration" -> "Software Properties". - False - True - GTK_JUSTIFY_LEFT - True - True - 0 - 0 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 + False + True + GTK_JUSTIFY_LEFT + True + True + 0 + 0 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + True + _Hide this information in the future + True + GTK_RELIEF_NORMAL + True + False + False + True + + + + 0 + False + False + + 0 diff --git a/data/gnome-software-properties.desktop.in b/data/gnome-software-properties.desktop.in index c626869a..bf570533 100644 --- a/data/gnome-software-properties.desktop.in +++ b/data/gnome-software-properties.desktop.in @@ -1,12 +1,13 @@ [Desktop Entry] _Name=Software Properties _GenericName=Software Properties -_Comment=Edit software sources and settings +_Comment=Configure software channels and internet updates Exec=gksu /usr/bin/gnome-software-properties Icon=update-manager.png Terminal=false MultipleArgs=false Type=Application Encoding=UTF-8 +MimeType=text/x-apt-sources-list Categories=Application;System;Settings; X-KDE-SubstituteUID=true diff --git a/data/gnome-software-properties.gladep b/data/gnome-software-properties.gladep deleted file mode 100644 index 183077ba..00000000 --- a/data/gnome-software-properties.gladep +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - FALSE - diff --git a/data/mime/add-software-channel.applications b/data/mime/add-software-channel.applications deleted file mode 100644 index 2b38d9b7..00000000 --- a/data/mime/add-software-channel.applications +++ /dev/null @@ -1,9 +0,0 @@ - -add-software-channel - command=add-software-channel - name=Add Software Channel - can_open_multiple_files=false - expects_uris=false - requires_terminal=false - mime_types=text/x-apt-sources - diff --git a/data/mime/add-software-channel.desktop b/data/mime/add-software-channel.desktop deleted file mode 100644 index fa61fe81..00000000 --- a/data/mime/add-software-channel.desktop +++ /dev/null @@ -1,11 +0,0 @@ -[Desktop Entry] -Name=Add Software Channel -GenericName=Add Software Channel -Exec=/usr/bin/add-software-channel -Icon=update-manager.png -Terminal=false -Hide=true -Type=Application -Encoding=UTF-8 -Categories=Application;System; -MimeType=text/x-apt-sources; diff --git a/data/mime/add-software-channel.desktop.in b/data/mime/add-software-channel.desktop.in deleted file mode 100644 index bc8b1f7a..00000000 --- a/data/mime/add-software-channel.desktop.in +++ /dev/null @@ -1,11 +0,0 @@ -[Desktop Entry] -_Name=Add Software Channel -_GenericName=Add Software Channel -Exec=/usr/bin/add-software-channel -Icon=update-manager.png -Terminal=false -Visible=false -Type=Application -Encoding=UTF-8 -Categories=Application;System;Settings; -MimeType=text/x-apt-sources diff --git a/data/mime/apt.xml b/data/mime/apt.xml index 33592bdd..d7332632 100644 --- a/data/mime/apt.xml +++ b/data/mime/apt.xml @@ -1,6 +1,6 @@ - + Software Channel List diff --git a/data/update-manager.gladep b/data/update-manager.gladep deleted file mode 100644 index 183077ba..00000000 --- a/data/update-manager.gladep +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - FALSE - diff --git a/data/update-manager.schemas.in b/data/update-manager.schemas.in new file mode 100644 index 00000000..06308871 --- /dev/null +++ b/data/update-manager.schemas.in @@ -0,0 +1,52 @@ + + + + + /schemas/apps/update-manager/remind_reload + /apps/update-manager/remind_reload + update-manager + bool + True + + + 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. + + + + + /schemas/apps/update-manager/show_details + /apps/update-manager/show_details + update-manager + bool + False + + + Show details of an update + + Stores the state of the expander that contains the + list of changs and the description + + + + + /schemas/apps/update-manager/window_size + /apps/update-manager/window_size + update-manager + pair + int + int + + + The window size + + Stores the size of the update-manager dialog + + + + + + diff --git a/debian/rules b/debian/rules index a8da2355..3753e9f7 100755 --- a/debian/rules +++ b/debian/rules @@ -64,6 +64,7 @@ binary-arch: build install dh_scrollkeeper dh_installmime dh_desktop + dh_gconf dh_installexamples # dh_install # dh_installmenu diff --git a/gnome-software-properties b/gnome-software-properties index a8074f7e..2e1d5da6 100644 --- a/gnome-software-properties +++ b/gnome-software-properties @@ -73,6 +73,9 @@ if __name__ == "__main__": data_dir="/usr/share/update-manager/" #data_dir="/tmp/xxx/share/update-manager/" - app = SoftwareProperties.SoftwareProperties(data_dir, options) + file = None + if len(args) > 0: + file = args[0] + app = SoftwareProperties.SoftwareProperties(data_dir, options, file) app.run() - sys.exit(app.modified) \ No newline at end of file + sys.exit(app.modified) diff --git a/po/POTFILES.in b/po/POTFILES.in index 12a33a6d..fc588621 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -1,6 +1,7 @@ [encoding: UTF-8] data/SoftwareProperties.glade SoftwareProperties/SoftwareProperties.py +SoftwareProperties/dialog_sources_list.py DistUpgrade/DistUpgradeCache.py DistUpgrade/DistUpgradeControler.py DistUpgrade/DistUpgradeViewGtk.py @@ -9,6 +10,7 @@ DistUpgrade/dist-upgrade.py DistUpgrade/DistUpgrade.glade data/UpdateManager.glade 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 diff --git a/po/bg.po b/po/bg.po index d9614dc1..ac016704 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update manager\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-07-22 19:24+0300\n" "Last-Translator: Rostislav \"zbrox\" Raykov \n" "Language-Team: Bulgarian \n" @@ -91,39 +91,50 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Обновления на софтуера" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "Грешка при внасяне на избрания файл" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "Грешка при премахване на ключа" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Ключа, който сте избрали, не може да бъде премахнат. Докладвайте това като " "грешка." -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -131,14 +142,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Обновления на софтуера" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -596,11 +637,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "Инсталиране на обновленията..." -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Презареждане" @@ -613,6 +658,35 @@ msgstr "Показване на наличните обновления и из msgid "Update Manager" msgstr "Управление на обновленията" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -722,6 +796,17 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "" +#~ "Автоматичен подписващ ключ за архива на Ubuntu " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "" +#~ "Автоматичен подписващ ключ за дисковете на Ubuntu " + +#~ msgid "Choose a key-file" +#~ msgstr "Избор на ключов файл" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Грешка при премахване на ключа" @@ -940,17 +1025,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian Non-US (Testing)" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "" -#~ "Автоматичен подписващ ключ за архива на Ubuntu " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "" -#~ "Автоматичен подписващ ключ за дисковете на Ubuntu " - -#~ msgid "Choose a key-file" -#~ msgstr "Избор на ключов файл" - #~ msgid "Your system is up-to-date!" #~ msgstr "Програмите са обновени до последните версии!" diff --git a/po/da.po b/po/da.po index 2ee78b0e..6dae46de 100644 --- a/po/da.po +++ b/po/da.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-03-28 11:31+0200\n" "Last-Translator: Martin Willemoes Hansen \n" "Language-Team: Danish \n" @@ -91,37 +91,48 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Opdateringer" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../SoftwareProperties/SoftwareProperties.py:424 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -129,14 +140,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Opdateringer" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -587,11 +628,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "_Installér" -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Genindlæs" @@ -604,6 +649,35 @@ msgstr "Vis tilgængelige opgraderinger og vælg hvilke der skal installeres" msgid "Update Manager" msgstr "Opdateringshåndtering" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format diff --git a/po/de.po b/po/de.po index 4a29228a..d91330f1 100644 --- a/po/de.po +++ b/po/de.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-04-02 08:46+0200\n" "Last-Translator: Frank Arnold \n" "Language-Team: German GNOME Translations \n" @@ -94,41 +94,52 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Software-Aktualisierungen" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "Fehler beim Importieren der gewählten Datei" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../SoftwareProperties/SoftwareProperties.py:424 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" "Die gewählte Datei ist möglicherweise keine GPG-Schlüsseldatei oder ist " "beschädigt." -#: ../SoftwareProperties/SoftwareProperties.py:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "Fehler beim Entfernen des Schlüssels" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Der gewählte Schlüssel konnte nicht entfernt werden. Bitte erstellen Sie " "hierfür einen Fehlerbericht." -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -136,14 +147,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Software-Aktualisierungen" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -606,12 +647,16 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "_Installieren" # »Aktualisieren« könnte hier verwirrend sein -fa- -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Neu laden" @@ -624,6 +669,35 @@ msgstr "Verfügbare Aktualisierungen anzeigen und zu installierende auswählen" msgid "Update Manager" msgstr "Aktualisierungsverwaltung" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -733,6 +807,18 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "" +#~ "Automatischer Signaturschlüssel des Ubuntu-Archivs " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "" +#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image " + +#~ msgid "Choose a key-file" +#~ msgstr "Eine Schlüsseldatei wählen" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Fehler beim Entfernen des Schlüssels" @@ -749,9 +835,6 @@ msgstr "" #~ msgid "Cancel downloading of the changelog" #~ msgstr "Herunterladen des Änderungsprotokolls abbrechen" -#~ msgid "Choose a key-file" -#~ msgstr "Eine Schlüsseldatei wählen" - #~ msgid "Packages to install:" #~ msgstr "Zu installierende Pakete:" @@ -1025,15 +1108,6 @@ msgstr "" #~ msgid "US export restricted software" #~ msgstr "Software mit US-Exportbeschränkungen" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "" -#~ "Automatischer Signaturschlüssel des Ubuntu-Archivs " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "" -#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image " - #~ msgid "Repositories changed" #~ msgstr "Geänderte Repositories" diff --git a/po/el.po b/po/el.po index b9b3a304..dbe06fbe 100644 --- a/po/el.po +++ b/po/el.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-03-05 14:33+0200\n" "Last-Translator: Kostas Papadimas \n" "Language-Team: Greek \n" @@ -89,37 +89,48 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Πηγές λογισμικού" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../SoftwareProperties/SoftwareProperties.py:424 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -127,14 +138,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Πηγές λογισμικού" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -575,10 +616,14 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 -msgid "_Install Updates" +msgid "_Hide this information in the future" msgstr "" #: ../data/UpdateManager.glade.h:23 +msgid "_Install Updates" +msgstr "" + +#: ../data/UpdateManager.glade.h:24 msgid "_Reload" msgstr "" @@ -590,6 +635,35 @@ msgstr "" msgid "Update Manager" msgstr "" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format diff --git a/po/en_CA.po b/po/en_CA.po index 22ca9fae..c438cbbb 100644 --- a/po/en_CA.po +++ b/po/en_CA.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-04-03 01:26-0500\n" "Last-Translator: Adam Weinberger \n" "Language-Team: Canadian English \n" @@ -92,38 +92,49 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Software Updates" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "Error importing selected file" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "Error removing the key" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../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:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -131,14 +142,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Software Updates" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -596,11 +637,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "_Install" -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Reload" @@ -613,6 +658,35 @@ msgstr "Show available updates and choose which to install" msgid "Update Manager" msgstr "Update Manager" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -722,6 +796,15 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "Ubuntu Archive Automatic Signing Key " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "Ubuntu CD Image Automatic Signing Key " + +#~ msgid "Choose a key-file" +#~ msgstr "Choose a key-file" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Error removing the key" @@ -738,9 +821,6 @@ msgstr "" #~ msgid "Cancel downloading of the changelog" #~ msgstr "Cancel downloading the ChangeLog" -#~ msgid "Choose a key-file" -#~ msgstr "Choose a key-file" - #~ msgid "Packages to install:" #~ msgstr "Packages to install:" @@ -1005,12 +1085,6 @@ msgstr "" #~ msgid "US export restricted software" #~ msgstr "US export restricted software" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "Ubuntu Archive Automatic Signing Key " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "Ubuntu CD Image Automatic Signing Key " - #~ msgid "Repositories changed" #~ msgstr "Repositories changed" diff --git a/po/en_GB.po b/po/en_GB.po index 66406d9c..f25a9fae 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-04-19 22:51-0400\n" "Last-Translator: Abigail Brady \n" "Language-Team: \n" @@ -94,38 +94,49 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Software Updates" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "Error importing selected file" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "Error removing the key" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../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:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -133,14 +144,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Software Updates" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -597,11 +638,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "Installing updates..." -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Reload" @@ -614,6 +659,35 @@ msgstr "Show available updates and choose which to install" msgid "Update Manager" msgstr "Update Manager" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -723,6 +797,15 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "Ubuntu Archive Automatic Signing Key " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "Ubuntu CD Image Automatic Signing Key " + +#~ msgid "Choose a key-file" +#~ msgstr "Choose a key-file" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Error removing the key" @@ -942,15 +1025,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian Non-US (Testing)" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "Ubuntu Archive Automatic Signing Key " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "Ubuntu CD Image Automatic Signing Key " - -#~ msgid "Choose a key-file" -#~ msgstr "Choose a key-file" - #~ msgid "Your system is up-to-date!" #~ msgstr "Your system is up-to-date!" diff --git a/po/es.po b/po/es.po index c1004ea2..aa3431c4 100644 --- a/po/es.po +++ b/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-04-04 15:00+0200\n" "Last-Translator: Jorge Bernal \n" "Language-Team: Spanish \n" @@ -95,41 +95,52 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Actualizaciones de software" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "Hubo un error al importar el fichero seleccionado" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "Hubo un error al quitar la clave" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../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:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -137,14 +148,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Actualizaciones de software" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -605,11 +646,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "_Instalar" -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Recargar" @@ -622,6 +667,35 @@ msgstr "Mostrar actualizaciones disponibles y elegir cuáles instalar" msgid "Update Manager" msgstr "Gestor de actualizaciones" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -731,6 +805,18 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "" +#~ "Clave de firmado automático del archivo de Ubuntu " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "" +#~ "Clave de firmado automático de las imágenes de CD de Ubuntu " +#~ "" + +#~ msgid "Choose a key-file" +#~ msgstr "Elija un fichero de clave" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Hubo un error al quitar la clave" @@ -747,9 +833,6 @@ msgstr "" #~ msgid "Cancel downloading of the changelog" #~ msgstr "Cancelar la descarga del informe de cambios" -#~ msgid "Choose a key-file" -#~ msgstr "Elija un fichero de clave" - #~ msgid "Packages to install:" #~ msgstr "Paquetes a instalar:" @@ -1020,15 +1103,6 @@ msgstr "" #~ msgid "US export restricted software" #~ msgstr "Software con restricciones de exportación estadounidenses" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "" -#~ "Clave de firmado automático del archivo de Ubuntu " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "" -#~ "Clave de firmado automático de las imágenes de CD de Ubuntu " -#~ "" - #~ msgid "Repositories changed" #~ msgstr "Hay cambios en los repositorios" diff --git a/po/fi.po b/po/fi.po index ea28febd..d18cc875 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-03-30 08:30+0200\n" "Last-Translator: Timo Jyrinki \n" "Language-Team: Finnish \n" @@ -91,38 +91,49 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Ohjelmapäivitykset" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "Virhe tuotaessa valittua avainta" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../SoftwareProperties/SoftwareProperties.py:424 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Valittua tedosto ei ole kelvollinen GPG:n avaintiedosto" -#: ../SoftwareProperties/SoftwareProperties.py:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "Virhe poistettaessa avainta" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../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:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -130,14 +141,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Ohjelmapäivitykset" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -594,11 +635,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "_Asenna" -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Päivitä" @@ -611,6 +656,35 @@ msgstr "Näytä saatavilla olevat päivitykset ja valitse asennettavat" msgid "Update Manager" msgstr "Päivitysten hallinta" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -720,6 +794,17 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "" +#~ "Ubuntu-arkiston automaattinen allekirjoitusavain " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "" +#~ "Ubuntun CD-vedosten automaattinen allekirjoitusavain " + +#~ msgid "Choose a key-file" +#~ msgstr "Valitse avaintiedosto" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Virhe poistettaessa avainta" @@ -736,9 +821,6 @@ msgstr "" #~ msgid "Cancel downloading of the changelog" #~ msgstr "Keskeytä muutosluettelon lataus" -#~ msgid "Choose a key-file" -#~ msgstr "Valitse avaintiedosto" - #~ msgid "Packages to install:" #~ msgstr "Asennettavat paketit:" @@ -997,14 +1079,6 @@ msgstr "" #~ msgid "US export restricted software" #~ msgstr "USA:sta vientirajoitetut ohjelmat" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "" -#~ "Ubuntu-arkiston automaattinen allekirjoitusavain " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "" -#~ "Ubuntun CD-vedosten automaattinen allekirjoitusavain " - #~ msgid "Repositories changed" #~ msgstr "Varastot muuttuneet" diff --git a/po/fr.po b/po/fr.po index fac40006..86fe3bbf 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.37.2\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-04-04 19:43+0200\n" "Last-Translator: \n" "Language-Team: French \n" @@ -92,41 +92,52 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Mises à jour des logiciels" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "Erreur lors du chargement du fichier sélectionné" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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 un clé GPG ou alors il est " "corrompu." -#: ../SoftwareProperties/SoftwareProperties.py:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "Erreur lors de la suppression de la clé" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../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é. Veuillez envoyer " "ceci comme étant un bug." -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -134,14 +145,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Mises à jour des logiciels" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -602,11 +643,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "_Installer" -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Recharger" @@ -619,6 +664,35 @@ msgstr "Montre les mises à jours disponibles et choisir celles à installer" msgid "Update Manager" msgstr "Gestionnaire de mises à jour" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -728,6 +802,17 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "" +#~ "Clé de signature automatique de l'archive Ubuntu " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "" +#~ "Clé de signature automatique des cédéroms Ubuntu " + +#~ msgid "Choose a key-file" +#~ msgstr "Choisir un fichier de clé" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Erreur lors de la suppression de la clé" @@ -744,9 +829,6 @@ msgstr "" #~ msgid "Cancel downloading of the changelog" #~ msgstr "Annuler le téléchargement du changelog" -#~ msgid "Choose a key-file" -#~ msgstr "Choisir un fichier de clé" - #~ msgid "Packages to install:" #~ msgstr "Paquets à installer :" @@ -1017,14 +1099,6 @@ msgstr "" #~ msgid "US export restricted software" #~ msgstr "Logiciel restreint à l'export (USA)" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "" -#~ "Clé de signature automatique de l'archive Ubuntu " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "" -#~ "Clé de signature automatique des cédéroms Ubuntu " - #~ msgid "Repositories changed" #~ msgstr "Les dépôts ont été modifiés" diff --git a/po/gl.po b/po/gl.po index 98ec55bd..299dff93 100644 --- a/po/gl.po +++ b/po/gl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-12-02 15:59+0100\n" "Last-Translator: Ignacio Casal Quinteiro \n" "Language-Team: Galego\n" @@ -91,41 +91,52 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Actualizacións de software" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "Erro importando o ficheiro seleccionado" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "Erro ao quitar a clave" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../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:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -133,14 +144,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Actualizacións de software" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -598,11 +639,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "Instalando actualizacións..." -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Recargar" @@ -615,6 +660,35 @@ msgstr "Amosar actualización dispoñibles e escoller cales instalar" msgid "Update Manager" msgstr "Xestor de actualizacións" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -724,6 +798,18 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "" +#~ "Clave de asinado automático do ficheiro de Ubuntu " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "" +#~ "Clave de asinado automático das imaxes de CD de Ubuntu " + +#~ msgid "Choose a key-file" +#~ msgstr "Escolla un ficheiro de clave" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Erro ao quitar a clave" @@ -924,18 +1010,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian Non-US (Probas)" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "" -#~ "Clave de asinado automático do ficheiro de Ubuntu " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "" -#~ "Clave de asinado automático das imaxes de CD de Ubuntu " - -#~ msgid "Choose a key-file" -#~ msgstr "Escolla un ficheiro de clave" - #~ msgid "Your system is up-to-date!" #~ msgstr "O seu sistema está actualizado!" diff --git a/po/he.po b/po/he.po index 6dcbb338..ac2b4658 100644 --- a/po/he.po +++ b/po/he.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-08-07 14:49+0300\n" "Last-Translator: Yuval Tanny\n" "Language-Team: Hebrew \n" @@ -94,37 +94,48 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "עדכוני תוכנה" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "שגיאה בייבוא קובץ נבחר" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "שגיאה בהסרת המפתח" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "לא ניתן להסיר את המפתח שבחרת. אנא דווח על זה כבאג." -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -132,14 +143,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "עדכוני תוכנה" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -591,11 +632,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "מתקין עדכונים..." -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "טען מחדש" @@ -608,6 +653,35 @@ msgstr "הראה עדכונים זמינים ובחר את מה להתקין" msgid "Update Manager" msgstr "מנהל עדכונים" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -717,6 +791,9 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Choose a key-file" +#~ msgstr "בחר בקובץ מפתח" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "שגיאה בהסרת המפתח" @@ -930,9 +1007,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "דביאן לא ארה\"ב (בדיקה)" -#~ msgid "Choose a key-file" -#~ msgstr "בחר בקובץ מפתח" - #~ msgid "Your system is up-to-date!" #~ msgstr "המערכת שלך מעודכנת!" diff --git a/po/hu.po b/po/hu.po index 21d56f42..1858468e 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-04-03 12:32+0200\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" @@ -93,38 +93,49 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Szoftverfrissítések" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "Hiba a kiválasztott fájl importálása közben" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "Hiba a kulcs eltávolítása közben" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../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:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -132,14 +143,42 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Szoftverfrissítések" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -594,11 +633,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "_Telepítés" -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Újratöltés" @@ -611,6 +654,35 @@ msgstr "Rendelkezésre álló frissítések mutatása és telepítése" msgid "Update Manager" msgstr "Frissítéskezelő" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -720,6 +792,15 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ 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 " + +#~ msgid "Choose a key-file" +#~ msgstr "Válasszon egy kulcsfájlt" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Hiba a kulcs eltávolítása közben" @@ -736,9 +817,6 @@ msgstr "" #~ msgid "Cancel downloading of the changelog" #~ msgstr "A módosítások listájának letöltésének megszakítása" -#~ msgid "Choose a key-file" -#~ msgstr "Válasszon egy kulcsfájlt" - #~ msgid "Packages to install:" #~ msgstr "Telepítendő csomagok:" @@ -1007,12 +1085,6 @@ msgstr "" #~ 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 " - #~ msgid "Repositories changed" #~ msgstr "Megváltoztak a tárolók" diff --git a/po/it.po b/po/it.po index ad39d11e..2e141e84 100644 --- a/po/it.po +++ b/po/it.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-10-26 12:25+0200\n" "Last-Translator: Fabio Marzocca \n" "Language-Team: Italian \n" @@ -91,41 +91,52 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Aggiornamenti Software" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "Errore nell'importazione del file selezionato" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "Errore rimuovendo la chiave" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../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. Per favore riporta questo come " "bug." -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -133,14 +144,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Aggiornamenti Software" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -599,11 +640,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "Installazione degli aggiornamenti..." -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Ricarica" @@ -617,6 +662,35 @@ msgstr "" msgid "Update Manager" msgstr "Gestore degli Aggiornamenti" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -726,6 +800,18 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "" +#~ "Chiave di Firma Automatica per l'Archivio Ubuntu " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "" +#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu " + +#~ msgid "Choose a key-file" +#~ msgstr "Scegli un file di chiave" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Errore rimuovendo la chiave" @@ -928,18 +1014,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian·Non-US·(Testing)" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "" -#~ "Chiave di Firma Automatica per l'Archivio Ubuntu " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "" -#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu " - -#~ msgid "Choose a key-file" -#~ msgstr "Scegli un file di chiave" - #~ msgid "Your system is up-to-date!" #~ msgstr "Il tuo sistema è aggiornato!" diff --git a/po/ja.po b/po/ja.po index c9ceaf2d..4904c189 100644 --- a/po/ja.po +++ b/po/ja.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-10-12 17:28+0900\n" "Last-Translator: Ikuya Awashiro \n" "Language-Team: Ubuntu-ja \n" @@ -93,38 +93,49 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "ソフトウェアのアップデート" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "選択したファイルのインポートエラー" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "キー削除のエラー" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "選択したキーを削除できませんでした。バグとして報告してください。" -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -132,14 +143,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "ソフトウェアのアップデート" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -592,11 +633,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "アップデートをインストール中..." -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "再読込" @@ -609,6 +654,35 @@ msgstr "アップデート可能なファイルの表示とインストール" msgid "Update Manager" msgstr "アップデートマネージャ" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -716,6 +790,15 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "Ubuntu Archive Automatic Signing Key " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "Ubuntu CD Image Automatic Signing Key " + +#~ msgid "Choose a key-file" +#~ msgstr "キーファイルを選択" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "キー削除のエラー" @@ -732,9 +815,6 @@ msgstr "" #~ msgid "Cancel downloading of the changelog" #~ msgstr "変更点の取得を中止" -#~ msgid "Choose a key-file" -#~ msgstr "キーファイルを選択" - #~ msgid "Comment:" #~ msgstr "コメント:" @@ -902,12 +982,6 @@ msgstr "" #~ msgid "US export restricted software" #~ msgstr "アメリカ合衆国外への輸出が禁止されているソフトウェア" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "Ubuntu Archive Automatic Signing Key " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "Ubuntu CD Image Automatic Signing Key " - #~ msgid "Repositories changed" #~ msgstr "リポジトリが変更されました" diff --git a/po/lt.po b/po/lt.po index 70d4cbde..d4b8cf25 100644 --- a/po/lt.po +++ b/po/lt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-09-15 15:06+0300\n" "Last-Translator: Žygimantas Beručka \n" "Language-Team: Lithuanian \n" @@ -91,38 +91,49 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Programinės įrangos atnaujinimai" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "Importuojant pasirinktą bylą įvyko klaida" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../SoftwareProperties/SoftwareProperties.py:424 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "Pasirinkta byla gali būti ne GPG rakto byla arba sugadinta byla." -#: ../SoftwareProperties/SoftwareProperties.py:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "Šalinant raktą įvyko klaida" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../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:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -130,14 +141,46 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Programinės įrangos atnaujinimai" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -595,11 +638,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "Diegiami atnaujinimai..." -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Atnaujinti" @@ -612,6 +659,35 @@ msgstr "Rodyti galimus atnaujimus ir pasirinkti įdiegtinus" msgid "Update Manager" msgstr "Atnaujinimų tvarkyklė" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -721,6 +797,16 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "Ubuntu archyvo automatinio pasirašymo raktas " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "" +#~ "Ubuntu CD atvaizdžių automatinio pasirašymo raktas " + +#~ msgid "Choose a key-file" +#~ msgstr "Pasirinkite rakto bylą" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Šalinant raktą įvyko klaida" @@ -938,16 +1024,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian Non-US (Testing)" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "Ubuntu archyvo automatinio pasirašymo raktas " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "" -#~ "Ubuntu CD atvaizdžių automatinio pasirašymo raktas " - -#~ msgid "Choose a key-file" -#~ msgstr "Pasirinkite rakto bylą" - #~ msgid "Your system is up-to-date!" #~ msgstr "Jūsų sistema yra atnaujinta!" diff --git a/po/mk.po b/po/mk.po index 76def952..46cfb031 100644 --- a/po/mk.po +++ b/po/mk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-07-20 01:21+0200\n" "Last-Translator: Арангел Ангов \n" "Language-Team: Macedonian \n" @@ -91,40 +91,51 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Надградба на софтвер" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "Грешка при увоз на избраната датотека" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "Грешка при отстранување на клучот" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" "Клучот што го избравте не може да биде отстранет. Ве молам пријавете го ова " "како бубачка." -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -132,14 +143,46 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Надградба на софтвер" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -600,11 +643,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "Инсталирам надградби..." -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Освежи" @@ -617,6 +664,35 @@ msgstr "Покажи достапни надградби и избери кои msgid "Update Manager" msgstr "Менаџер за надградба" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -726,6 +802,15 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "Ubuntu Archive Automatic Signing Key " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "Ubuntu CD Image Automatic Signing Key " + +#~ msgid "Choose a key-file" +#~ msgstr "Одберете датотека за клуч" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Грешка при отстранување на клучот" @@ -928,15 +1013,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian Non-US (Testing)" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "Ubuntu Archive Automatic Signing Key " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "Ubuntu CD Image Automatic Signing Key " - -#~ msgid "Choose a key-file" -#~ msgstr "Одберете датотека за клуч" - #~ msgid "Your system is up-to-date!" #~ msgstr "Вашиот систем е надграден!" diff --git a/po/nb.po b/po/nb.po index 4bc3867c..57cb0e2d 100644 --- a/po/nb.po +++ b/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-06-08 23:10+0200\n" "Last-Translator: Terance Edward Sola \n" "Language-Team: Norwegian Bokmal \n" @@ -94,38 +94,49 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Programvareoppdateringer" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "Feil under importering av fil" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "Feil under fjerning av nøkkel" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../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:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -133,14 +144,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Programvareoppdateringer" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -597,11 +638,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "Installerer oppdateringer..." -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Oppdater" @@ -614,6 +659,35 @@ msgstr "Vis tilgjengelige oppdateringer og velg hvilke som skal installeres" msgid "Update Manager" msgstr "Oppdateringshåndterer" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -723,6 +797,15 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "Ubuntu Archive Automatic Signing Key " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "Ubuntu CD Image Automatic Signing Key " + +#~ msgid "Choose a key-file" +#~ msgstr "Velg en nøkkelfil" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Feil under fjerning av nøkkel" @@ -937,15 +1020,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian Non-US (Testing)" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "Ubuntu Archive Automatic Signing Key " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "Ubuntu CD Image Automatic Signing Key " - -#~ msgid "Choose a key-file" -#~ msgstr "Velg en nøkkelfil" - #~ msgid "Your system is up-to-date!" #~ msgstr "Systemet er helt oppdatert!" diff --git a/po/ne.po b/po/ne.po index dbdaeec8..afa26ff9 100755 --- a/po/ne.po +++ b/po/ne.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-07-03 16:06+0545\n" "Last-Translator: Jaydeep Bhusal \n" "Language-Team: Nepali \n" @@ -96,37 +96,48 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "सफ्टवेयर अद्यावधिकहरु" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "चयन गरिएको फाइल आयात गर्दा त्रुटि" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../SoftwareProperties/SoftwareProperties.py:424 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "चयन गरिएको फाइल जिपिजि कुञ्जि फइल नहुन सक्छ अथवा यो दुषित हुन सक्दछ" -#: ../SoftwareProperties/SoftwareProperties.py:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "कुञ्जि हटाउँदा त्रुटि" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "तपाईंले चयन गरेको कुञ्जि हटाउन सकिएन. कृपया यसको प्रतिवेदन त्रुटिको रुपमा दिनुहोस" -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -134,14 +145,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "सफ्टवेयर अद्यावधिकहरु" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -594,11 +635,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "स्तरवृद्धिहरु स्थापना गर्दै" -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "फेरि लोड गर्नुहोस" @@ -611,6 +656,35 @@ msgstr "उपलब्ध अद्यावधिकहरु देखाउ msgid "Update Manager" msgstr "अद्यावधिक व्यवस्थापक" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -721,6 +795,15 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "युबन्टु संग्रह स्वचालित हस्ताक्षर कुञ्जि " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "युबन्टु सिडि छवि स्वचालित हस्ताक्षर कुञ्जि " + +#~ msgid "Choose a key-file" +#~ msgstr "एउटा कुञ्जि-फाइल रोज्नुहोस" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "कुञ्जि हटाउँदा त्रुटि" @@ -912,15 +995,6 @@ msgstr "" #~ msgid "Debian Unstable \"Sid\"" #~ msgstr "डेबियन अचल सुरक्षा अद्यावधिकहरु" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "युबन्टु संग्रह स्वचालित हस्ताक्षर कुञ्जि " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "युबन्टु सिडि छवि स्वचालित हस्ताक्षर कुञ्जि " - -#~ msgid "Choose a key-file" -#~ msgstr "एउटा कुञ्जि-फाइल रोज्नुहोस" - #~ msgid "Your system is up-to-date!" #~ msgstr "तपाइं को प्रणालि अप-टु-डेट छ!" diff --git a/po/nl.po b/po/nl.po index ccef272c..743145c4 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-07-13 06:24+0100\n" "Last-Translator: Michiel Sikkes \n" "Language-Team: Nederlands \n" @@ -83,37 +83,47 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../SoftwareProperties/SoftwareProperties.py:424 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -121,14 +131,43 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +msgid "Add Software Channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -568,10 +607,14 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 -msgid "_Install Updates" +msgid "_Hide this information in the future" msgstr "" #: ../data/UpdateManager.glade.h:23 +msgid "_Install Updates" +msgstr "" + +#: ../data/UpdateManager.glade.h:24 msgid "_Reload" msgstr "" @@ -583,6 +626,35 @@ msgstr "" msgid "Update Manager" msgstr "" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format diff --git a/po/no.po b/po/no.po index 4bc3867c..57cb0e2d 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-06-08 23:10+0200\n" "Last-Translator: Terance Edward Sola \n" "Language-Team: Norwegian Bokmal \n" @@ -94,38 +94,49 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Programvareoppdateringer" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "Feil under importering av fil" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "Feil under fjerning av nøkkel" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../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:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -133,14 +144,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Programvareoppdateringer" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -597,11 +638,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "Installerer oppdateringer..." -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Oppdater" @@ -614,6 +659,35 @@ msgstr "Vis tilgjengelige oppdateringer og velg hvilke som skal installeres" msgid "Update Manager" msgstr "Oppdateringshåndterer" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -723,6 +797,15 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "Ubuntu Archive Automatic Signing Key " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "Ubuntu CD Image Automatic Signing Key " + +#~ msgid "Choose a key-file" +#~ msgstr "Velg en nøkkelfil" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Feil under fjerning av nøkkel" @@ -937,15 +1020,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian Non-US (Testing)" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "Ubuntu Archive Automatic Signing Key " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "Ubuntu CD Image Automatic Signing Key " - -#~ msgid "Choose a key-file" -#~ msgstr "Velg en nøkkelfil" - #~ msgid "Your system is up-to-date!" #~ msgstr "Systemet er helt oppdatert!" diff --git a/po/pa.po b/po/pa.po index 5333de25..8a7424d0 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-10-23 10:48-0200\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -91,37 +91,48 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../SoftwareProperties/SoftwareProperties.py:424 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -129,14 +140,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -583,11 +624,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 msgid "_Reload" msgstr "" @@ -599,6 +644,36 @@ msgstr "" msgid "Update Manager" msgstr "" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +#, fuzzy +msgid "Show details of an update" +msgstr "ਵੇਰਵਾ" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format diff --git a/po/pl.po b/po/pl.po index d9f90318..317c7e10 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager cvs\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-03-25 17:23+0100\n" "Last-Translator: Zygmunt Krynicki \n" "Language-Team: Polish \n" @@ -91,37 +91,48 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Aktualizacje oprogramowania" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "Błąd podczas importu wybranego pliku" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "Błąd podczas usuwania klucza" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../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ć to jako błąd." -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -129,14 +140,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Aktualizacje oprogramowania" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -591,11 +632,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "_Instaluj" -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Wczytaj ponownie" @@ -610,6 +655,35 @@ msgstr "" msgid "Update Manager" msgstr "Menadżer aktualizacji" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -719,6 +793,15 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "Klucz automatycznego podpisu archiwum Ubuntu " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "Klucz automatycznego podpisu płyty CD Ubuntu " + +#~ msgid "Choose a key-file" +#~ msgstr "Wybierz plik z kluczem" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Błąd podczas usuwania klucza" @@ -735,9 +818,6 @@ msgstr "" #~ msgid "Cancel downloading of the changelog" #~ msgstr "Anuluj pobieranie pliku zmian (Changelog)" -#~ msgid "Choose a key-file" -#~ msgstr "Wybierz plik z kluczem" - #~ msgid "Packages to install:" #~ msgstr "Pakiety do zainstalowania:" @@ -1003,12 +1083,6 @@ msgstr "" #~ msgid "US export restricted software" #~ msgstr "Oprogramowanie objęte restrykcjami eksportowymi USA" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "Klucz automatycznego podpisu archiwum Ubuntu " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "Klucz automatycznego podpisu płyty CD Ubuntu " - #~ msgid "Repositories changed" #~ msgstr "Repozytoria zmienione" diff --git a/po/pt_BR.po b/po/pt_BR.po index f4d7e89d..7f07a8ba 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2006-02-19 17:39-0300\n" "Last-Translator: Carlos Eduardo Pedroza Santiviago \n" "Language-Team: Ubuntu-BR \n" @@ -83,41 +83,52 @@ msgstr "_Obter atualizações em segundo plano, mas não instalá-las" msgid "_Install security updates without confirmation" msgstr "_Instalar novas atualizações sem confirmação" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "A cada %s dias" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "Após %s dias" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Atualizações de Programas" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "Importar Chave" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "Erro importando o arquivo selecionado" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "Erro removendo a chave" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../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:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -128,14 +139,46 @@ msgstr "" "\n" "%s" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "Por favor digite um nome para o disco" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "Por favor insira um disco no drive:" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Atualizações de Programas" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +#, fuzzy +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "Modificando os canais de programas" +msgstr[1] "Modificando os canais de programas" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +#, fuzzy +msgid "Could not add any software channels" +msgstr "Modificando os canais de programas" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "Pacotes quebrados" @@ -635,10 +678,14 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "Atualizar para a última versão do Ubuntu" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 msgid "_Install Updates" msgstr "_Instalar Atualizações" -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 msgid "_Reload" msgstr "_Recarregar" @@ -650,6 +697,36 @@ msgstr "Exibir atualizações disponíveis e escolher quais instalar" msgid "Update Manager" msgstr "Gerenciador de Atualizações" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +#, fuzzy +msgid "Show details of an update" +msgstr "Exibir Detalhes" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -752,6 +829,15 @@ msgstr "Programa compatível com a DFSG mas com dependências não-livres" msgid "Non-DFSG-compatible Software" msgstr "Programas não compatíveis com a DFSG" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "Ubuntu Archive Automatic Signing Key " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "Ubuntu CD Image Automatic Signing Key " + +#~ msgid "Choose a key-file" +#~ msgstr "Choose a key-file" + #~ msgid "" #~ "There is not enough free space on your system to download the required " #~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" @@ -813,9 +899,6 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "Cancel downloading of the changelog" #~ msgstr "Cancel downloading the ChangeLog" -#~ msgid "Choose a key-file" -#~ msgstr "Choose a key-file" - #~ msgid "Packages to install:" #~ msgstr "Packages to install:" @@ -1083,12 +1166,6 @@ msgstr "Programas não compatíveis com a DFSG" #~ msgid "US export restricted software" #~ msgstr "US export restricted software" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "Ubuntu Archive Automatic Signing Key " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "Ubuntu CD Image Automatic Signing Key " - #~ msgid "Repositories changed" #~ msgstr "Repositories changed" diff --git a/po/ro.po b/po/ro.po index e0bd7a4a..18f8e254 100644 --- a/po/ro.po +++ b/po/ro.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-03-03 19:28+0200\n" "Last-Translator: Dan Damian \n" "Language-Team: Romanian \n" @@ -90,37 +90,48 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Actualizări software" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../SoftwareProperties/SoftwareProperties.py:424 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -128,14 +139,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Actualizări software" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -585,11 +626,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "_Instalează" -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 msgid "_Reload" msgstr "" @@ -602,6 +647,35 @@ msgstr "" msgid "Update Manager" msgstr "Actualizări Ubuntu 4.10" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format diff --git a/po/rw.po b/po/rw.po index b9163cba..68b82d0e 100644 --- a/po/rw.po +++ b/po/rw.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-03-31 20:55-0700\n" "Last-Translator: Steve Murphy \n" "Language-Team: Kinyarwanda \n" @@ -97,41 +97,52 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Ibihuzagihe bya porogaramumudasobwa " + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 #, fuzzy msgid "Error importing selected file" msgstr "Kuzaza Byahiswemo IDOSIYE" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 #, fuzzy msgid "Error removing the key" msgstr "i Urufunguzo" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 #, fuzzy msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Urufunguzo Byahiswemo OYA Cyavanyweho Icyegeranyo iyi Nka a" -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -139,14 +150,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Ibihuzagihe bya porogaramumudasobwa " + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -608,17 +649,21 @@ msgstr "Byarangiye" msgid "Upgrade to the latest version of Ubuntu" msgstr "" +#: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + # #-#-#-#-# setup2.pot (PACKAGE VERSION) #-#-#-#-# # setup2/source\ui\pages\plang.src:RESID_PAGE_PAGELANGUAGE.STR_PROG.text # #-#-#-#-# setup2.pot (PACKAGE VERSION) #-#-#-#-# # setup2/source\uibase\agentdlg.src:RC_AGENTDLG.RESID_DLG_AGENT_STR_INSTALL.text -#: ../data/UpdateManager.glade.h:22 +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "Kwinjiza porogaramu" # sfx2/sdi\sfxslots.src:SID_RELOAD.text -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Kongera Gutangiza" @@ -632,6 +677,35 @@ msgstr "Bihari Na Guhitamo Kuri Kwinjiza porogaramu" msgid "Update Manager" msgstr "" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -743,6 +817,18 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#, fuzzy +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "com" + +#, fuzzy +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "com" + +#, fuzzy +#~ msgid "Choose a key-file" +#~ msgstr "a Urufunguzo IDOSIYE" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "i Urufunguzo" @@ -759,10 +845,6 @@ msgstr "" #~ msgid "Cancel downloading of the changelog" #~ msgstr "Iyimura... i" -#, fuzzy -#~ msgid "Choose a key-file" -#~ msgstr "a Urufunguzo IDOSIYE" - #, fuzzy #~ msgid "Packages to install:" #~ msgstr "" -#~ msgstr "com" - -#, fuzzy -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "com" - #, fuzzy #~ msgid "Repositories changed" #~ msgstr "Byahinduwe" diff --git a/po/sv.po b/po/sv.po index c3999c21..f9a14316 100644 --- a/po/sv.po +++ b/po/sv.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-03-26 15:14+0100\n" "Last-Translator: Christian Rose \n" "Language-Team: Swedish \n" @@ -89,38 +89,50 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Ingen kanal" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +#, fuzzy +msgid "Active" +msgstr "Aktivera" + +#: ../SoftwareProperties/SoftwareProperties.py:413 #, fuzzy msgid "Import key" msgstr "Viktighet" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../SoftwareProperties/SoftwareProperties.py:424 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -128,14 +140,46 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Ingen kanal" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +#, fuzzy +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "Alla kanaler" +msgstr[1] "Alla kanaler" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +#, fuzzy +msgid "Could not add any software channels" +msgstr "inte installerad" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 #, fuzzy msgid "Broken packages" @@ -597,11 +641,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "Letar efter uppdateringar..." -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Läs om" @@ -614,6 +662,36 @@ msgstr "Visa tillgängliga uppdateringar och välj vilka som ska installeras" msgid "Update Manager" msgstr "Uppdateringshanterare" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +#, fuzzy +msgid "Show details of an update" +msgstr "Detaljer" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -722,6 +800,10 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "Tillgängliga program" +#, fuzzy +#~ msgid "Choose a key-file" +#~ msgstr "Välj en spegel" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Inga matchande paket hittades" @@ -745,10 +827,6 @@ msgstr "Tillgängliga program" #~ msgid "_Install" #~ msgstr "_Installera" -#, fuzzy -#~ msgid "Choose a key-file" -#~ msgstr "Välj en spegel" - #~ msgid "Details" #~ msgstr "Detaljer" @@ -1043,9 +1121,6 @@ msgstr "Tillgängliga program" #~ msgid "Activation Code:" #~ msgstr "Aktiveringskod:" -#~ msgid "Activate" -#~ msgstr "Aktivera" - #~ msgid "Please fill in both email and activation code." #~ msgstr "Fyll i både e-postadress och aktiveringskod." @@ -1263,9 +1338,6 @@ msgstr "Tillgängliga program" #~ msgid "Go to the '%s' page" #~ msgstr "Gå till sidan \"%s\"" -#~ msgid "All Channels" -#~ msgstr "Alla kanaler" - #~ msgid "All Subscribed Channels" #~ msgstr "Alla prenumererade kanaler" @@ -2041,9 +2113,6 @@ msgstr "Tillgängliga program" #~ msgid "Package Information..." #~ msgstr "Paketinformation..." -#~ msgid "No Channel" -#~ msgstr "Ingen kanal" - #~ msgid "Unknown Channel" #~ msgstr "Okänd kanal" diff --git a/po/uk.po b/po/uk.po index ef011ff3..0bcd10e4 100644 --- a/po/uk.po +++ b/po/uk.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-08-08 11:46+0300\n" "Last-Translator: Maxim Dziumanenko \n" "Language-Team: Ukrainian \n" @@ -89,37 +89,48 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Оновлення програм" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "Помилка імпорту вибраного файлу" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "Помилка видалення ключа" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "Вибраний ключ неможливо видалити. Сповістіть про це як про помилку." -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -127,14 +138,46 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Оновлення програм" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -589,11 +632,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "Встановлення оновлень..." -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Перезавантажити" @@ -606,6 +653,35 @@ msgstr "Показати доступні оновлення та зміни д msgid "Update Manager" msgstr "Менеджер оновлення" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -715,6 +791,15 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "Автоматичний ключ підпису архіву Ubuntu " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "Автоматичний ключ підпису компакт-диску Ubuntu " + +#~ msgid "Choose a key-file" +#~ msgstr "Виберіть ключовий файл" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Помилка видалення ключа" @@ -931,15 +1016,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian поза США (Тестовий)" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "Автоматичний ключ підпису архіву Ubuntu " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "Автоматичний ключ підпису компакт-диску Ubuntu " - -#~ msgid "Choose a key-file" -#~ msgstr "Виберіть ключовий файл" - #~ msgid "Your system is up-to-date!" #~ msgstr "Ваша система оновлена!" diff --git a/po/update-manager.pot b/po/update-manager.pot index 36cafd33..66b7fa1e 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: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:30+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -84,37 +84,47 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +msgid "Software Channel" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../SoftwareProperties/SoftwareProperties.py:424 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -122,14 +132,43 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +msgid "Add Software Channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -569,10 +608,14 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 -msgid "_Install Updates" +msgid "_Hide this information in the future" msgstr "" #: ../data/UpdateManager.glade.h:23 +msgid "_Install Updates" +msgstr "" + +#: ../data/UpdateManager.glade.h:24 msgid "_Reload" msgstr "" @@ -584,6 +627,35 @@ msgstr "" msgid "Update Manager" msgstr "" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format diff --git a/po/vi.po b/po/vi.po index 307f8d26..d0c1c37e 100644 --- a/po/vi.po +++ b/po/vi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager Gnome HEAD\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-08-26 18:15+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -90,37 +90,48 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Bản cập nhật phần mềm" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../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:365 +#: ../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." -#: ../SoftwareProperties/SoftwareProperties.py:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "Gặp lỗi khi gỡ bỏ khóa" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../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:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -128,14 +139,42 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Bản cập nhật phần mềm" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -584,11 +623,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "Đang cài đặt bản cập nhật..." -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "Tải lại" @@ -601,6 +644,35 @@ msgstr "Hiện các bản cập nhật công bố và chọn bản nào cần c msgid "Update Manager" msgstr "Bộ Quản lý Cập nhật" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -710,6 +782,15 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "Khóa ký tự động kho Ubuntu " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "Khóa ký tự động ảnh đĩa CD Ubuntu " + +#~ msgid "Choose a key-file" +#~ msgstr "Chọn tập tin khóa" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Gặp lỗi khi gỡ bỏ khóa" @@ -913,15 +994,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Không Mỹ Debian (Thử ra)" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "Khóa ký tự động kho Ubuntu " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "Khóa ký tự động ảnh đĩa CD Ubuntu " - -#~ msgid "Choose a key-file" -#~ msgstr "Chọn tập tin khóa" - #~ msgid "Your system is up-to-date!" #~ msgstr "Hệ thống bạn toàn mới nhất." diff --git a/po/xh.po b/po/xh.po index cca3529e..7ce93311 100644 --- a/po/xh.po +++ b/po/xh.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-notifier\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-03-30 13:25+0200\n" "Last-Translator: Canonical Ltd \n" "Language-Team: Xhosa \n" @@ -88,37 +88,48 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "Bonisa izihlaziyo" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../SoftwareProperties/SoftwareProperties.py:424 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -126,14 +137,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "Bonisa izihlaziyo" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -575,11 +616,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "Bonisa izihlaziyo" -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 msgid "_Reload" msgstr "" @@ -592,6 +637,35 @@ msgstr "" msgid "Update Manager" msgstr "UMlawuli woMqulu weNkqubo" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format diff --git a/po/zh_CN.po b/po/zh_CN.po index 27a5f47d..a1671da6 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-03-21 22:00+0800\n" "Last-Translator: Funda Wang \n" "Language-Team: zh_CN \n" @@ -90,37 +90,48 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "软件更新" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../SoftwareProperties/SoftwareProperties.py:424 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -128,14 +139,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "软件更新" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -582,11 +623,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "安装(_I)" -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "重新装入" @@ -599,6 +644,35 @@ msgstr "显示可用的更新并选择要安装的更新" msgid "Update Manager" msgstr "更新管理器" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format diff --git a/po/zh_HK.po b/po/zh_HK.po index ccce528f..1017fd4d 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-12-14 01:58+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -89,37 +89,48 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "軟件更新" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "匯入指定檔案時發生錯誤" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "移除密碼匙時發生錯誤" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "你選定的密碼匙無法移除,請匯報問題。" -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -127,14 +138,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "軟件更新" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -586,11 +627,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "正在安裝軟件更新..." -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "重新載入" @@ -603,6 +648,35 @@ msgstr "顯示所有可更新的套件,並選擇要安裝的套件" msgid "Update Manager" msgstr "更新管理員" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -712,6 +786,15 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "Ubuntu 套件自動簽署用密碼匙 " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "Ubuntu 光碟自動簽署用密碼匙 " + +#~ msgid "Choose a key-file" +#~ msgstr "選擇密碼匙檔" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "移除密碼匙時發生錯誤" @@ -909,15 +992,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian Non-US (測試版)" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "Ubuntu 套件自動簽署用密碼匙 " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "Ubuntu 光碟自動簽署用密碼匙 " - -#~ msgid "Choose a key-file" -#~ msgstr "選擇密碼匙檔" - #~ msgid "Your system is up-to-date!" #~ msgstr "系統已經在最新狀態!" diff --git a/po/zh_TW.po b/po/zh_TW.po index 747eb8ae..f0941856 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: michael.vogt@canonical.com\n" -"POT-Creation-Date: 2006-02-21 00:11+0100\n" +"POT-Creation-Date: 2006-02-23 12:55+0100\n" "PO-Revision-Date: 2005-12-14 01:58+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -89,37 +89,48 @@ msgstr "" msgid "_Install security updates without confirmation" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:101 +#: ../SoftwareProperties/SoftwareProperties.py:115 #, python-format msgid "Every %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:131 +#: ../SoftwareProperties/SoftwareProperties.py:145 #, python-format msgid "After %s days" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:354 +#. cell_desc.set_property("xpad", 10) +#. cell_desc.set_property("ypad", 10) +#: ../SoftwareProperties/SoftwareProperties.py:230 +#, fuzzy +msgid "Software Channel" +msgstr "軟體更新" + +#: ../SoftwareProperties/SoftwareProperties.py:236 +msgid "Active" +msgstr "" + +#: ../SoftwareProperties/SoftwareProperties.py:413 msgid "Import key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:364 +#: ../SoftwareProperties/SoftwareProperties.py:423 msgid "Error importing selected file" msgstr "匯入指定檔案時發生錯誤" -#: ../SoftwareProperties/SoftwareProperties.py:365 +#: ../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:377 +#: ../SoftwareProperties/SoftwareProperties.py:436 msgid "Error removing the key" msgstr "移除金鑰時發生錯誤" -#: ../SoftwareProperties/SoftwareProperties.py:378 +#: ../SoftwareProperties/SoftwareProperties.py:437 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "您選定的金鑰無法移除,請匯報問題。" -#: ../SoftwareProperties/SoftwareProperties.py:421 +#: ../SoftwareProperties/SoftwareProperties.py:480 #, python-format msgid "" "Error scaning the CD\n" @@ -127,14 +138,44 @@ msgid "" "%s" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:471 +#: ../SoftwareProperties/SoftwareProperties.py:530 msgid "Please enter a name for the disc" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:487 +#: ../SoftwareProperties/SoftwareProperties.py:546 msgid "Please insert a disc in the drive:" msgstr "" +#: ../SoftwareProperties/dialog_sources_list.py:35 +#, fuzzy +msgid "Add Software Channels" +msgstr "軟體更新" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -586,11 +627,15 @@ msgid "Upgrade to the latest version of Ubuntu" msgstr "" #: ../data/UpdateManager.glade.h:22 +msgid "_Hide this information in the future" +msgstr "" + +#: ../data/UpdateManager.glade.h:23 #, fuzzy msgid "_Install Updates" msgstr "正在安裝軟體更新..." -#: ../data/UpdateManager.glade.h:23 +#: ../data/UpdateManager.glade.h:24 #, fuzzy msgid "_Reload" msgstr "重新載入" @@ -603,6 +648,35 @@ msgstr "顯示所有可更新的套件,並選擇要安裝的套件" msgid "Update Manager" msgstr "更新管理員" +#: ../data/update-manager.schemas.in.h:1 +msgid "" +"If automatic checking for updates is disabeld, you have to reload the " +"channel list manually. This option allows to hide the reminder shown in this " +"case." +msgstr "" + +#: ../data/update-manager.schemas.in.h:2 +msgid "Remind to reload the channel list" +msgstr "" + +#: ../data/update-manager.schemas.in.h:3 +msgid "Show details of an update" +msgstr "" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -712,6 +786,15 @@ msgstr "" msgid "Non-DFSG-compatible Software" msgstr "" +#~ msgid "Ubuntu Archive Automatic Signing Key " +#~ msgstr "Ubuntu 套件自動簽署用金鑰 " + +#~ msgid "Ubuntu CD Image Automatic Signing Key " +#~ msgstr "Ubuntu 光碟自動簽署用金鑰 " + +#~ msgid "Choose a key-file" +#~ msgstr "選擇金鑰檔" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "移除金鑰時發生錯誤" @@ -908,15 +991,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian Non-US (測試版)" -#~ msgid "Ubuntu Archive Automatic Signing Key " -#~ msgstr "Ubuntu 套件自動簽署用金鑰 " - -#~ msgid "Ubuntu CD Image Automatic Signing Key " -#~ msgstr "Ubuntu 光碟自動簽署用金鑰 " - -#~ msgid "Choose a key-file" -#~ msgstr "選擇金鑰檔" - #~ msgid "Your system is up-to-date!" #~ msgstr "系統已經在最新狀態!" diff --git a/setup.py b/setup.py index ded9c30e..873f5de4 100755 --- a/setup.py +++ b/setup.py @@ -23,6 +23,10 @@ for filepath in glob.glob("po/mo/*/LC_MESSAGES/*.mo"): targetpath = os.path.dirname(os.path.join("share/locale",lang)) I18NFILES.append((targetpath, [filepath])) +os.system("intltool-merge -d po data/update-manager.schemas.in"\ + " build/update-manager.schemas") + + # HACK: make sure that the mo files are generated and up-to-date os.system("cd po; make update-po") # do the same for the desktop files @@ -31,7 +35,7 @@ os.system("cd data; make") os.system("cd channels; make") setup(name='update-manager', - version='0.1', + version='0.42.2', packages=[ 'SoftwareProperties', 'UpdateManager', @@ -39,8 +43,7 @@ setup(name='update-manager', ], scripts=[ 'gnome-software-properties', - 'update-manager', - 'add-software-channel' + 'update-manager' ], data_files=[ ('share/update-manager/glade', @@ -55,12 +58,12 @@ setup(name='update-manager', ["data/update-manager.desktop", "data/gnome-software-properties.desktop"] ), + ('share/gconf/schemas', + glob.glob("build/*.schemas") + ), ('share/pixmaps', ["data/update-manager.png"] ), - ('share/applications', - ["data/mime/add-software-channel.desktop"] - ), ('share/mime/packages', ["data/mime/apt.xml"] ) -- cgit v1.2.3