plan9soft / arcreator

Automatically exported from code.google.com/p/arcreator
0 stars 0 forks source link

Internationalisation #4

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Python provides the convenient gettext function that can be mapped to _() and 
wxFormBuilder has the ability to generate with all strings wrapped in _().

Preparing for internationalisation is a simple as wrapping al remaining 
relevant strings in the source code with _() importing gettext in those modules 
and mapping it to _

after that we can later use a tool like poEdit to extract all _() strings and 
create a pot file, translators can then create translations for us.

Original issue reported on code.google.com by Ryexander on 8 Sep 2014 at 3:27