Skip to main content

A simple translator using Yaml

Project description

yaml-translator

PyPI PyPI - Python Version GitHub

A simple translator using Yaml

Usage

Create a translation file in your package.

your_package
your_package/__init__.py
your_package/translator/__init__.py
your_package/translator/en.yaml
your_package/translator/ko.yaml

your_package/translator/en.yaml file:

menu:
  title: "Title"
  subtitle: "{sub} Subtitle"

your_package/translator/ko.yaml file:

menu:
  title: "제목"
  subtitle: "소제목 {sub}"

Import package:

from yaml_translator import Translator
from your_package import translations

Create Translator instance:

t = Translator.from_module_dir(translations, "ko")

Get translated text:

t("menu.title")
t("menu.subtitle", sub="TEMP")

Change language code:

t.lang = "ko"

License

See the LICENSE file for details. In summary, yaml-translator is licensed under the MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

yaml_translator-1.0.1-py3-none-any.whl (5.5 kB view hashes)

Uploaded Python 3

Supported by

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