summaryrefslogtreecommitdiff
path: root/portato/gui/gtk/windows.py
diff options
context:
space:
mode:
authornecoro <>2007-08-05 06:14:40 +0000
committernecoro <>2007-08-05 06:14:40 +0000
commit21a3215f2c81c3bf6b9838586c5c19cb5b7f5e21 (patch)
treee08ce263a05ef692af5cbba52a4ef221aa76a65a /portato/gui/gtk/windows.py
parent8ec40e4e4afe07b76016cacb9a121d5d339588da (diff)
downloadportato-21a3215f2c81c3bf6b9838586c5c19cb5b7f5e21.tar.gz
portato-21a3215f2c81c3bf6b9838586c5c19cb5b7f5e21.tar.bz2
portato-21a3215f2c81c3bf6b9838586c5c19cb5b7f5e21.zip
some translation fixes :)
Diffstat (limited to 'portato/gui/gtk/windows.py')
-rw-r--r--portato/gui/gtk/windows.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/portato/gui/gtk/windows.py b/portato/gui/gtk/windows.py
index cc70122..2cba5b2 100644
--- a/portato/gui/gtk/windows.py
+++ b/portato/gui/gtk/windows.py
@@ -613,7 +613,7 @@ class PackageTable:
tCell.set_property("activatable", True)
tCell.connect("toggled", self.cb_use_flag_toggled, store)
self.useList.append_column(gtk.TreeViewColumn(_("Enabled"), tCell, active = 0))
- self.useList.append_column(gtk.TreeViewColumn(_("Flags"), cell, text = 1))
+ self.useList.append_column(gtk.TreeViewColumn(_("Flag"), cell, text = 1))
self.useList.append_column(gtk.TreeViewColumn(_("Description"), cell, markup = 2))
self.useList.set_search_column(1)
@@ -1215,14 +1215,14 @@ class MainWindow (Window):
self.notebook.set_current_page(self.CONSOLE_PAGE)
if len(flags.newUseFlags) > 0:
- changed_flags_dialog("use flags")
+ changed_flags_dialog(_("use flags"))
flags.write_use_flags()
if len(flags.new_masked)>0 or len(flags.new_unmasked)>0 or len(flags.newTesting)>0:
debug("new masked: %s",flags.new_masked)
debug("new unmasked: %s", flags.new_unmasked)
debug("new testing: %s", flags.newTesting)
- changed_flags_dialog("masking keywords")
+ changed_flags_dialog(_("masking keywords"))
flags.write_masked()
flags.write_testing()
system.reload_settings()