diff options
author | René Stadler <mail@renestadler.de> | 2011-09-09 22:02:28 +0200 |
---|---|---|
committer | René Stadler <mail@renestadler.de> | 2011-09-09 22:02:28 +0200 |
commit | 4ec7604ad66d1ceee0a7e673001a6f0a9158f936 (patch) | |
tree | 5b69f416c9a35fe22d3a035d3ea941ffc4a1cf8a /GstDebugViewer/GUI | |
parent | 64f7e1613ec8b29adeb2cf0c94d8114661326471 (diff) |
Improve wording of hide lines actions
These also appear in the context menu of the timeline. The more generic wording
makes more sense for the timeline, since you do not pinpoint any specific line
in this case.
Diffstat (limited to 'GstDebugViewer/GUI')
-rw-r--r-- | GstDebugViewer/GUI/window.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/GstDebugViewer/GUI/window.py b/GstDebugViewer/GUI/window.py index a6700d3..c44276e 100644 --- a/GstDebugViewer/GUI/window.py +++ b/GstDebugViewer/GUI/window.py @@ -220,8 +220,8 @@ class Window (object): self.actions.reload_file.props.sensitive = False group = gtk.ActionGroup ("RowActions") - group.add_actions ([("hide-before-line", None, _("Hide lines before this one")), - ("hide-after-line", None, _("Hide lines after this one")), + group.add_actions ([("hide-before-line", None, _("Hide lines before this point")), + ("hide-after-line", None, _("Hide lines after this point")), ("show-hidden-lines", None, _("Show hidden lines")), ("edit-copy-line", gtk.STOCK_COPY, _("Copy line"), "<Ctrl>C"), ("edit-copy-message", gtk.STOCK_COPY, _("Copy message"), ""), |