diff options
54 files changed, 3869 insertions, 1016 deletions
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 += "<i>%s</i>\n\n" % (source.comment) - contents +="<big><b>%s </b></big> (%s) <small>\n%s</small>" % (dist,a_type, comps) + (nice_type, nice_dist, nice_comps) = self.matcher.match(source) - self.source_store.append([contents, not source.disabled, source]) + contents = "<b>%s</b>%s" % (nice_dist, nice_comps) + if source.type == "deb-src": + contents = "<b>%s</b> - %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 = "<big><b>%s </b></big> (%s) <small>\n%s</small>" %\ - 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("<big><b>%s</b></big>\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 @@ <property name="right_padding">0</property> <child> - <widget class="GtkHBox" id="hbox1"> + <widget class="GtkVBox" id="vbox5"> <property name="visible">True</property> <property name="homogeneous">False</property> <property name="spacing">6</property> @@ -104,9 +104,9 @@ </child> <child> - <widget class="GtkVButtonBox" id="vbuttonbox1"> + <widget class="GtkHBox" id="hbox6"> <property name="visible">True</property> - <property name="layout_style">GTK_BUTTONBOX_START</property> + <property name="homogeneous">False</property> <property name="spacing">6</property> <child> @@ -120,6 +120,11 @@ <property name="focus_on_click">True</property> <signal name="clicked" handler="on_add_clicked" last_modification_time="Tue, 05 Jul 2005 01:31:37 GMT"/> </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> </child> <child> @@ -133,6 +138,11 @@ <property name="focus_on_click">True</property> <signal name="clicked" handler="on_remove_clicked" last_modification_time="Tue, 05 Jul 2005 02:21:36 GMT"/> </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> </child> <child> @@ -146,6 +156,11 @@ <property name="focus_on_click">True</property> <signal name="clicked" handler="on_edit_clicked" last_modification_time="Tue, 05 Jul 2005 02:18:34 GMT"/> </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> </child> <child> @@ -221,6 +236,11 @@ </widget> </child> </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> </child> </widget> <packing> 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 @@ -<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*--> -<!DOCTYPE glade-project SYSTEM "http://glade.gnome.org/glade-project-2.0.dtd"> - -<glade-project> - <name></name> - <program_name></program_name> - <gnome_support>FALSE</gnome_support> -</glade-project> 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 @@ <widget class="GtkDialog" id="dialog_add"> <property name="border_width">6</property> - <property name="title" translatable="yes">Add repository...</property> + <property name="title" translatable="yes">Add Channel</property> <property name="type">GTK_WINDOW_TOPLEVEL</property> <property name="window_position">GTK_WIN_POS_NONE</property> <property name="modal">True</property> @@ -18,13 +18,13 @@ <property name="gravity">GDK_GRAVITY_NORTH_WEST</property> <property name="focus_on_map">True</property> <property name="urgency_hint">False</property> - <property name="has_separator">True</property> + <property name="has_separator">False</property> <child internal-child="vbox"> <widget class="GtkVBox" id="vbox2"> <property name="visible">True</property> <property name="homogeneous">False</property> - <property name="spacing">6</property> + <property name="spacing">12</property> <child internal-child="action_area"> <widget class="GtkHButtonBox" id="hbuttonbox2"> @@ -32,20 +32,6 @@ <property name="layout_style">GTK_BUTTONBOX_END</property> <child> - <widget class="GtkButton" id="button_custom"> - <property name="visible">True</property> - <property name="can_default">True</property> - <property name="can_focus">True</property> - <property name="label" translatable="yes">_Custom</property> - <property name="use_underline">True</property> - <property name="relief">GTK_RELIEF_NORMAL</property> - <property name="focus_on_click">True</property> - <property name="response_id">-6</property> - <signal name="clicked" handler="on_button_custom_clicked" last_modification_time="Mon, 29 Nov 2004 11:06:40 GMT"/> - </widget> - </child> - - <child> <widget class="GtkButton" id="button2"> <property name="visible">True</property> <property name="can_default">True</property> @@ -59,13 +45,13 @@ </child> <child> - <widget class="GtkButton" id="button3"> + <widget class="GtkButton" id="button_add_channel"> <property name="visible">True</property> <property name="can_default">True</property> <property name="has_default">True</property> <property name="can_focus">True</property> <property name="has_focus">True</property> - <property name="label">gtk-ok</property> + <property name="label">gtk-add</property> <property name="use_stock">True</property> <property name="relief">GTK_RELIEF_NORMAL</property> <property name="focus_on_click">True</property> @@ -82,42 +68,156 @@ </child> <child> - <widget class="GtkVBox" id="vbox3"> + <widget class="GtkVBox" id="vbox21"> + <property name="border_width">6</property> <property name="visible">True</property> <property name="homogeneous">False</property> <property name="spacing">12</property> <child> - <widget class="GtkLabel" id="label31"> + <widget class="GtkVBox" id="vbox19"> <property name="visible">True</property> - <property name="label" translatable="yes"><b>Repository</b></property> - <property name="use_underline">False</property> - <property name="use_markup">True</property> - <property name="justify">GTK_JUSTIFY_LEFT</property> - <property name="wrap">False</property> - <property name="selectable">False</property> - <property name="xalign">0</property> - <property name="yalign">0.5</property> - <property name="xpad">0</property> - <property name="ypad">0</property> - <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> - <property name="width_chars">-1</property> - <property name="single_line_mode">False</property> - <property name="angle">0</property> - </widget> - <packing> - <property name="padding">0</property> - <property name="expand">False</property> - <property name="fill">False</property> - </packing> - </child> + <property name="homogeneous">False</property> + <property name="spacing">6</property> - <child> - <widget class="GtkComboBox" id="combobox_what"> - <property name="visible">True</property> - <property name="add_tearoffs">False</property> - <property name="focus_on_click">True</property> - <signal name="changed" handler="on_combobox_what_changed" last_modification_time="Thu, 25 Nov 2004 13:35:11 GMT"/> + <child> + <widget class="GtkRadioButton" id="radiobutton_official"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + <signal name="toggled" handler="on_radiobutton_official_toggled" last_modification_time="Thu, 23 Feb 2006 10:03:57 GMT"/> + + <child> + <widget class="GtkLabel" id="label71"> + <property name="visible">True</property> + <property name="label" translatable="yes"><b>Official Ubuntu Channel</b></property> + <property name="use_underline">False</property> + <property name="use_markup">True</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + + <child> + <widget class="GtkHBox" id="hbox33"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">0</property> + + <child> + <widget class="GtkLabel" id="label69"> + <property name="visible">True</property> + <property name="label" translatable="yes"> </property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + + <child> + <widget class="GtkVBox" id="vbox_official"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">6</property> + + <child> + <widget class="GtkComboBox" id="combobox_what"> + <property name="visible">True</property> + <property name="add_tearoffs">False</property> + <property name="focus_on_click">True</property> + <signal name="changed" handler="on_combobox_what_changed" last_modification_time="Thu, 25 Nov 2004 13:35:11 GMT"/> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> + + <child> + <widget class="GtkHSeparator" id="hseparator1"> + <property name="visible">True</property> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + + <child> + <widget class="GtkVBox" id="vbox_comps"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">6</property> + + <child> + <placeholder/> + </child> + + <child> + <placeholder/> + </child> + + <child> + <placeholder/> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> </widget> <packing> <property name="padding">0</property> @@ -127,46 +227,145 @@ </child> <child> - <widget class="GtkLabel" id="label32"> - <property name="visible">True</property> - <property name="label" translatable="yes"><b>Components</b></property> - <property name="use_underline">False</property> - <property name="use_markup">True</property> - <property name="justify">GTK_JUSTIFY_LEFT</property> - <property name="wrap">False</property> - <property name="selectable">False</property> - <property name="xalign">0</property> - <property name="yalign">0.5</property> - <property name="xpad">0</property> - <property name="ypad">0</property> - <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> - <property name="width_chars">-1</property> - <property name="single_line_mode">False</property> - <property name="angle">0</property> - </widget> - <packing> - <property name="padding">0</property> - <property name="expand">False</property> - <property name="fill">False</property> - </packing> - </child> - - <child> - <widget class="GtkVBox" id="vbox_comps"> + <widget class="GtkVBox" id="vbox20"> <property name="visible">True</property> <property name="homogeneous">False</property> <property name="spacing">6</property> <child> - <placeholder/> - </child> + <widget class="GtkRadioButton" id="radiobutton_custom"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + <property name="group">radiobutton_official</property> + <signal name="toggled" handler="on_radiobutton_custom_toggled" last_modification_time="Thu, 23 Feb 2006 10:03:31 GMT"/> - <child> - <placeholder/> + <child> + <widget class="GtkLabel" id="label70"> + <property name="visible">True</property> + <property name="label" translatable="yes"><b>Custom Channel</b></property> + <property name="use_underline">False</property> + <property name="use_markup">True</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> </child> <child> - <placeholder/> + <widget class="GtkHBox" id="hbox_customasd"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">0</property> + + <child> + <widget class="GtkLabel" id="label68"> + <property name="visible">True</property> + <property name="label" translatable="yes"> </property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + + <child> + <widget class="GtkHBox" id="hbox_custom"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">10</property> + + <child> + <widget class="GtkLabel" id="label34"> + <property name="visible">True</property> + <property name="label" translatable="yes">APT line:</property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">False</property> + <property name="selectable">False</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + + <child> + <widget class="GtkEntry" id="entry_source_line"> + <property name="visible">True</property> + <property name="tooltip" translatable="yes">The APT line contains the type, location and components of a channel, for example 'deb http://ftp.debian.org sarge main'</property> + <property name="can_focus">True</property> + <property name="editable">True</property> + <property name="visibility">True</property> + <property name="max_length">0</property> + <property name="text" translatable="yes"></property> + <property name="has_frame">True</property> + <property name="invisible_char">*</property> + <property name="activates_default">True</property> + <signal name="changed" handler="on_entry_source_line_changed" last_modification_time="Thu, 23 Feb 2006 10:45:14 GMT"/> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> </child> </widget> <packing> @@ -182,10 +381,6 @@ <property name="fill">True</property> </packing> </child> - - <child> - <placeholder/> - </child> </widget> </child> </widget> @@ -374,60 +569,7 @@ The APT line contains the type, location and content of a repository, for exampl </child> <child> - <widget class="GtkHBox" id="hbox8"> - <property name="visible">True</property> - <property name="homogeneous">False</property> - <property name="spacing">10</property> - - <child> - <widget class="GtkLabel" id="label34"> - <property name="visible">True</property> - <property name="label" translatable="yes">APT line:</property> - <property name="use_underline">False</property> - <property name="use_markup">False</property> - <property name="justify">GTK_JUSTIFY_LEFT</property> - <property name="wrap">False</property> - <property name="selectable">False</property> - <property name="xalign">0.5</property> - <property name="yalign">0.5</property> - <property name="xpad">0</property> - <property name="ypad">0</property> - <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> - <property name="width_chars">-1</property> - <property name="single_line_mode">False</property> - <property name="angle">0</property> - </widget> - <packing> - <property name="padding">0</property> - <property name="expand">False</property> - <property name="fill">False</property> - </packing> - </child> - - <child> - <widget class="GtkEntry" id="entry_source_line"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="editable">True</property> - <property name="visibility">True</property> - <property name="max_length">0</property> - <property name="text" translatable="yes"></property> - <property name="has_frame">True</property> - <property name="invisible_char">*</property> - <property name="activates_default">True</property> - </widget> - <packing> - <property name="padding">0</property> - <property name="expand">True</property> - <property name="fill">True</property> - </packing> - </child> - </widget> - <packing> - <property name="padding">0</property> - <property name="expand">False</property> - <property name="fill">True</property> - </packing> + <placeholder/> </child> </widget> <packing> @@ -463,7 +605,7 @@ The APT line contains the type, location and content of a repository, for exampl <property name="gravity">GDK_GRAVITY_NORTH_WEST</property> <property name="focus_on_map">True</property> <property name="urgency_hint">False</property> - <property name="has_separator">True</property> + <property name="has_separator">False</property> <child internal-child="vbox"> <widget class="GtkVBox" id="vbox6"> @@ -1913,4 +2055,192 @@ You can add and remove authentication keys in this dialog. A key makes it possib </child> </widget> +<widget class="GtkDialog" id="dialog_sources_list"> + <property name="border_width">6</property> + <property name="title" translatable="yes"></property> + <property name="type">GTK_WINDOW_TOPLEVEL</property> + <property name="window_position">GTK_WIN_POS_NONE</property> + <property name="modal">False</property> + <property name="resizable">False</property> + <property name="destroy_with_parent">False</property> + <property name="decorated">True</property> + <property name="skip_taskbar_hint">False</property> + <property name="skip_pager_hint">False</property> + <property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property> + <property name="gravity">GDK_GRAVITY_NORTH_WEST</property> + <property name="focus_on_map">True</property> + <property name="urgency_hint">False</property> + <property name="has_separator">False</property> + + <child internal-child="vbox"> + <widget class="GtkVBox" id="dialog-vbox1"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">12</property> + + <child internal-child="action_area"> + <widget class="GtkHButtonBox" id="dialog-action_area1"> + <property name="visible">True</property> + <property name="layout_style">GTK_BUTTONBOX_END</property> + + <child> + <widget class="GtkButton" id="button_cancel"> + <property name="visible">True</property> + <property name="can_default">True</property> + <property name="can_focus">True</property> + <property name="label">gtk-cancel</property> + <property name="use_stock">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="response_id">-6</property> + </widget> + </child> + + <child> + <widget class="GtkButton" id="button_add"> + <property name="visible">True</property> + <property name="can_default">True</property> + <property name="can_focus">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="response_id">-5</property> + + <child> + <widget class="GtkImage" id="image2"> + <property name="visible">True</property> + <property name="stock">gtk-add</property> + <property name="icon_size">4</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + </widget> + </child> + </widget> + </child> + + <child> + <widget class="GtkButton" id="button_close"> + <property name="visible">True</property> + <property name="can_default">True</property> + <property name="can_focus">True</property> + <property name="label">gtk-close</property> + <property name="use_stock">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="response_id">-7</property> + </widget> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="pack_type">GTK_PACK_END</property> + </packing> + </child> + + <child> + <widget class="GtkHBox" id="hbox1"> + <property name="border_width">6</property> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">12</property> + + <child> + <widget class="GtkImage" id="image_sources_list"> + <property name="visible">True</property> + <property name="stock">gtk-dialog-question</property> + <property name="icon_size">6</property> + <property name="xalign">0</property> + <property name="yalign">0</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">True</property> + </packing> + </child> + + <child> + <widget class="GtkVBox" id="vbox1"> + <property name="visible">True</property> + <property name="homogeneous">False</property> + <property name="spacing">12</property> + + <child> + <widget class="GtkLabel" id="label_sources"> + <property name="visible">True</property> + <property name="label" translatable="yes"></property> + <property name="use_underline">False</property> + <property name="use_markup">False</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">True</property> + <property name="selectable">False</property> + <property name="xalign">0</property> + <property name="yalign">0.5</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + + <child> + <widget class="GtkScrolledWindow" id="scrolled_window"> + <property name="height_request">200</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property> + <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property> + <property name="shadow_type">GTK_SHADOW_IN</property> + <property name="window_placement">GTK_CORNER_TOP_LEFT</property> + + <child> + <widget class="GtkTreeView" id="treeview_sources"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="headers_visible">False</property> + <property name="rules_hint">True</property> + <property name="reorderable">False</property> + <property name="enable_search">True</property> + <property name="fixed_height_mode">False</property> + <property name="hover_selection">False</property> + <property name="hover_expand">False</property> + </widget> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">True</property> + <property name="fill">True</property> + </packing> + </child> + </widget> + </child> +</widget> + </glade-interface> 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</property> </child> <child> - <widget class="GtkLabel" id="label27"> + <widget class="GtkVBox" id="vbox17"> <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="label" translatable="yes"><b><big>You need to manually reload the latest information about updates</big></b> + <property name="homogeneous">False</property> + <property name="spacing">12</property> + + <child> + <widget class="GtkLabel" id="label27"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes"><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".</property> - <property name="use_underline">False</property> - <property name="use_markup">True</property> - <property name="justify">GTK_JUSTIFY_LEFT</property> - <property name="wrap">True</property> - <property name="selectable">True</property> - <property name="xalign">0</property> - <property name="yalign">0</property> - <property name="xpad">0</property> - <property name="ypad">0</property> - <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> - <property name="width_chars">-1</property> - <property name="single_line_mode">False</property> - <property name="angle">0</property> + <property name="use_underline">False</property> + <property name="use_markup">True</property> + <property name="justify">GTK_JUSTIFY_LEFT</property> + <property name="wrap">True</property> + <property name="selectable">True</property> + <property name="xalign">0</property> + <property name="yalign">0</property> + <property name="xpad">0</property> + <property name="ypad">0</property> + <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> + <property name="width_chars">-1</property> + <property name="single_line_mode">False</property> + <property name="angle">0</property> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> + + <child> + <widget class="GtkCheckButton" id="checkbutton_reminder"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="label" translatable="yes">_Hide this information in the future</property> + <property name="use_underline">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="focus_on_click">True</property> + <property name="active">False</property> + <property name="inconsistent">False</property> + <property name="draw_indicator">True</property> + <signal name="toggled" handler="on_checkbutton_reminder_toggled" last_modification_time="Thu, 23 Feb 2006 06:54:08 GMT"/> + </widget> + <packing> + <property name="padding">0</property> + <property name="expand">False</property> + <property name="fill">False</property> + </packing> + </child> </widget> <packing> <property name="padding">0</property> 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 @@ -<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*--> -<!DOCTYPE glade-project SYSTEM "http://glade.gnome.org/glade-project-2.0.dtd"> - -<glade-project> - <name></name> - <program_name></program_name> - <gnome_support>FALSE</gnome_support> -</glade-project> 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 @@ <?xml version="1.0"?> <mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'> - <mime-type type="text/x-apt-sources"> + <mime-type type="text/x-apt-sources-list"> <comment>Software Channel List</comment> <glob pattern="sources.list"/> </mime-type> 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 @@ -<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*--> -<!DOCTYPE glade-project SYSTEM "http://glade.gnome.org/glade-project-2.0.dtd"> - -<glade-project> - <name></name> - <program_name></program_name> - <gnome_support>FALSE</gnome_support> -</glade-project> 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 @@ +<?xml version="1.0" ?> +<gconfschemafile> + <schemalist> + <schema> + <key>/schemas/apps/update-manager/remind_reload</key> + <applyto>/apps/update-manager/remind_reload</applyto> + <owner>update-manager</owner> + <type>bool</type> + <default>True</default> + + <locale name="C"> + <short>Remind to reload the channel list</short> + <long> + 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. + </long> + </locale> + </schema> + <schema> + <key>/schemas/apps/update-manager/show_details</key> + <applyto>/apps/update-manager/show_details</applyto> + <owner>update-manager</owner> + <type>bool</type> + <default>False</default> + + <locale name="C"> + <short>Show details of an update</short> + <long> + Stores the state of the expander that contains the + list of changs and the description + </long> + </locale> + </schema> + <schema> + <key>/schemas/apps/update-manager/window_size</key> + <applyto>/apps/update-manager/window_size</applyto> + <owner>update-manager</owner> + <type>pair</type> + <car_type>int</car_type> + <cdr_type>int</cdr_type> + + <locale name="C"> + <short>The window size</short> + <long> + Stores the size of the update-manager dialog + </long> + </locale> + </schema> + </schemalist> +</gconfschemafile> + 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 @@ -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 <zbrox@i-space.org>\n" "Language-Team: Bulgarian <dict@fsa-bg.org>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "" +#~ "Автоматичен подписващ ключ за архива на Ubuntu <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "" +#~ "Автоматичен подписващ ключ за дисковете на Ubuntu <cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "Избор на ключов файл" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Грешка при премахване на ключа" @@ -940,17 +1025,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian Non-US (Testing)" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "" -#~ "Автоматичен подписващ ключ за архива на Ubuntu <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "" -#~ "Автоматичен подписващ ключ за дисковете на Ubuntu <cdimage@ubuntu.com>" - -#~ msgid "Choose a key-file" -#~ msgstr "Избор на ключов файл" - #~ msgid "Your system is up-to-date!" #~ msgstr "Програмите са обновени до последните версии!" @@ -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 <mwh@sysrq.dk>\n" "Language-Team: Danish <dansk@klid.dk>\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 "" "<big><b>Error scaning the CD</b></big>\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 @@ -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 <frank@scirocco-5v-turbo.de>\n" "Language-Team: German GNOME Translations <gnome-de@gnome.org>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "" +#~ "Automatischer Signaturschlüssel des Ubuntu-Archivs <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "" +#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image <cdimage@ubuntu." +#~ "com>" + +#~ msgid "Choose a key-file" +#~ msgstr "Eine Schlüsseldatei wählen" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Fehler beim Entfernen des Schlüssels" @@ -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 "<b>Packages to install:</b>" #~ msgstr "<b>Zu installierende Pakete:</b>" @@ -1025,15 +1108,6 @@ msgstr "" #~ msgid "US export restricted software" #~ msgstr "Software mit US-Exportbeschränkungen" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "" -#~ "Automatischer Signaturschlüssel des Ubuntu-Archivs <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "" -#~ "Automatischer Signaturschlüssel für das Ubuntu-CD-Image <cdimage@ubuntu." -#~ "com>" - #~ msgid "Repositories changed" #~ msgstr "Geänderte Repositories" @@ -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 <pkst@gnome.org>\n" "Language-Team: Greek <team@gnome.gr>\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 "<b>Πηγές λογισμικού</b>" + +#: ../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 "" "<big><b>Error scaning the CD</b></big>\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 "<b>Πηγές λογισμικού</b>" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -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 <adamw@gnome.org>\n" "Language-Team: Canadian English <adamw@gnome.org>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "Choose a key-file" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Error removing the key" @@ -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 "<b>Packages to install:</b>" #~ msgstr "<b>Packages to install:</b>" @@ -1005,12 +1085,6 @@ msgstr "" #~ msgid "US export restricted software" #~ msgstr "US export restricted software" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" - #~ msgid "Repositories changed" #~ msgstr "Repositories changed" diff --git a/po/en_GB.po b/po/en_GB.po index 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 <morwen@evilmagic.org>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "Choose a key-file" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Error removing the key" @@ -942,15 +1025,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian Non-US (Testing)" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" - -#~ msgid "Choose a key-file" -#~ msgstr "Choose a key-file" - #~ msgid "Your system is up-to-date!" #~ msgstr "Your system is up-to-date!" @@ -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 <koke@amedias.org>\n" "Language-Team: Spanish <traductores@gnome.org>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "" +#~ "Clave de firmado automático del archivo de Ubuntu <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "" +#~ "Clave de firmado automático de las imágenes de CD de Ubuntu " +#~ "<cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "Elija un fichero de clave" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Hubo un error al quitar la clave" @@ -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 "<b>Packages to install:</b>" #~ msgstr "<b>Paquetes a instalar:</b>" @@ -1020,15 +1103,6 @@ msgstr "" #~ msgid "US export restricted software" #~ msgstr "Software con restricciones de exportación estadounidenses" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "" -#~ "Clave de firmado automático del archivo de Ubuntu <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "" -#~ "Clave de firmado automático de las imágenes de CD de Ubuntu " -#~ "<cdimage@ubuntu.com>" - #~ msgid "Repositories changed" #~ msgstr "Hay cambios en los repositorios" @@ -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 <timo.jyrinki@iki.fi>\n" "Language-Team: Finnish <LL@li.org>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "" +#~ "Ubuntu-arkiston automaattinen allekirjoitusavain <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "" +#~ "Ubuntun CD-vedosten automaattinen allekirjoitusavain <cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "Valitse avaintiedosto" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Virhe poistettaessa avainta" @@ -736,9 +821,6 @@ msgstr "" #~ msgid "Cancel downloading of the changelog" #~ msgstr "Keskeytä muutosluettelon lataus" -#~ msgid "Choose a key-file" -#~ msgstr "Valitse avaintiedosto" - #~ msgid "<b>Packages to install:</b>" #~ msgstr "<b>Asennettavat paketit:</b>" @@ -997,14 +1079,6 @@ msgstr "" #~ msgid "US export restricted software" #~ msgstr "USA:sta vientirajoitetut ohjelmat" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "" -#~ "Ubuntu-arkiston automaattinen allekirjoitusavain <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "" -#~ "Ubuntun CD-vedosten automaattinen allekirjoitusavain <cdimage@ubuntu.com>" - #~ msgid "Repositories changed" #~ msgstr "Varastot muuttuneet" @@ -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 <gnomefr@traduc.org>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "" +#~ "Clé de signature automatique de l'archive Ubuntu <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "" +#~ "Clé de signature automatique des cédéroms Ubuntu <cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "Choisir un fichier de clé" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Erreur lors de la suppression de la clé" @@ -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 "<b>Packages to install:</b>" #~ msgstr "<b>Paquets à installer :</b>" @@ -1017,14 +1099,6 @@ msgstr "" #~ msgid "US export restricted software" #~ msgstr "Logiciel restreint à l'export (USA)" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "" -#~ "Clé de signature automatique de l'archive Ubuntu <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "" -#~ "Clé de signature automatique des cédéroms Ubuntu <cdimage@ubuntu.com>" - #~ msgid "Repositories changed" #~ msgstr "Les dépôts ont été modifiés" @@ -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 <nacho.resa@gmail.com>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "" +#~ "Clave de asinado automático do ficheiro de Ubuntu <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "" +#~ "Clave de asinado automático das imaxes de CD de Ubuntu <cdimage@ubuntu." +#~ "com>" + +#~ msgid "Choose a key-file" +#~ msgstr "Escolla un ficheiro de clave" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Erro ao quitar a clave" @@ -924,18 +1010,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian Non-US (Probas)" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "" -#~ "Clave de asinado automático do ficheiro de Ubuntu <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "" -#~ "Clave de asinado automático das imaxes de CD de Ubuntu <cdimage@ubuntu." -#~ "com>" - -#~ msgid "Choose a key-file" -#~ msgstr "Escolla un ficheiro de clave" - #~ msgid "Your system is up-to-date!" #~ msgstr "O seu sistema está actualizado!" @@ -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 <he@li.org>\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 "" "<big><b>Error scaning the CD</b></big>\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 "המערכת שלך מעודכנת!" @@ -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 <kelemeng@gnome.hu>\n" "Language-Team: Hungarian <gnome@gnome.hu>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "Ubuntu archívum automatikus aláírókulcs <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "Ubuntu CD-kép automatikus aláírókulcs <cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "Válasszon egy kulcsfájlt" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Hiba a kulcs eltávolítása közben" @@ -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 "<b>Packages to install:</b>" #~ msgstr "<b>Telepítendő csomagok:</b>" @@ -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 <ftpmaster@ubuntu.com>" -#~ msgstr "Ubuntu archívum automatikus aláírókulcs <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "Ubuntu CD-kép automatikus aláírókulcs <cdimage@ubuntu.com>" - #~ msgid "Repositories changed" #~ msgstr "Megváltoztak a tárolók" @@ -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 <thesaltydog@gmail.com>\n" "Language-Team: Italian <it@li.org>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "" +#~ "Chiave di Firma Automatica per l'Archivio Ubuntu <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "" +#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu <cdimage@ubuntu." +#~ "com>" + +#~ msgid "Choose a key-file" +#~ msgstr "Scegli un file di chiave" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Errore rimuovendo la chiave" @@ -928,18 +1014,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian·Non-US·(Testing)" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "" -#~ "Chiave di Firma Automatica per l'Archivio Ubuntu <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "" -#~ "Chiave di Firma Automatica per l'immagine CD di Ubuntu <cdimage@ubuntu." -#~ "com>" - -#~ msgid "Choose a key-file" -#~ msgstr "Scegli un file di chiave" - #~ msgid "Your system is up-to-date!" #~ msgstr "Il tuo sistema è aggiornato!" @@ -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 <ikuya@fruitsbasket.info>\n" "Language-Team: Ubuntu-ja <ubuntu-ja-users@freeml.com>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "キーファイルを選択" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "キー削除のエラー" @@ -732,9 +815,6 @@ msgstr "" #~ msgid "Cancel downloading of the changelog" #~ msgstr "変更点の取得を中止" -#~ msgid "Choose a key-file" -#~ msgstr "キーファイルを選択" - #~ msgid "<b>Comment:</b>" #~ msgstr "<b>コメント:</b>" @@ -902,12 +982,6 @@ msgstr "" #~ msgid "US export restricted software" #~ msgstr "アメリカ合衆国外への輸出が禁止されているソフトウェア" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" - #~ msgid "Repositories changed" #~ msgstr "リポジトリが変更されました" @@ -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 <uid0@akl.lt>\n" "Language-Team: Lithuanian <komp_lt@konferencijos.lt>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "Ubuntu archyvo automatinio pasirašymo raktas <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "" +#~ "Ubuntu CD atvaizdžių automatinio pasirašymo raktas <cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "Pasirinkite rakto bylą" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Šalinant raktą įvyko klaida" @@ -938,16 +1024,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian Non-US (Testing)" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "Ubuntu archyvo automatinio pasirašymo raktas <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "" -#~ "Ubuntu CD atvaizdžių automatinio pasirašymo raktas <cdimage@ubuntu.com>" - -#~ msgid "Choose a key-file" -#~ msgstr "Pasirinkite rakto bylą" - #~ msgid "Your system is up-to-date!" #~ msgstr "Jūsų sistema yra atnaujinta!" @@ -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: Арангел Ангов <ufo@linux.net.mk>\n" "Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "Одберете датотека за клуч" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Грешка при отстранување на клучот" @@ -928,15 +1013,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian Non-US (Testing)" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" - -#~ msgid "Choose a key-file" -#~ msgstr "Одберете датотека за клуч" - #~ msgid "Your system is up-to-date!" #~ msgstr "Вашиот систем е надграден!" @@ -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 <terance@lyse.net>\n" "Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "Velg en nøkkelfil" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Feil under fjerning av nøkkel" @@ -937,15 +1020,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian Non-US (Testing)" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" - -#~ msgid "Choose a key-file" -#~ msgstr "Velg en nøkkelfil" - #~ msgid "Your system is up-to-date!" #~ msgstr "Systemet er helt oppdatert!" @@ -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 <zaydeep@hotmail.com>\n" "Language-Team: Nepali <info@mpp.org.np>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "युबन्टु संग्रह स्वचालित हस्ताक्षर कुञ्जि <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "युबन्टु सिडि छवि स्वचालित हस्ताक्षर कुञ्जि <cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "एउटा कुञ्जि-फाइल रोज्नुहोस" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "कुञ्जि हटाउँदा त्रुटि" @@ -912,15 +995,6 @@ msgstr "" #~ msgid "Debian Unstable \"Sid\"" #~ msgstr "डेबियन अचल सुरक्षा अद्यावधिकहरु" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "युबन्टु संग्रह स्वचालित हस्ताक्षर कुञ्जि <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "युबन्टु सिडि छवि स्वचालित हस्ताक्षर कुञ्जि <cdimage@ubuntu.com>" - -#~ msgid "Choose a key-file" -#~ msgstr "एउटा कुञ्जि-फाइल रोज्नुहोस" - #~ msgid "Your system is up-to-date!" #~ msgstr "तपाइं को प्रणालि अप-टु-डेट छ!" @@ -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 <michiels@gnome.org>\n" "Language-Team: Nederlands <vertaling@vrijschrift.org>\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 "" "<big><b>Error scaning the CD</b></big>\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 @@ -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 <terance@lyse.net>\n" "Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "Velg en nøkkelfil" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Feil under fjerning av nøkkel" @@ -937,15 +1020,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian Non-US (Testing)" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" - -#~ msgid "Choose a key-file" -#~ msgstr "Velg en nøkkelfil" - #~ msgid "Your system is up-to-date!" #~ msgstr "Systemet er helt oppdatert!" @@ -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 <amanpreetalam@yahoo.com>\n" "Language-Team: Punjabi <fedora-transa-pa@redhat.com>\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 "<b>ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ</b>" + +#: ../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 "" "<big><b>Error scaning the CD</b></big>\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 "<b>ਇੰਟਰਨੈਟ ਅੱਪਡੇਟ</b>" + +#: ../SoftwareProperties/dialog_sources_list.py:71 +msgid "Add the following software channel?" +msgid_plural "Add the following software channels?" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:74 +msgid "You can install software from a channel. Use trusted channels, only." +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:78 +msgid "_Add Channel" +msgid_plural "_Add Channels" +msgstr[0] "" +msgstr[1] "" + +#: ../SoftwareProperties/dialog_sources_list.py:91 +msgid "Could not add any software channels" +msgstr "" + +#: ../SoftwareProperties/dialog_sources_list.py:92 +#, python-format +msgid "The file '%s' does not contain any valid software channels." +msgstr "" + #: ../DistUpgrade/DistUpgradeCache.py:92 msgid "Broken packages" msgstr "" @@ -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 "<b>ਵੇਰਵਾ</b>" + +#: ../data/update-manager.schemas.in.h:4 +msgid "Stores the size of the update-manager dialog" +msgstr "" + +#: ../data/update-manager.schemas.in.h:5 +msgid "" +"Stores the state of the expander that contains the list of changs and the " +"description" +msgstr "" + +#: ../data/update-manager.schemas.in.h:6 +msgid "The window size" +msgstr "" + #. ChangelogURI #: ../channels/Ubuntu.info.in.h:4 #, no-c-format @@ -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 <zyga@www.suxx.pl>\n" "Language-Team: Polish <translators@gnomepl.org>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "Klucz automatycznego podpisu archiwum Ubuntu <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "Klucz automatycznego podpisu płyty CD Ubuntu <cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "Wybierz plik z kluczem" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Błąd podczas usuwania klucza" @@ -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 "<b>Packages to install:</b>" #~ msgstr "<b>Pakiety do zainstalowania:</b>" @@ -1003,12 +1083,6 @@ msgstr "" #~ msgid "US export restricted software" #~ msgstr "Oprogramowanie objęte restrykcjami eksportowymi USA" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "Klucz automatycznego podpisu archiwum Ubuntu <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "Klucz automatycznego podpisu płyty CD Ubuntu <cdimage@ubuntu.com>" - #~ msgid "Repositories changed" #~ msgstr "Repozytoria zmienione" diff --git a/po/pt_BR.po b/po/pt_BR.po index 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 <segfault@ubuntu.com>\n" "Language-Team: Ubuntu-BR <tradutores@listas.ubuntubrasil.org>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "Choose a key-file" + #~ msgid "" #~ "There is not enough free space on your system to download the required " #~ "pacakges. Please free some space before trying again with e.g. 'sudo apt-" @@ -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 "<b>Packages to install:</b>" #~ msgstr "<b>Packages to install:</b>" @@ -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 <ftpmaster@ubuntu.com>" -#~ msgstr "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" - #~ msgid "Repositories changed" #~ msgstr "Repositories changed" @@ -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 <dand@gnome.ro>\n" "Language-Team: Romanian <gnomero-list@lists.sourceforge.net>\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 "" "<big><b>Error scaning the CD</b></big>\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 @@ -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 <murf@e-tools.com>\n" "Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\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 "" "<big><b>Error scaning the CD</b></big>\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 @@ -744,6 +818,18 @@ msgid "Non-DFSG-compatible Software" msgstr "" #, fuzzy +#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" +#~ msgstr "com" + +#, fuzzy +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "com" + +#, fuzzy +#~ msgid "Choose a key-file" +#~ msgstr "a Urufunguzo IDOSIYE" + +#, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "i Urufunguzo" @@ -760,10 +846,6 @@ msgstr "" #~ msgstr "Iyimura... i" #, fuzzy -#~ msgid "Choose a key-file" -#~ msgstr "a Urufunguzo IDOSIYE" - -#, fuzzy #~ msgid "<b>Packages to install:</b>" #~ msgstr "<B Kuri Kwinjiza porogaramu B" @@ -1024,14 +1106,6 @@ msgstr "" #~ msgstr "Kohereza Nta gukoresha bisesuye" #, fuzzy -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "com" - -#, fuzzy -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "com" - -#, fuzzy #~ msgid "Repositories changed" #~ msgstr "Byahinduwe" @@ -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 <menthos@menthos.com>\n" "Language-Team: Swedish <sv@li.org>\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 "" "<big><b>Error scaning the CD</b></big>\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 @@ -723,6 +801,10 @@ 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 "<b>Details</b>" #~ msgstr "<b>Detaljer</b>" @@ -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" @@ -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 <mvd@mylinux.ua>\n" "Language-Team: Ukrainian <uk@li.org>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "Автоматичний ключ підпису архіву Ubuntu <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "Автоматичний ключ підпису компакт-диску Ubuntu <cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "Виберіть ключовий файл" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Помилка видалення ключа" @@ -931,15 +1016,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian поза США (Тестовий)" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "Автоматичний ключ підпису архіву Ubuntu <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "Автоматичний ключ підпису компакт-диску Ubuntu <cdimage@ubuntu.com>" - -#~ msgid "Choose a key-file" -#~ msgstr "Виберіть ключовий файл" - #~ msgid "Your system is up-to-date!" #~ msgstr "Ваша система оновлена!" diff --git a/po/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 <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\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 "" "<big><b>Error scaning the CD</b></big>\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 @@ -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 <clytie@riverland.net.au>\n" "Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "Khóa ký tự động kho Ubuntu <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "Khóa ký tự động ảnh đĩa CD Ubuntu <cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "Chọn tập tin khóa" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "Gặp lỗi khi gỡ bỏ khóa" @@ -913,15 +994,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Không Mỹ Debian (Thử ra)" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "Khóa ký tự động kho Ubuntu <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "Khóa ký tự động ảnh đĩa CD Ubuntu <cdimage@ubuntu.com>" - -#~ msgid "Choose a key-file" -#~ msgstr "Chọn tập tin khóa" - #~ msgid "Your system is up-to-date!" #~ msgstr "Hệ thống bạn toàn mới nhất." @@ -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 <translations@canonical.com>\n" "Language-Team: Xhosa <xh-translate@ubuntu.com>\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 "" "<big><b>Error scaning the CD</b></big>\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 <fundawang@linux.net.cn>\n" "Language-Team: zh_CN <i18n-translation@lists.linux.net.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 "" "<big><b>Error scaning the CD</b></big>\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 <abel@oaka.org>\n" "Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "Ubuntu 套件自動簽署用密碼匙 <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "Ubuntu 光碟自動簽署用密碼匙 <cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "選擇密碼匙檔" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "移除密碼匙時發生錯誤" @@ -909,15 +992,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian Non-US (測試版)" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "Ubuntu 套件自動簽署用密碼匙 <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "Ubuntu 光碟自動簽署用密碼匙 <cdimage@ubuntu.com>" - -#~ msgid "Choose a key-file" -#~ msgstr "選擇密碼匙檔" - #~ msgid "Your system is up-to-date!" #~ msgstr "系統已經在最新狀態!" diff --git a/po/zh_TW.po b/po/zh_TW.po index 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 <abel@oaka.org>\n" "Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\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 "" "<big><b>Error scaning the CD</b></big>\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 <ftpmaster@ubuntu.com>" +#~ msgstr "Ubuntu 套件自動簽署用金鑰 <ftpmaster@ubuntu.com>" + +#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" +#~ msgstr "Ubuntu 光碟自動簽署用金鑰 <cdimage@ubuntu.com>" + +#~ msgid "Choose a key-file" +#~ msgstr "選擇金鑰檔" + #, fuzzy #~ msgid "Error fetching the packages" #~ msgstr "移除金鑰時發生錯誤" @@ -908,15 +991,6 @@ msgstr "" #~ msgid "Debian Non-US (Testing)" #~ msgstr "Debian Non-US (測試版)" -#~ msgid "Ubuntu Archive Automatic Signing Key <ftpmaster@ubuntu.com>" -#~ msgstr "Ubuntu 套件自動簽署用金鑰 <ftpmaster@ubuntu.com>" - -#~ msgid "Ubuntu CD Image Automatic Signing Key <cdimage@ubuntu.com>" -#~ msgstr "Ubuntu 光碟自動簽署用金鑰 <cdimage@ubuntu.com>" - -#~ msgid "Choose a key-file" -#~ msgstr "選擇金鑰檔" - #~ msgid "Your system is up-to-date!" #~ msgstr "系統已經在最新狀態!" @@ -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"] ) |
