summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-04-15 21:36:23 +0100
committerCarl Hetherington <cth@carlh.net>2013-04-15 21:36:23 +0100
commit8ef3014198e46957d0a79d4e006e5f82a345bfa7 (patch)
tree8b50525768dad133fc50162f1ff08ce14f35fabf
parent09a0fa8b6b9af3a333ee1918ee711ccc0f75c781 (diff)
Set language for English rather than just using blank string.
-rw-r--r--src/wx/config_dialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/config_dialog.cc b/src/wx/config_dialog.cc
index 1d025f3fa..c32b03ec0 100644
--- a/src/wx/config_dialog.cc
+++ b/src/wx/config_dialog.cc
@@ -226,7 +226,7 @@ ConfigDialog::language_changed (wxCommandEvent &)
{
switch (_language->GetSelection ()) {
case 0:
- Config::instance()->set_language ("");
+ Config::instance()->set_language ("en");
break;
case 1:
Config::instance()->set_language ("fr");