A simple library for building multilingual applications in Python
pip install python-lang
- Clone the repo
git clone https://github.com/Programista3/python-lang.git
- Run
python setup.py install
Add pyLang to your project
import python_lang as lang
_ = lang.get
Add language files (you can specify the language symbol as the second parameter)
lang.add("C:/project/locales/de.xml")
lang.add("C:/project/locales/pl.xml", "pl")
Select language for translation
lang.select('pl')
You can turn off the translation using
lang.select()
Use _()
function to translate text
print(_("Hello World"))
You can view the list of added languages using
lang.all()
Use following template:
<?xml version="1.0" encoding="UTF-8"?>
<language code="language symbol">
<translation text="first original text">first translated text</translation>
<translation text="second original text">second translated text</translation>
...
</language>
lang.add(path, code=None)
Adds path and language code to the list of languages.
Returns True if the language has been added successfully.
lang.all()
Returns the list of added languages
lang.get(text)
Returns translated text (if not found translation or language is not selected returns original text)
lang.select(lang=None)
Selects the language used to translation.
Returns True if the language has been selected successfully.
lang.file
Contains the parsed file of the currently selected language
lang.langs
Contains the list of added languages with their file paths
lang.selected
Contains the code of the currently selected language