From dd325acd8115ad78c76513e21879d231dc29b4a3 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Tue, 29 Oct 2013 09:35:53 -0700 Subject: [PATCH] Add accelerators to more stuff in the find/replace dialog --- aegisub/src/dialog_search_replace.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aegisub/src/dialog_search_replace.cpp b/aegisub/src/dialog_search_replace.cpp index 4c93959c7..cfe0c8793 100644 --- a/aegisub/src/dialog_search_replace.cpp +++ b/aegisub/src/dialog_search_replace.cpp @@ -84,8 +84,8 @@ DialogSearchReplace::DialogSearchReplace(agi::Context* c, bool replace) left_sizer->Add(find_sizer, wxSizerFlags().DoubleBorder(wxBOTTOM)); left_sizer->Add(options_sizer); - wxString field[] = { _("Text"), _("Style"), _("Actor"), _("Effect") }; - wxString affect[] = { _("All rows"), _("Selected rows") }; + wxString field[] = { _("&Text"), _("St&yle"), _("A&ctor"), _("&Effect") }; + wxString affect[] = { _("A&ll rows"), _("Selected &rows") }; auto limit_sizer = new wxBoxSizer(wxHORIZONTAL); limit_sizer->Add(new wxRadioBox(this, -1, _("In Field"), wxDefaultPosition, wxDefaultSize, countof(field), field, 0, wxRA_SPECIFY_COLS, MakeEnumBinder(&settings->field)), wxSizerFlags().Border(wxRIGHT)); limit_sizer->Add(new wxRadioBox(this, -1, _("Limit to"), wxDefaultPosition, wxDefaultSize, countof(affect), affect, 0, wxRA_SPECIFY_COLS, MakeEnumBinder(&settings->limit_to)));