diff --git a/README.md b/README.md index 0c94964..8031606 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ ez-localizr accounts for Unicode issues using `ftfy`, and loads string definitio ## Simple Usage Guide: ```python +import ezlocalizr L = ezlocalizr(language='en_US', string_path: 'strings', default_lang='en_US') text = L('test') @@ -24,6 +25,7 @@ Output: `Hello World!` ez-localizr will only be able to display strings in languages that are in your string folder. If you have multiple, and would like to change it, call the `load_lang()` function. An example is listed below! ```python +import ezlocalizr L = ezlocalizr(language='en_US', string_path='strings', default_lang='en_US') L.load_lang('fr_FR')