Fix the spelling of 'Choose...' in the preferences dialog

Originally committed to SVN as r5733.
This commit is contained in:
Thomas Goyne 2011-10-11 04:33:41 +00:00
parent 306664d16e
commit 98786aecba
1 changed files with 1 additions and 1 deletions

View File

@ -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);