diff --git a/README.md b/README.md index 15345b1..861cec0 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ Table of Contents - [Why Is It](#why) - [Who is this for](#who-is-this-for) - [How does it work](#how-does-it-work) +- [Internationalization](#internationalization) - [Configuration](#configuration) - [Full/Advanced](#advanced) - [Basic](#basic) @@ -192,6 +193,33 @@ However, by dropping in `GooeyParser` and supplying a `widget` name, you can dis | DateChooser                                             |

| +Internationalization +-------------------- + + + +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 - Fixed issue #87 - Fixed issue #85 @@ -304,19 +338,6 @@ Tada! - Fixed GUI layout so that resizing works better -###Planned Features: -- Language agnostic! -- Stop/cancel button on run screen - - - -TODO ----- - -* Add to pypi -* Update graphics -* Get OS X version working. - Wanna help?