Skip to main content

Translation plugin for Django Hypergen

Project description

Hypergen Translation Plugin

Translation plugin for Django Hypergen. Processes the AST of Hypergen template python files and inserts them into the database for translation.

Provides the TranslationPlugin that makes Hypergen liveviews and actions translatable based on the current django translation language.

Usage

Installation:

pip install hypergen-translation-plugin

Change settings.py:

# Add to installed apps:
INSTALLED_APPS = [
    ...
    'hypergen_translation'
]

# Select which importable modules to look for translatable strings in.
HYPERGEN_TRANSLATION_MODULES = ["hypergen_first_app.views"]
# The base dir of the git/whatever project.
HYPERGEN_TRANSLATION_PROJECT_DIR = BASE_DIR.parent
# Optionally display link directly to file and linenumber for each translation occurence.
HYPERGEN_TRANSLATION_GITHUB = "https://github.com/runekaagaard/hypergen-translation-plugin"
# Optionally link to another branch than main.´ on github.
HYPERGEN_TRANSLATION_BRANCH = "dev"

Collection collections and store it in the database:

python manage.py hypergen_translation_collect

Then edit in the admin.

Add plugin to liveviews and actions:

from hypergen_translation.plugins import TranslationPlugin

@liveview(..., user_plugins=[TranslationPlugin()])
def my_view(request):
    p("translate this!")

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

hypergen-translation-plugin-0.1.3.tar.gz (12.8 kB view hashes)

Uploaded Source

Built Distribution

hypergen_translation_plugin-0.1.3-py3-none-any.whl (14.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