Skip to content

Commit

Permalink
Merge branch 'i4532' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
jcsteh committed Mar 16, 2016
2 parents 4ec1fd1 + 1de3c73 commit 79a5a2d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/gui/logViewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ def __init__(self, parent):
# Translators: The label for a menu item in NVDA log viewer to refresh log messages.
item = menu.Append(wx.ID_ANY, _("Refresh F5"))
self.Bind(wx.EVT_MENU, self.refresh, item)
item = menu.Append(wx.ID_SAVEAS)
# Translators: The label for a menu item in NVDA log viewer to save log file.
item = menu.Append(wx.ID_SAVEAS, _("Save &as... Ctrl+S"))
self.Bind(wx.EVT_MENU, self.onSaveAsCommand, item)
menu.AppendSeparator()
item = menu.Append(wx.ID_EXIT, _("E&xit"))
Expand Down

0 comments on commit 79a5a2d

Please sign in to comment.