aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYuri Chornoivan <yurchor@ukr.net>2014-02-16 16:09:25 +0200
committerYuri Chornoivan <yurchor@ukr.net>2014-02-16 16:09:25 +0200
commit1930852b70f71b7e777c6f6a093f784a956ac60d (patch)
treeab53fb9c0418852b7c7c3e60b8d31c076f5efdb8 /src
parent41ee01a26d896b078e11fcd85cc907e6845ab0c9 (diff)
downloadmsec-1930852b70f71b7e777c6f6a093f784a956ac60d.tar
msec-1930852b70f71b7e777c6f6a093f784a956ac60d.tar.gz
msec-1930852b70f71b7e777c6f6a093f784a956ac60d.tar.bz2
msec-1930852b70f71b7e777c6f6a093f784a956ac60d.tar.xz
msec-1930852b70f71b7e777c6f6a093f784a956ac60d.zip
Fix applying of gettext _() macro
Diffstat (limited to 'src')
-rwxr-xr-xsrc/msec/msecgui.py6
1 files changed, 3 insertions, 3 deletions
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()