Skip to main content

Ankha's Internationalization and Localization for Python.

Project description

Anint

Tests PyPI License: MIT

Ankha's Internationalization and Localization for Python

Prerequisites

Python 3.11.x or newer.

Installation

pip install anint

Setup

Via Configuration Files (Recommended)

At the root of the project, create and configure one of the following files:
Listed by order of precedence

  • anint.ini
  • .anint.ini
  • pyproject.toml
  • anint.cfg

For example:

; ${PROJECT_ROOT}/anint.ini

[anint]
locales = en, mn
locale = mn
fallbacks = en
path = locales

Refer to the tests directory for further configuration file examples.

Then you can import the t method and get translations immediately:

# your_file.py

from anint import t


print(t("greetings.hello"))

Note:

  • Use this if you do not need to change localization settings during runtime
    Will be changed to allow for runtime localization setting

Manually (For More Control)

Import the modules that we need

from anint import translations, Translator

Load translations

translations.load("path_to_your_locale_directory")

Instantiate Translator object

my_translator = Translator(
    locales=["en", "mn"],
    locale="mn",
    fallbacks=["en"]
)

Call on its translate method

>>> my_translator.translate("greetings.hello")
"Сайн байна уу"

Change its locale

>>> my_translator.set_locale("en")
>>> my_translator.translate("greetings.hello")
"Hello"

Anint Recipes

To add more functionality to the base Translator class, one may do the following:

# ${{PROJECT_ROOT}}/custom_model.py

class TranslatorPlus(Translator):
    def before_after(self, before=None, after=None):
        """Returns a tuple of strings as (before, after) of the key translation.
        Both values are None by default and will be assigned as empty strings if not given further arguments.
        """
        before_translation = self.translate(before) if before else ""
        after_translation = self.translate(after) if after else ""
        return before_translation, after_translation

    def attention(self, attention):
        """Returns an attention translation if attention is True, otherwise empty string."""
        return self.translate("symbol.attention") if attention else ""

    def encapsulate(self, encapsulate):
        """Returns a tuple of encapsulations as (before, after) if encapsulate is True,
        otherwise tuple of empty strings.
        """
        _encapsulate_before = ""
        _encapsulate_after = ""
        if encapsulate:
            # Not all encapsulations need to be the same for every locale.
            if self.locale == "ja":
                _encapsulate_before = self.translate("symbol.left_black_lenticular_bracket")
                _encapsulate_after = self.translate("symbol.right_black_lenticular_bracket")
            else:
                _encapsulate_before = self.translate("symbol.left_square_bracket")
                _encapsulate_after = self.translate("symbol.right_square_bracket")

        return _encapsulate_before, _encapsulate_after

    def translate(self, key, *args, before = None, after = None, attention = False, encapsulate = False):
        """Returns the translation for the specified key.

        :param key: A string sequence of dict keys connected by dots.
        :param args: Passed onto the translation to be formatted if there are any placeholders.
        :param before: Optional key to be included to the left of the key translation.
        :param after: Optional key to be included to the right of the key translation.
        :param attention: To give attention to the translated key or not. False by default.
        :param encapsulate: To encapsulate the translated key or not. False by default
        :return: The translation for the currently specified language setting.
        """
        _before, _after = self.before_after(before, after)
        _attention = self.attention(attention)
        _encapsulate_before, _encapsulate_after = self.encapsulate(encapsulate)
        # Call on the base class to get the translated text.
        translation = super(TranslatorRecipes, self).translate(key, *args)
        return _attention + _encapsulate_before + _before + translation + _after + _encapsulate_after

And to initialize the translator:

# ${{PROJECT_ROOT}}/custom_model.py

# If any config file exists, the arguments are stored inside this dict.
from anint.config import instance_data
from anint import Translator


# See above.
class TranslatorPlus(Translator):
    .
    .
    .


# If a config file exists.
my_translator_class0 = TranslatorPlus(**instance_data)

# Or define it here.
my_translator_class1 = TranslatorPlus(
    locales=["en", "mn"],
    locale="mn",
    fallbacks=["en"]
)

t_alias = my_translator_class1.translate

Localization Files

YAML/YML

models:
  member: "Member"
attributes:
  member:
    name: "Name"
    student_id: "Student ID"
    grade: "Grade"
    department: "Department"
    course: "Course"
    role:
      user: "User"
      mod: "Mod"
      admin: "Admin"
    grades:
      freshman: "Freshman"
      sophomore: "Sophomore"
      junior: "Junior"
      senior: "Senior"
      graduate: "Graduate"
    departments:
      information_technology: "Information Technology"
      digital_entertainment: "Digital Entertainment"
    courses:
      ai_strategy: "AI Strategy"
      iot_systems: "IoT Systems"
      robotics_development: "Robotics Development"
      game_production: "Game Production"
      cg_animation: "CG Animation"
      selection_in_progress: "Selection in Progress"

JSON

{
  "models": {
    "member": "メンバー"
  },
  "attributes": {
    "member": {
      "name": "名前",
      "student_id": "学籍番号",
      "grade": "学年",
      "department": "学科",
      "course": "コース",
      "role": {
        "user": "ユーザー",
        "mod": "Mod",
        "admin": "管理者"
      },
      "grades": {
        "freshman": "1年生",
        "sophomore": "2年生",
        "junior": "3年生",
        "senior": "4年生",
        "graduate": "OM"
      },
      "departments": {
        "information_technology": "情報工学科",
        "digital_entertainment": "デジタルエンタテインメント学科"
      },
      "courses": {
        "ai_strategy": "AI戦略コース",
        "iot_systems": "IoTシステムコース",
        "robotics_development": "ロボット開発コース",
        "game_production": "ゲームプロデュースコース",
        "cg_animation": "CGアニメーションコース",
        "selection_in_progress": "選択中"
      }
    }
  }
}

These locales files are read as dicts. As such, when specifying the value to get, the keys to the value are lined together with dots.

>>> from anint import t
>>> t("attributes.member.name")
"Name"

Notes:

  • If two files with the same locale exist, then a MultipleSameLocaleError exception will be raised.
  • If no value can be found, then the fallback locale will be used. Only if that also fails will a TranslationError be raised.

Problem?

Actually, I don't expect anyone else other than me to use this package.
But if you find it useful enough to want to contribute, be my guest!

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

anint-0.3.0.tar.gz (12.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

anint-0.3.0-py3-none-any.whl (10.8 kB view details)

Uploaded Python 3

File details

Details for the file anint-0.3.0.tar.gz.

File metadata

  • Download URL: anint-0.3.0.tar.gz
  • Upload date:
  • Size: 12.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for anint-0.3.0.tar.gz
Algorithm Hash digest
SHA256 6ce47040e8d3e4b7794d10782831566a69821fce4f32fd2021d0dc81653dfbb4
MD5 95b0726b0e20a2e24c613e6674148df2
BLAKE2b-256 0037fa01b064c1db69423ec2f38f10a1e8568c8830d08e831f900d192ba908cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for anint-0.3.0.tar.gz:

Publisher: publish.yaml on FirstlyBoldly/Anint

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anint-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: anint-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 10.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for anint-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 eec5f1a9c303dcdd35e26db8845811c4f7060477f6e51e7c1ef183ce11b9ad78
MD5 88b1f3ff13d72d8e3b69e2b4b1ff9492
BLAKE2b-256 c01d88244a0d7cc4cd33efa7c6f0ce7c733d5c6fa4fe5539d532fc7d1c174a8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for anint-0.3.0-py3-none-any.whl:

Publisher: publish.yaml on FirstlyBoldly/Anint

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page