You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

hypergen-translation-plugin

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hypergen-translation-plugin

Translation plugin for Django Hypergen

0.1.3
pipPyPI
Maintainers
1

Hypergen Translation Plugin

Translation plugin for Django Hypergen <https://github.com/runekaagaard/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!")

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts