A well built translator with placeholders
Project description
Fancy Translator
This library allow you to run setup a translator with ease. Just provide it the translations files and access them when ever you need them
Having an issue?
You can always find someone on our discord server here:
Wiki
The official wiki of this library will be available at GitHub
How to install
To install just use following command
pip install PyFancyTranslator
This library will have dev/beta builds on the GitHub, to install them you can use
pip install --upgrade git+https://github.com/AGM-Studio/FancyTranslator.git
Example
from FancyTranslator import Translator
# All language files must be in .ini format and be placed in a folder to be accessed
translator = Translator("./translations/")
# To access a language with name "en.ini" just call the method below
language = translator.get('en')
# To get a translation for "MyKey" in section "MySection"
translation = language.translate("MySection", "MyKey")
# To use placeholder:
class MyClass:
def __init__(self, obj):
self.obj = obj
my_class = MyClass({"name": "Nested"})
# In file: "This is an example with a normal placeholder: %%value%%"
trans1 = translator.get('en').translate("Target", "trans1", value="My Value")
# returns "This is an example with a normal placeholder: My Value"
# In file: "This is an example with a nested placeholder: %%nested.obj.name%%"
trans2 = translator.get('en').translate("Target", "trans2", nested=my_class)
# returns "This is an example with a nested placeholder: Nested"
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyfancytranslator-1.0.4.tar.gz
.
File metadata
- Download URL: pyfancytranslator-1.0.4.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ab47e38417bfaa4fa6f513503b5ea123df861d9682d9b92f5d36040b3351c49 |
|
MD5 | 123ca409c2b7af9d2c12171fcc11a2de |
|
BLAKE2b-256 | 50a9af2eff98803a69b847d4831db2c6c4030b123fb9958a6ac8b8474225890a |
File details
Details for the file pyfancytranslator-1.0.4-py3-none-any.whl
.
File metadata
- Download URL: pyfancytranslator-1.0.4-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f64b7ef19bb41ba681a18a1eb9bf3b03465e53c7b46f02aff1d0f4ed088fe915 |
|
MD5 | 1b269a7b2f14607349c8f21b814cc9f9 |
|
BLAKE2b-256 | f471c54438d12c3de5285346f12158c332b1f3eb839e72a71bbc1b0da4089ce8 |