diff options
| author | Michael Vogt <egon@top> | 2005-11-29 17:31:21 +0100 |
|---|---|---|
| committer | Michael Vogt <egon@top> | 2005-11-29 17:31:21 +0100 |
| commit | a79e4fc80ef854844e560e5b547d1398ab149360 (patch) | |
| tree | e321ca95a5573529a4261ca1fdbd01b14c4a17af | |
| parent | 4fce0fdfe15c8ab88d63e3919670e1371eb38fb9 (diff) | |
| download | python-apt-a79e4fc80ef854844e560e5b547d1398ab149360.tar.gz | |
* make the software preferences work again completely
| -rw-r--r-- | SoftwareProperties/SoftwareProperties.py | 10 | ||||
| -rw-r--r-- | SoftwareProperties/__init__.py | 1 | ||||
| -rw-r--r-- | SoftwareProperties/aptsources.py | 6 | ||||
| -rw-r--r-- | SoftwareProperties/dialog_edit.py | 2 | ||||
| -rw-r--r-- | channels/Ubuntu.info.in | 25 | ||||
| -rw-r--r-- | data/SoftwareProperties.glade | 3 | ||||
| -rw-r--r-- | gnome-software-properties | 8 | ||||
| -rw-r--r-- | po/da.po | 12 | ||||
| -rw-r--r-- | po/de.po | 12 | ||||
| -rw-r--r-- | po/el.po | 12 | ||||
| -rw-r--r-- | po/en_CA.po | 12 | ||||
| -rw-r--r-- | po/es.po | 12 | ||||
| -rw-r--r-- | po/fi.po | 12 | ||||
| -rw-r--r-- | po/fr.po | 12 | ||||
| -rw-r--r-- | po/hu.po | 12 | ||||
| -rw-r--r-- | po/ja.po | 12 | ||||
| -rw-r--r-- | po/pl.po | 12 | ||||
| -rw-r--r-- | po/pt_BR.po | 12 | ||||
| -rw-r--r-- | po/ro.po | 12 | ||||
| -rw-r--r-- | po/rw.po | 12 | ||||
| -rw-r--r-- | po/sv.po | 12 | ||||
| -rw-r--r-- | po/xh.po | 12 | ||||
| -rw-r--r-- | po/zh_CN.po | 12 | ||||
| -rwxr-xr-x | setup.py | 4 |
24 files changed, 131 insertions, 120 deletions
diff --git a/SoftwareProperties/SoftwareProperties.py b/SoftwareProperties/SoftwareProperties.py index 86586cc1..5c6e8fef 100644 --- a/SoftwareProperties/SoftwareProperties.py +++ b/SoftwareProperties/SoftwareProperties.py @@ -29,6 +29,7 @@ import apt_pkg import gobject import shutil import gettext +import os #sys.path.append("@prefix/share/update-manager/python") @@ -101,9 +102,12 @@ class SoftwareProperties(SimpleGladeApp): self.treeview1.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.treeview1.append_column(source_col) self.sourceslist = aptsources.SourcesList() @@ -123,13 +127,13 @@ class SoftwareProperties(SimpleGladeApp): for source in self.sourceslist.list: if source.invalid or source.disabled: continue - (a_type, dists, comps) = self.matcher.match(source) + (a_type, dist, comps) = self.matcher.match(source) contents = "" if source.comment != "": contents += "<i>%s</i>\n\n" % (source.comment) - contents += "%s <small>(%s)</small>" % (dists, a_type) - + contents +="<big><b>%s </b></big> (%s) <small>\n%s</small>" % (dist,a_type, comps) + self.source_store.append([contents, not source.disabled, source]) def reload_keyslist(self): diff --git a/SoftwareProperties/__init__.py b/SoftwareProperties/__init__.py index e69de29b..1e6834bd 100644 --- a/SoftwareProperties/__init__.py +++ b/SoftwareProperties/__init__.py @@ -0,0 +1 @@ +from SoftwareProperties import SoftwareProperties diff --git a/SoftwareProperties/aptsources.py b/SoftwareProperties/aptsources.py index 640a70b4..aa3cbb5a 100644 --- a/SoftwareProperties/aptsources.py +++ b/SoftwareProperties/aptsources.py @@ -27,12 +27,12 @@ import re import apt_pkg import glob -from DistInfo import DistInfo +from UpdateManager.Common.DistInfo import DistInfo # actual source.list entries class SourceEntry: - def __init__(self, line,file): + def __init__(self, line,file=None): self.invalid = False self.disabled = False self.type = "" @@ -41,6 +41,8 @@ class SourceEntry: self.comps = [] self.comment = "" self.line = line + if file == None: + file = apt_pkg.Config.FindDir("Dir::Etc")+apt_pkg.Config.Find("Dir::Etc::sourcelist") self.file = file self.parse(line) diff --git a/SoftwareProperties/dialog_edit.py b/SoftwareProperties/dialog_edit.py index 32e6ac0c..87cc9799 100644 --- a/SoftwareProperties/dialog_edit.py +++ b/SoftwareProperties/dialog_edit.py @@ -38,7 +38,7 @@ class dialog_edit: if os.path.exists("../data/SoftwarePropertiesDialogs.glade"): self.gladexml = gtk.glade.XML("../data/SoftwarePropertiesDialogs.glade") else: - self.gladexml = gtk.glade.XML("%s/SoftwarePropertiesDialogs.glade" % datadir) + self.gladexml = gtk.glade.XML("%s/glade/SoftwarePropertiesDialogs.glade" % datadir) self.main = self.gladexml.get_widget("dialog_edit") self.main.set_transient_for(parent) diff --git a/channels/Ubuntu.info.in b/channels/Ubuntu.info.in index 79d0ca2e..344ce243 100644 --- a/channels/Ubuntu.info.in +++ b/channels/Ubuntu.info.in @@ -1,9 +1,10 @@ _ChangelogURI: http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog -Suite: hoary + +Suite: breezy RepositoryType: deb _BaseURI: http://archive.ubuntu.com/ubuntu/ -_Description: Ubuntu 5.04 "Hoary Hedgehog" +_Description: Breezy 5.10 "Breezy Badger" Component: main Enabled: 1 _CompDescription: Oficially supported @@ -17,10 +18,10 @@ Component: multiverse Enabled: 0 _CompDescription: Non-free (Multiverse) -Suite: hoary-security +Suite: breezy-security RepositoryType: deb _BaseURI: http://security.ubuntu.com/ubuntu/ -_Description: Ubuntu 5.04 Security Updates +_Description: Ubuntu 5.10 Security Updates Component: main Enabled: 1 _CompDescription: Oficially supported @@ -34,10 +35,10 @@ Component: multiverse Enabled: 0 _CompDescription: Non-free (Multiverse) -Suite: breezy +Suite: breezy-updates RepositoryType: deb _BaseURI: http://archive.ubuntu.com/ubuntu/ -_Description: Breezy 5.10 "Breezy Badger" +_Description: Ubuntu 5.10 Updates Component: main Enabled: 1 _CompDescription: Oficially supported @@ -51,10 +52,10 @@ Component: multiverse Enabled: 0 _CompDescription: Non-free (Multiverse) -Suite: breezy-security +Suite: hoary RepositoryType: deb -_BaseURI: http://security.ubuntu.com/ubuntu/ -_Description: Ubuntu 5.10 Security Updates +_BaseURI: http://archive.ubuntu.com/ubuntu/ +_Description: Ubuntu 5.04 "Hoary Hedgehog" Component: main Enabled: 1 _CompDescription: Oficially supported @@ -68,10 +69,10 @@ Component: multiverse Enabled: 0 _CompDescription: Non-free (Multiverse) -Suite: breezy-updates +Suite: hoary-security RepositoryType: deb -_BaseURI: http://archive.ubuntu.com/ubuntu/ -_Description: Ubuntu 5.10 Updates +_BaseURI: http://security.ubuntu.com/ubuntu/ +_Description: Ubuntu 5.04 Security Updates Component: main Enabled: 1 _CompDescription: Oficially supported diff --git a/data/SoftwareProperties.glade b/data/SoftwareProperties.glade index b78d150f..045e234a 100644 --- a/data/SoftwareProperties.glade +++ b/data/SoftwareProperties.glade @@ -12,7 +12,7 @@ <property name="type">GTK_WINDOW_TOPLEVEL</property> <property name="window_position">GTK_WIN_POS_CENTER</property> <property name="modal">False</property> - <property name="resizable">False</property> + <property name="resizable">True</property> <property name="destroy_with_parent">False</property> <property name="decorated">True</property> <property name="skip_taskbar_hint">False</property> @@ -20,6 +20,7 @@ <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> <signal name="delete_event" handler="on_delete_event" last_modification_time="Mon, 04 Jul 2005 21:19:11 GMT"/> <child> diff --git a/gnome-software-properties b/gnome-software-properties index a1b61ced..2bc04755 100644 --- a/gnome-software-properties +++ b/gnome-software-properties @@ -35,9 +35,9 @@ import sys from optparse import OptionParser -sys.path.append("@prefix@/share/update-manager/python") +#sys.path.append("@prefix@/share/update-manager/python") -from SoftwareProperties import * +import SoftwareProperties if __name__ == "__main__": _ = gettext.gettext @@ -72,7 +72,7 @@ if __name__ == "__main__": gtk.glade.bindtextdomain(localesApp, localesDir) gtk.glade.textdomain(localesApp) -# data_dir="/usr/share/update-manager/" + #data_dir="/usr/share/update-manager/" data_dir="/tmp/xxx/share/update-manager/" - app = SoftwareProperties(data_dir,options) + app = SoftwareProperties.SoftwareProperties(data_dir,options) app.run() @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-15 17:30+0100\n" +"POT-Creation-Date: 2005-11-29 17:26+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" @@ -377,23 +377,23 @@ msgstr "Opdateringer" msgid "_Install" msgstr "_Installér" -#: ../SoftwareProperties/SoftwareProperties.py:218 +#: ../SoftwareProperties/SoftwareProperties.py:222 msgid "Choose a key-file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:227 +#: ../SoftwareProperties/SoftwareProperties.py:231 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:228 +#: ../SoftwareProperties/SoftwareProperties.py:232 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:240 +#: ../SoftwareProperties/SoftwareProperties.py:244 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:241 +#: ../SoftwareProperties/SoftwareProperties.py:245 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-15 17:30+0100\n" +"POT-Creation-Date: 2005-11-29 17:26+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" @@ -382,25 +382,25 @@ msgstr "Software-Aktualisierungen" msgid "_Install" msgstr "_Installieren" -#: ../SoftwareProperties/SoftwareProperties.py:218 +#: ../SoftwareProperties/SoftwareProperties.py:222 msgid "Choose a key-file" msgstr "Eine Schlüsseldatei wählen" -#: ../SoftwareProperties/SoftwareProperties.py:227 +#: ../SoftwareProperties/SoftwareProperties.py:231 msgid "Error importing selected file" msgstr "Fehler beim Importieren der gewählten Datei" -#: ../SoftwareProperties/SoftwareProperties.py:228 +#: ../SoftwareProperties/SoftwareProperties.py:232 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:240 +#: ../SoftwareProperties/SoftwareProperties.py:244 msgid "Error removing the key" msgstr "Fehler beim Entfernen des Schlüssels" -#: ../SoftwareProperties/SoftwareProperties.py:241 +#: ../SoftwareProperties/SoftwareProperties.py:245 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 " @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-15 17:30+0100\n" +"POT-Creation-Date: 2005-11-29 17:26+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" @@ -361,22 +361,22 @@ msgstr "" msgid "_Install" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:218 +#: ../SoftwareProperties/SoftwareProperties.py:222 msgid "Choose a key-file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:227 +#: ../SoftwareProperties/SoftwareProperties.py:231 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:228 +#: ../SoftwareProperties/SoftwareProperties.py:232 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:240 +#: ../SoftwareProperties/SoftwareProperties.py:244 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:241 +#: ../SoftwareProperties/SoftwareProperties.py:245 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" diff --git a/po/en_CA.po b/po/en_CA.po index f4a8810b..b9dc7aa8 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: \n" -"POT-Creation-Date: 2005-11-15 17:30+0100\n" +"POT-Creation-Date: 2005-11-29 17:26+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" @@ -376,23 +376,23 @@ msgstr "Software Updates" msgid "_Install" msgstr "_Install" -#: ../SoftwareProperties/SoftwareProperties.py:218 +#: ../SoftwareProperties/SoftwareProperties.py:222 msgid "Choose a key-file" msgstr "Choose a key-file" -#: ../SoftwareProperties/SoftwareProperties.py:227 +#: ../SoftwareProperties/SoftwareProperties.py:231 msgid "Error importing selected file" msgstr "Error importing selected file" -#: ../SoftwareProperties/SoftwareProperties.py:228 +#: ../SoftwareProperties/SoftwareProperties.py:232 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:240 +#: ../SoftwareProperties/SoftwareProperties.py:244 msgid "Error removing the key" msgstr "Error removing the key" -#: ../SoftwareProperties/SoftwareProperties.py:241 +#: ../SoftwareProperties/SoftwareProperties.py:245 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." @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-15 17:30+0100\n" +"POT-Creation-Date: 2005-11-29 17:26+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" @@ -379,25 +379,25 @@ msgstr "Actualizaciones de software" msgid "_Install" msgstr "_Instalar" -#: ../SoftwareProperties/SoftwareProperties.py:218 +#: ../SoftwareProperties/SoftwareProperties.py:222 msgid "Choose a key-file" msgstr "Elija un fichero de clave" -#: ../SoftwareProperties/SoftwareProperties.py:227 +#: ../SoftwareProperties/SoftwareProperties.py:231 msgid "Error importing selected file" msgstr "Hubo un error al importar el fichero seleccionado" -#: ../SoftwareProperties/SoftwareProperties.py:228 +#: ../SoftwareProperties/SoftwareProperties.py:232 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:240 +#: ../SoftwareProperties/SoftwareProperties.py:244 msgid "Error removing the key" msgstr "Hubo un error al quitar la clave" -#: ../SoftwareProperties/SoftwareProperties.py:241 +#: ../SoftwareProperties/SoftwareProperties.py:245 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 " @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-15 17:30+0100\n" +"POT-Creation-Date: 2005-11-29 17:26+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" @@ -375,23 +375,23 @@ msgstr "Ohjelmapäivitykset" msgid "_Install" msgstr "_Asenna" -#: ../SoftwareProperties/SoftwareProperties.py:218 +#: ../SoftwareProperties/SoftwareProperties.py:222 msgid "Choose a key-file" msgstr "Valitse avaintiedosto" -#: ../SoftwareProperties/SoftwareProperties.py:227 +#: ../SoftwareProperties/SoftwareProperties.py:231 msgid "Error importing selected file" msgstr "Virhe tuotaessa valittua avainta" -#: ../SoftwareProperties/SoftwareProperties.py:228 +#: ../SoftwareProperties/SoftwareProperties.py:232 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:240 +#: ../SoftwareProperties/SoftwareProperties.py:244 msgid "Error removing the key" msgstr "Virhe poistettaessa avainta" -#: ../SoftwareProperties/SoftwareProperties.py:241 +#: ../SoftwareProperties/SoftwareProperties.py:245 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." @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager 0.37.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-15 17:30+0100\n" +"POT-Creation-Date: 2005-11-29 17:26+0100\n" "PO-Revision-Date: 2005-04-04 19:43+0200\n" "Last-Translator: \n" "Language-Team: French <gnomefr@traduc.org>\n" @@ -378,25 +378,25 @@ msgstr "Mises à jour des logiciels" msgid "_Install" msgstr "_Installer" -#: ../SoftwareProperties/SoftwareProperties.py:218 +#: ../SoftwareProperties/SoftwareProperties.py:222 msgid "Choose a key-file" msgstr "Choisir un fichier de clé" -#: ../SoftwareProperties/SoftwareProperties.py:227 +#: ../SoftwareProperties/SoftwareProperties.py:231 msgid "Error importing selected file" msgstr "Erreur lors du chargement du fichier sélectionné" -#: ../SoftwareProperties/SoftwareProperties.py:228 +#: ../SoftwareProperties/SoftwareProperties.py:232 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:240 +#: ../SoftwareProperties/SoftwareProperties.py:244 msgid "Error removing the key" msgstr "Erreur lors de la suppression de la clé" -#: ../SoftwareProperties/SoftwareProperties.py:241 +#: ../SoftwareProperties/SoftwareProperties.py:245 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 " @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-15 17:30+0100\n" +"POT-Creation-Date: 2005-11-29 17:26+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" @@ -377,23 +377,23 @@ msgstr "Szoftverfrissítések" msgid "_Install" msgstr "_Telepítés" -#: ../SoftwareProperties/SoftwareProperties.py:218 +#: ../SoftwareProperties/SoftwareProperties.py:222 msgid "Choose a key-file" msgstr "Válasszon egy kulcsfájlt" -#: ../SoftwareProperties/SoftwareProperties.py:227 +#: ../SoftwareProperties/SoftwareProperties.py:231 msgid "Error importing selected file" msgstr "Hiba a kiválasztott fájl importálása közben" -#: ../SoftwareProperties/SoftwareProperties.py:228 +#: ../SoftwareProperties/SoftwareProperties.py:232 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:240 +#: ../SoftwareProperties/SoftwareProperties.py:244 msgid "Error removing the key" msgstr "Hiba a kulcs eltávolítása közben" -#: ../SoftwareProperties/SoftwareProperties.py:241 +#: ../SoftwareProperties/SoftwareProperties.py:245 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." @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-15 17:30+0100\n" +"POT-Creation-Date: 2005-11-29 17:26+0100\n" "PO-Revision-Date: 2005-03-23 10:23+0900\n" "Last-Translator: Hiroyuki Ikezoe <ikezoe@good-day.co.jp>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -376,23 +376,23 @@ msgstr "ソフトウェアのアップデート" msgid "_Install" msgstr "インストール(I)" -#: ../SoftwareProperties/SoftwareProperties.py:218 +#: ../SoftwareProperties/SoftwareProperties.py:222 msgid "Choose a key-file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:227 +#: ../SoftwareProperties/SoftwareProperties.py:231 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:228 +#: ../SoftwareProperties/SoftwareProperties.py:232 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:240 +#: ../SoftwareProperties/SoftwareProperties.py:244 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:241 +#: ../SoftwareProperties/SoftwareProperties.py:245 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager cvs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-15 17:30+0100\n" +"POT-Creation-Date: 2005-11-29 17:26+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" @@ -376,23 +376,23 @@ msgstr "Aktualizacje oprogramowania" msgid "_Install" msgstr "_Instaluj" -#: ../SoftwareProperties/SoftwareProperties.py:218 +#: ../SoftwareProperties/SoftwareProperties.py:222 msgid "Choose a key-file" msgstr "Wybierz plik z kluczem" -#: ../SoftwareProperties/SoftwareProperties.py:227 +#: ../SoftwareProperties/SoftwareProperties.py:231 msgid "Error importing selected file" msgstr "Błąd podczas importu wybranego pliku" -#: ../SoftwareProperties/SoftwareProperties.py:228 +#: ../SoftwareProperties/SoftwareProperties.py:232 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:240 +#: ../SoftwareProperties/SoftwareProperties.py:244 msgid "Error removing the key" msgstr "Błąd podczas usuwania klucza" -#: ../SoftwareProperties/SoftwareProperties.py:241 +#: ../SoftwareProperties/SoftwareProperties.py:245 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." diff --git a/po/pt_BR.po b/po/pt_BR.po index 181fd772..5a3bff1d 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-15 17:30+0100\n" +"POT-Creation-Date: 2005-11-29 17:26+0100\n" "PO-Revision-Date: 2005-03-29 13:36-0300\n" "Last-Translator: Raphael Higino <raphaelh@uai.com.br>\n" "Language-Team: Brazilian Portuguese <gnome-l10n-status@listas.cipsga.org." @@ -344,23 +344,23 @@ msgstr "" msgid "_Install" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:218 +#: ../SoftwareProperties/SoftwareProperties.py:222 msgid "Choose a key-file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:227 +#: ../SoftwareProperties/SoftwareProperties.py:231 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:228 +#: ../SoftwareProperties/SoftwareProperties.py:232 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:240 +#: ../SoftwareProperties/SoftwareProperties.py:244 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:241 +#: ../SoftwareProperties/SoftwareProperties.py:245 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-15 17:30+0100\n" +"POT-Creation-Date: 2005-11-29 17:26+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" @@ -378,23 +378,23 @@ msgstr "Actualizări software" msgid "_Install" msgstr "_Instalează" -#: ../SoftwareProperties/SoftwareProperties.py:218 +#: ../SoftwareProperties/SoftwareProperties.py:222 msgid "Choose a key-file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:227 +#: ../SoftwareProperties/SoftwareProperties.py:231 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:228 +#: ../SoftwareProperties/SoftwareProperties.py:232 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:240 +#: ../SoftwareProperties/SoftwareProperties.py:244 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:241 +#: ../SoftwareProperties/SoftwareProperties.py:245 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-15 17:30+0100\n" +"POT-Creation-Date: 2005-11-29 17:26+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" @@ -411,27 +411,27 @@ msgstr "Ibihuzagihe bya porogaramumudasobwa " msgid "_Install" msgstr "Kwinjiza porogaramu" -#: ../SoftwareProperties/SoftwareProperties.py:218 +#: ../SoftwareProperties/SoftwareProperties.py:222 #, fuzzy msgid "Choose a key-file" msgstr "a Urufunguzo IDOSIYE" -#: ../SoftwareProperties/SoftwareProperties.py:227 +#: ../SoftwareProperties/SoftwareProperties.py:231 #, fuzzy msgid "Error importing selected file" msgstr "Kuzaza Byahiswemo IDOSIYE" -#: ../SoftwareProperties/SoftwareProperties.py:228 +#: ../SoftwareProperties/SoftwareProperties.py:232 #, 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:240 +#: ../SoftwareProperties/SoftwareProperties.py:244 #, fuzzy msgid "Error removing the key" msgstr "i Urufunguzo" -#: ../SoftwareProperties/SoftwareProperties.py:241 +#: ../SoftwareProperties/SoftwareProperties.py:245 #, 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" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-15 17:30+0100\n" +"POT-Creation-Date: 2005-11-29 17:26+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" @@ -360,24 +360,24 @@ msgstr "Programvaruuppdateringar" msgid "_Install" msgstr "_Installera" -#: ../SoftwareProperties/SoftwareProperties.py:218 +#: ../SoftwareProperties/SoftwareProperties.py:222 #, fuzzy msgid "Choose a key-file" msgstr "Välj en spegel" -#: ../SoftwareProperties/SoftwareProperties.py:227 +#: ../SoftwareProperties/SoftwareProperties.py:231 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:228 +#: ../SoftwareProperties/SoftwareProperties.py:232 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:240 +#: ../SoftwareProperties/SoftwareProperties.py:244 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:241 +#: ../SoftwareProperties/SoftwareProperties.py:245 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: update-notifier\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-15 17:30+0100\n" +"POT-Creation-Date: 2005-11-29 17:26+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" @@ -348,23 +348,23 @@ msgstr "Bonisa izihlaziyo" msgid "_Install" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:218 +#: ../SoftwareProperties/SoftwareProperties.py:222 msgid "Choose a key-file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:227 +#: ../SoftwareProperties/SoftwareProperties.py:231 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:228 +#: ../SoftwareProperties/SoftwareProperties.py:232 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:240 +#: ../SoftwareProperties/SoftwareProperties.py:244 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:241 +#: ../SoftwareProperties/SoftwareProperties.py:245 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index fbb2e86c..44ce0169 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: \n" -"POT-Creation-Date: 2005-11-15 17:30+0100\n" +"POT-Creation-Date: 2005-11-29 17:26+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" @@ -352,23 +352,23 @@ msgstr "软件更新" msgid "_Install" msgstr "安装(_I)" -#: ../SoftwareProperties/SoftwareProperties.py:218 +#: ../SoftwareProperties/SoftwareProperties.py:222 msgid "Choose a key-file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:227 +#: ../SoftwareProperties/SoftwareProperties.py:231 msgid "Error importing selected file" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:228 +#: ../SoftwareProperties/SoftwareProperties.py:232 msgid "The selected file may not be a GPG key file or it might be corrupt." msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:240 +#: ../SoftwareProperties/SoftwareProperties.py:244 msgid "Error removing the key" msgstr "" -#: ../SoftwareProperties/SoftwareProperties.py:241 +#: ../SoftwareProperties/SoftwareProperties.py:245 msgid "The key you selected could not be removed. Please report this as a bug." msgstr "" @@ -20,7 +20,9 @@ os.system("cd channels; make") setup(name='update-manager', version='0.1', - packages=['SoftwareProperties','UpdateManager'], + packages=['SoftwareProperties', + 'UpdateManager', + 'UpdateManager.Common'], scripts=['gnome-software-properties','src/update-manager'], data_files=[('share/update-manager/glade', glob.glob("data/*.glade")), |
