Skip to main content

Translate your translation files

Project description

Logo

Test Python package pre-commit.ci status PyPI PyPI - Python Version PyPI - Status

Installation

    pip install geranslator

Configuration

geranslator/config.yml

geranslator:
  lang_dir: lang
  lang_files_ext: json
  provider: google
  origin_lang: en
  to_langs:
  - en
  - fr
  - ar
  • lang_dir: Where your translation files live.
  • lang_files_ext: Your translation files extension.
  • provider: Provider you want to translate your file.
  • origin_lang: The origin language you already have.
  • to_langs: Languages you want your file to get translated to.

supported extensions: json, yaml, yml

supported providers: google

Usage

This will use the configuration as default

    from geranslator import Geranslator

    Geranslator().translate()

You can customize it using the following methods. 😃

    from geranslator import Geranslator

    geranslator = Geranslator()
    geranslator.set_provider('google')
    geranslator.set_lang_dir('translation')
    geranslator.set_origin_lang('en')
    geranslator.set_target_lang(['ar', 'fr'])
    geranslator.set_lang_files_extension('json')
    geranslator.translate()

You can chain them too 😮

    from geranslator import Geranslator

    Geranslator().set_provider('google').set_lang_dir('translation').set_origin_lang('en').set_target_lang(['ar', 'fr']).set_lang_files_extension('json').translate()

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

geranslator-0.2.0-py3-none-any.whl (11.0 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