A custom i18n implementation that is built to be easily used.
Project description
Setting up
Start by downloading the package via pip.
python3 -m pip install ezi18n
After that, you can just import it into your file.
Examples
import ezi18n
import random
_ = ezi18n.Translator() # if you don't provide anything in the brackets, it will look for the file's name's language JSON file. If the main file is main.py, it will look for main_lang.json - unless you provide a base filename (in this case: main) and/or a suffix (by default: _lang)
dice = random.randint(1, 6)
language = input("What's your native language? / Was ist Deine Muttersprache? (en/de) >>> ")
print(_("dice_result", language, dice=dice))
{
"en": {
"dice_result": "Your dice rolled {dice}!"
},
"de": {
"dice_result": "Dein Würfel hat eine {dice} gewürfelt!"
}
}
Working with plurals
import ezi18n
import locale
_ = ezi18n.Translator("main", "_plurals") # this will look for main_plurals.json as the language JSON file
apples = int(input("How many apples do you have? >>> "))
language = locale.getlocale()[0][:2] # this will return the default OS language, such as en, hu, de, fr, es etc.
print(_.one("apples", apples, language, apples=apples))
{
"en": {
"apples": ["You only have one apple! What a loser...", "You have {apples} apples!"]
},
"hu": {
"apples": ["{apples} almád van!"]
}
}
This example does a great job at presenting how the .one()
function works. Here's the explanation for the code:
The code will look for the default OS language, and will tell you how many apples you have with plurals in mind. I always get angry when I see "you have 1 apples"-ish text on a website, and it's an easy fix, but for some reason, many developers don't pay attention to it.
Hungarian doesn't make a difference between plurals, so the list for "hu"/"apples" only has 1 item. This won't be a problem though - the library isn't hardcoded to only look for the first and second elements in the returned list, it will look for the first and the last. Which means that if a list only has 1 item, it will only return that item.
Project details
Release history Release notifications | RSS feed
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 ezi18n-1.0.4.tar.gz
.
File metadata
- Download URL: ezi18n-1.0.4.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0e069bcfd65a1078f8fb47bfb3df620440a5337bf347f38e578531ebac463ef |
|
MD5 | 7bf04fdd72083ad53806e78d0700c47e |
|
BLAKE2b-256 | 07b641940267aec52ece07d2aef2ee32b31916111c3eff3d2cd90efc3b39f7b5 |
Provenance
File details
Details for the file ezi18n-1.0.4-py3-none-any.whl
.
File metadata
- Download URL: ezi18n-1.0.4-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58ac49b4fc1efdb3ff5f695005997ca8594a5951fdfb8c1306bbc87b1037a38e |
|
MD5 | fc1c87f67e75c7e48f10ee820d80666c |
|
BLAKE2b-256 | 578fc14c0f700b611409853efd56fc1af231f5ffd75f1fe4d72937c15f9a40ae |