From 98786aecbaca41a78dd580224a61b65886dc329e Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Tue, 11 Oct 2011 04:33:41 +0000 Subject: [PATCH] Fix the spelling of 'Choose...' in the preferences dialog Originally committed to SVN as r5733. --- aegisub/src/preferences_base.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/preferences_base.cpp b/aegisub/src/preferences_base.cpp index a52d32a4b..63563d16e 100644 --- a/aegisub/src/preferences_base.cpp +++ b/aegisub/src/preferences_base.cpp @@ -238,7 +238,7 @@ void OptionPage::OptionFont(wxSizer *sizer, std::string opt_prefix) { wxSpinCtrl *font_size = new wxSpinCtrl(this, -1, "", wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 3, 42, size_opt->GetInt()); font_size->Bind(wxEVT_COMMAND_SPINCTRL_UPDATED, IntUpdater(size_opt->GetName().c_str(), parent)); - wxButton *pick_btn = new wxButton(this, -1, "Chose..."); + wxButton *pick_btn = new wxButton(this, -1, _("Choose...")); pick_btn->Bind(wxEVT_COMMAND_BUTTON_CLICKED, std::tr1::bind(font_button, parent, font_name, font_size)); wxSizer *button_sizer = new wxBoxSizer(wxHORIZONTAL);