Index: sources/storage/Settings.h =================================================================== diff -u -r389f028cb9d4d320eae393de7c4408a58a619356 -rcf51c19d82d667644d7f70eaa521b43f908c7068 --- sources/storage/Settings.h (.../Settings.h) (revision 389f028cb9d4d320eae393de7c4408a58a619356) +++ sources/storage/Settings.h (.../Settings.h) (revision cf51c19d82d667644d7f70eaa521b43f908c7068) @@ -62,21 +62,21 @@ eError_Write , eError_Copy , eError_Remove , - eError_No_SettingFolder , - eError_No_SettingFile , + eError_No_SettingsFolder , + eError_No_SettingsFile , eError_SettingNotExits , }; private: - const QHash settingsError_Message { // no translation for the error. My experience shows the error messages if trasnlated is not useful for serviceability and debugging. + const QHash settingsError_Message { // no translation for the error. My experience shows the error messages if translated is not useful for serviceability and debugging. { eError_None , "" }, { eError_POST , "The configuration source check failed." }, { eError_PathEmpty , "The settings path is empty." }, { eError_MkDir , "The configuration folder '%1' cannot be created." }, { eError_Write , "The settings file %1 can't be written." }, { eError_Copy , "The configuration folder '%1' cannot be copied." }, { eError_Remove , "The configuration folder '%1' cannot be removed." }, - { eError_No_SettingFolder , "No setting folder in the %1 path found." }, - { eError_No_SettingFile , "No setting files in the %1 folder found." }, + { eError_No_SettingsFolder , "No settings folder in the %1 path found." }, + { eError_No_SettingsFile , "No settings file in the %1 folder found." }, { eError_SettingNotExits , "The setting file %1 doesn't exists." }, }; public: