diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/msec/msecgui.py | 6 |
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() |