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