Page 1 of 1

Multi-language-support

Posted: Mon Jul 13, 2015 12:15 pm
by tulamide
Here's a quick draft of how you could support multiple languages in your project.

Re: Multi-language-support

Posted: Sun Jul 19, 2015 10:39 am
by tester
Basically, you probably would prefer to have language localization data in external file(s).

So for example, in your external config file you list available languages (by filename) and set which one is default on load, and then - you create these files (according to config list) with language data.

Alternatively you can create single file for all languages, and use a sort of separator between langs (data|dane|datei), which is used in internal splitter.

It is good to separate your project from localization data, because you don't have to recompile your project over and over again. You just make adjustments in a simple text file.