Gooey is international ready and easily ported to your host language. Languages are controlled via an argument to the `Gooey` decorator.
@Gooey(language='russian')
def main():
...
All program text is stored externally in `json` files. So adding new langauge support is as easy as pasting a few key/value pairs in the `gooey/languages/` directory.
Thanks to some awesome [contributers](https://github.com/chriskiehl/Gooey/graphs/contributors), Gooey currently comes pre-stocked with the following language sets:
- English
- Dutch
- French
- Portuguese
Want to add another one? Submit a [pull request!](https://github.com/chriskiehl/Gooey/compare)
@ -283,6 +311,12 @@ Final Screen
###Change Log
----------
- Moved all internal messaging to pubsub
- expanded i18n converage
- allowed returning to the main configuration screen
- Fixed success checkmark showing on failure
- Refactoring to beauty
- Removed parsing code, replaced it with @SylvainDe patch