From 1930852b70f71b7e777c6f6a093f784a956ac60d Mon Sep 17 00:00:00 2001 From: Yuri Chornoivan Date: Sun, 16 Feb 2014 16:09:25 +0200 Subject: Fix applying of gettext _() macro --- src/msec/msecgui.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/msec/msecgui.py b/src/msec/msecgui.py index 9fc0739..81dffac 100755 --- a/src/msec/msecgui.py +++ b/src/msec/msecgui.py @@ -1440,7 +1440,7 @@ class MsecGui: # module hbox = Gtk.HBox() - hbox.pack_start(Gtk.Label(_("Check: ", True, True, 0))) + hbox.pack_start(Gtk.Label(_("Check: "), True, True, 0)) entry_module = Gtk.ComboBoxText() pos = 0 for item in config.CHECKS_WITH_EXCEPTIONS: @@ -1455,7 +1455,7 @@ class MsecGui: # exception hbox = Gtk.HBox() - hbox.pack_start(Gtk.Label(_("Exception: ", True, True, 0))) + hbox.pack_start(Gtk.Label(_("Exception: "), True, True, 0)) entry_exception = Gtk.Entry() entry_exception.set_text(exception) hbox.pack_start(entry_exception, True, True, 0) @@ -1663,7 +1663,7 @@ class MsecGui: # new value hbox = Gtk.HBox() - hbox.pack_start(Gtk.Label(_("New value:", True, True, 0))) + hbox.pack_start(Gtk.Label(_("New value:"), True, True, 0)) if '*' in params: # string parameter entry = Gtk.Entry() -- cgit v1.2.1