#include "misc.h" #include #include #include "resources.h" #include "globalFunctions.h" const string CustomLocale::FfsLanguageDat = "language.dat"; void exchangeEscapeChars(wxString& data) { wxString output; const wxChar* input = data.c_str(); wxChar value; while ((value = *input) != wxChar(0)) { //read backslash if (value == wxChar('\\')) { //read next character ++input; value = *input; if (value == wxChar(0)) break; switch (value) { case wxChar('\\'): output+= wxChar('\\'); break; case wxChar('n'): output+= wxChar('\n'); break; case wxChar('t'): output+= wxChar('\t'); break; case wxChar('\"'): output+= wxChar('\"'); break; default: output+= value; } } else output+= value; ++input; } data = output; } CustomLocale::CustomLocale() : wxLocale(), currentLanguage(wxLANGUAGE_ENGLISH) {} CustomLocale::~CustomLocale() { //write language to file ofstream output(FfsLanguageDat.c_str()); if (output) { globalFunctions::writeInt(output, currentLanguage); output.close(); } else wxMessageBox(wxString(_("Could not write to ")) + wxT("\"") + wxString::From8BitData(FfsLanguageDat.c_str()) + wxT("\""), _("An exception occured!"), wxOK | wxICON_ERROR); } void CustomLocale::loadLanguageFromCfg() //retrieve language from config file: do NOT put into constructor since working directory has not been set! { int language = wxLANGUAGE_ENGLISH; //try to load language setting from file ifstream input(FfsLanguageDat.c_str()); if (input) { language = globalFunctions::readInt(input); input.close(); } else language = wxLocale::GetSystemLanguage(); wxLocale::Init(language, wxLOCALE_LOAD_DEFAULT | wxLOCALE_CONV_ENCODING); loadLanguageFile(language); } void CustomLocale::loadLanguageFile(int language) { currentLanguage = language; string languageFile; switch (language) { case wxLANGUAGE_GERMAN: languageFile = "german.lng"; break; case wxLANGUAGE_FRENCH: languageFile = "french.lng"; break; case wxLANGUAGE_JAPANESE: languageFile = "japanese.lng"; break; default: languageFile.clear(); currentLanguage = wxLANGUAGE_ENGLISH; } //load language file into buffer translationDB.clear(); const int bufferSize = 100000; char temp[bufferSize]; if (!languageFile.empty()) { ifstream langFile(languageFile.c_str(), ios::binary); if (langFile) { int rowNumber = 0; TranslationLine currentLine; //Delimiter: //---------- //Linux: 0xa \n //Mac: 0xd \r //Win: 0xd 0xa \r\n <- language files are in Windows format while (langFile.getline(temp, bufferSize, 0xd)) //specify delimiter explicitly { langFile.get(); //discard the 0xa character wxString formattedString = wxString::FromUTF8(temp); //wxString formattedString = wxString::From8BitData(temp); exchangeEscapeChars(formattedString); if (rowNumber%2 == 0) currentLine.original = formattedString; else { currentLine.translation = formattedString; translationDB.insert(currentLine); } ++rowNumber; } langFile.close(); } else wxMessageBox(wxString(_("Could not read language file ")) + wxT("\"") + wxString(languageFile.c_str(), wxConvUTF8) + wxT("\""), _("An exception occured!"), wxOK | wxICON_ERROR); } else ; //if languageFile is empty language is defaulted to english //these global variables need to be redetermined on language selection GlobalResources::decimalPoint = _("."); GlobalResources::thousandsSeparator = _(","); } const wxChar* CustomLocale::GetString(const wxChar* szOrigString, const wxChar* szDomain) const { TranslationLine currentLine; currentLine.original = szOrigString; //look for translation in buffer table Translation::iterator i; if ((i = translationDB.find(currentLine)) != translationDB.end()) return (i->translation.c_str()); //fallback return (szOrigString); }