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.
This commit is contained in:
René Stadler 2011-09-09 22:02:28 +02:00 committed by Stefan Sauer
parent c89cada72a
commit 1b724edcac

View file

@ -220,8 +220,8 @@ class Window (object):
self.actions.reload_file.props.sensitive = False self.actions.reload_file.props.sensitive = False
group = gtk.ActionGroup ("RowActions") group = gtk.ActionGroup ("RowActions")
group.add_actions ([("hide-before-line", None, _("Hide lines before this one")), group.add_actions ([("hide-before-line", None, _("Hide lines before this point")),
("hide-after-line", None, _("Hide lines after this one")), ("hide-after-line", None, _("Hide lines after this point")),
("show-hidden-lines", None, _("Show hidden lines")), ("show-hidden-lines", None, _("Show hidden lines")),
("edit-copy-line", gtk.STOCK_COPY, _("Copy line"), "<Ctrl>C"), ("edit-copy-line", gtk.STOCK_COPY, _("Copy line"), "<Ctrl>C"),
("edit-copy-message", gtk.STOCK_COPY, _("Copy message"), ""), ("edit-copy-message", gtk.STOCK_COPY, _("Copy message"), ""),