Index: sources/view/settings/VLocalization.cpp =================================================================== diff -u -rf2ee59e1c942d8dc07e73372b87d7b946a53cee4 -rf24fd8fbaa0c0b93f8597c66d5d08c94e465d356 --- sources/view/settings/VLocalization.cpp (.../VLocalization.cpp) (revision f2ee59e1c942d8dc07e73372b87d7b946a53cee4) +++ sources/view/settings/VLocalization.cpp (.../VLocalization.cpp) (revision f24fd8fbaa0c0b93f8597c66d5d08c94e465d356) @@ -37,11 +37,12 @@ { QString mLocale = _localeMap .value(vLanguageIndex); QString mLanguage = _languageMap.value(vLanguageIndex); + QString msg = tr("The changes will be applied on the next bootup."); if ( Storage::Settings::save("Localization", "Locale" , mLocale , Storage::Settings::Category_Enum::eConfigurationsLocale ) ) goto lErr; if ( Storage::Settings::save("Localization", "Language" , mLanguage , Storage::Settings::Category_Enum::eConfigurationsLocale ) ) goto lErr; - notification("The changes will be applied on the next bootup."); + notification(msg); //NOTE: We do not have other keyboards implemented for any language other than en_UK, en_US // keyboardLocale( _keyboardLocaleMap.value(vLanguageIndex) ); @@ -50,7 +51,8 @@ lErr: LOG_DEBUG("Unsuccessfull configuration value storage for Language"); - notification("Failed to set language"); + msg = tr("Failed to set the language"); + notification(msg); } /*! Index: sources/view/settings/VLocalization.h =================================================================== diff -u -rd9b9df9b23da89b4c27f4672ff6e7f570adcc48a -rf24fd8fbaa0c0b93f8597c66d5d08c94e465d356 --- sources/view/settings/VLocalization.h (.../VLocalization.h) (revision d9b9df9b23da89b4c27f4672ff6e7f570adcc48a) +++ sources/view/settings/VLocalization.h (.../VLocalization.h) (revision f24fd8fbaa0c0b93f8597c66d5d08c94e465d356) @@ -38,7 +38,7 @@ QMap _languageMap { {0, "English"}, {1, "Spanish"}, - {2, "Germany"}, + {2, "German"}, }; QMap _localeMap {