borisblizzard / arcreator

Advanced RPG Creator is an engine and an editor that allows you to create old-school 2D RPG video games.
7 stars 1 forks source link

Internationalization of Editor #37

Open Ryex opened 9 years ago

Ryex 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 internationalization 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.