Introduce Language Resource Layer to replace hard coded values
Right now there are multiple hard coded string everywhere in the code path
The goal is to introduce a language resource manager, to use token to retrieve the full texts (right now will be in English only, but the framework should allow to integrate with other language)
Example
LanguageResourceManager.get(LanguageResourceManager.Token.START_SERVER) => Return "START SERVER" or equivalent in other language
Introduce Language Resource Layer to replace hard coded values
Right now there are multiple hard coded string everywhere in the code path
The goal is to introduce a language resource manager, to use token to retrieve the full texts (right now will be in English only, but the framework should allow to integrate with other language)
Example