diff --git a/src/mypropertysheet.cpp b/src/mypropertysheet.cpp index 1dfc4ea..1ea032b 100755 --- a/src/mypropertysheet.cpp +++ b/src/mypropertysheet.cpp @@ -167,7 +167,7 @@ MyPropertySheet::MyPropertySheet ( wxID_ANY ); languageBox->SetExtraStyle ( languageBox->GetExtraStyle() | wxCB_SORT ); - languageBox->Append ( _ ( "Default" ), ( void* ) wxLANGUAGE_ENGLISH_US ); + languageBox->Append ( _ ( "Default" ), ( void* ) wxLANGUAGE_DEFAULT ); languageBox->SetSelection ( 0 ); int index; @@ -278,7 +278,7 @@ void MyPropertySheet::OnOk ( wxCommandEvent& e ) if ( languageChoice != wxNOT_FOUND ) lang = (wxIntPtr)languageBox->GetClientData(languageChoice); else - lang = wxLANGUAGE_ENGLISH_US; + lang = wxLANGUAGE_DEFAULT; e.Skip(); } diff --git a/src/xmlcopyeditor.cpp b/src/xmlcopyeditor.cpp index a56c8d2..2c19b05 100755 --- a/src/xmlcopyeditor.cpp +++ b/src/xmlcopyeditor.cpp @@ -299,7 +299,7 @@ bool MyApp::OnInit() systemLocale = wxLANGUAGE_DUTCH; break; default: - systemLocale = wxLANGUAGE_ENGLISH_US; + systemLocale = wxLANGUAGE_DEFAULT; break; }