diff options
| author | Karel Klic <kklic@redhat.com> | 2010-07-12 13:43:30 +0200 |
|---|---|---|
| committer | Karel Klic <kklic@redhat.com> | 2010-07-12 13:43:30 +0200 |
| commit | 39d1eb82b56410e41ee8dccf5b2d6f3cad217996 (patch) | |
| tree | b9ebc7eb53eae6ace922406db1d5a1de0b08b106 /src/Gui/PluginSettingsUI.py | |
| parent | 2ff305d1e59f9683642a58ec29df55fdb8dd2297 (diff) | |
| download | abrt-39d1eb82b56410e41ee8dccf5b2d6f3cad217996.tar.gz abrt-39d1eb82b56410e41ee8dccf5b2d6f3cad217996.tar.xz abrt-39d1eb82b56410e41ee8dccf5b2d6f3cad217996.zip | |
String updates
Diffstat (limited to 'src/Gui/PluginSettingsUI.py')
| -rw-r--r-- | src/Gui/PluginSettingsUI.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Gui/PluginSettingsUI.py b/src/Gui/PluginSettingsUI.py index aa8f5310..db4c92de 100644 --- a/src/Gui/PluginSettingsUI.py +++ b/src/Gui/PluginSettingsUI.py @@ -14,7 +14,7 @@ class PluginSettingsUI(): self.plugin_gui.add_from_file(pluginfo.getGUI()) self.dialog = self.plugin_gui.get_object("PluginDialog") if not self.dialog: - raise Exception(_("Can't find PluginDialog widget in UI description!")) + raise Exception(_("Cannot find PluginDialog widget in the UI description!")) self.dialog.set_title("%s" % pluginfo.getName()) if parent: self.dialog.set_transient_for(parent) @@ -56,7 +56,7 @@ class PluginSettingsUI(): elif type(widget) == gtk.CheckButton: widget.set_active(value == "yes") elif type(widget) == gtk.ComboBox: - print _("combo box is not implemented") + print _("Combo box is not implemented") else: #print "Plugin %s has no configuration." % self.plugin_name pass @@ -82,7 +82,7 @@ class PluginSettingsUI(): else: self.Settings[key] = "no" elif type(widget) == gtk.ComboBox: - print _("combo box is not implemented") + print _("Combo box is not implemented") def destroy(self): self.dialog.destroy() |
