An extension for wagtail-localize that integrates with the Smartling translation platform
Project description
Wagtail Localize Smartling
An extension for Wagtail Localize that integrates with the Smartling translation platform.
Links
Supported versions
- Python 3.8+
- Django 4.2+
- Wagtail 6.1+
Installation
-
Install the package from PyPI:
python -m pip install wagtail-localize-smartling
-
Add
"wagtail_localize_smartling"
toINSTALLED_APPS
in your Django settings. Make sure it's before"wagtail_localize"
and"wagtail_localize.locales"
:INSTALLED_APPS = [ ... "wagtail_localize_smartling", "wagtail_localize", "wagtail_localize.locales", ... ]
-
Configure the plugin in your Django settings:
WAGTAIL_LOCALIZE_SMARTLING = { # Required settings (get these from "Account settings" > "API" in the Smartling dashboard) "PROJECT_ID": "<project_id>", "USER_IDENTIFIER": "<user_identifier>", "USER_SECRET": "<user_secret>", # Optional settings and their default values "REQUIRED": False, # Set this to True to always send translations to Smartling "ENVIRONMENT": "production", # Set this to "staging" to use Smartling's staging API "API_TIMEOUT_SECONDS": 5.0, # Timeout in seconds for requests to the Smartling API }
If your project's locales do not match those in Smartling (e.g.
ro
in your project,ro-RO
in Smartling), then you can provide a Wagtail locale ID to Smartling locale ID mapping via theLOCALE_TO_SMARTLING_LOCALE
setting:WAGTAIL_LOCALIZE_SMARTLING = { "LOCALE_TO_SMARTLING_LOCALE": { "ro": "ro-RO" } }
... or you can specify a callable or a dotted path to a callable in the
LOCALE_MAPPING_CALLBACK
setting:def map_project_locale_to_smartling(locale: str) -> str: if locale == "ro": return "ro-RO" return locale WAGTAIL_LOCALIZE_SMARTLING = { # ... "LOCALE_MAPPING_CALLBACK": "settings.map_project_locale_to_smartling" }
The callback receives a
WAGTAIL_CONTENT_LANGUAGES
local code string and is expected to return a valid mapped locale ID (or the original locale ID).Note that by default, when syncing translations the project will attempt to reformat a mixed-case, Smartling-style language code (e.g.
zh-CN
) into a Django-style all-lowercase code (e.g.zh-cn
). Depending on how language codes are set up in your project, this behaviour may not be appropriate. You can disable it by settings theREFORMAT_LANGUAGE_CODES
setting toFalse
(the default isTrue
):WAGTAIL_LOCALIZE_SMARTLING = { # ... "REFORMAT_LANGUAGE_CODES": False }
-
Run migrations:
./manage.py migrate
Setup
Smartling project setup
For the plugin to work with a Smartling project, the Django/Wagtail internationalization- and localization-related settings must be compatible with the project's language settings:
- Only Wagtail content authored in the same language as the Smartling project's source language can be translated.
- Ideally, the language tags in
WAGTAIL_CONTENT_LANGUAGES
should be the exact, case-insensitive matches for the Smartling projects target locales. For example, if your Smartling project targetsfr-FR
, then you must have"fr-fr"
in yourWAGTAIL_CONTENT_LANGUAGES
, not just"fr"
. However, if that is not possible, use theLOCALE_TO_SMARTLING_LOCALE
orLOCALE_MAPPING_CALLBACK
settings to map your Wagtail language codes to the Smartling language codes.
Synchronization
The plugin provides a sync_smartling
management command that:
- Creates jobs in Smartling for new content that's awaiting translation
- Checks the status of pending translation jobs
- Downloads and applies translations for completed jobs
This command should be set to run periodically via cron
or similiar:
./manage.py sync_smartling
We recommend running this regularly, around once every 10 minutes.
Callbacks
As well as the sync_smartling
management command, the plugin sets the callbackUrl
field on the Smartling jobs it creates to the URL of webhook handler view. This handler will proactively download and apply translations from completed jobs without waiting for the next sync_smartling
run. This URL is based on the WAGTAILADMIN_BASE_URL
setting, so it's important that's set and accessible from the internet.
[!WARNING] Callbacks should not be relied on as the only method for downloading translations. Always make sure the
sync_smartling
command is run regularly to ensure your translations are up-to-date.
Usage
Submitting new content for translation
Updating translations
How it works
Workflow
Submitting pages for Smartling translation
flowchart LR
submitPageForTranslation["Page submitted for translation in Wagtail"]
submitToSmartling{"
User choses to submit
translation job to Smartling?
"}
enterSmartlingJobConfig["User enters Smartling job config"]
pendingSmartlingJobCreated["A pending Smartling job is created in Wagtail"]
wagtailSyncedTranslationEditView["
User is redirected to Wagtail's
synced translation edit view
"]
submitPageForTranslation-->submitToSmartling
submitToSmartling-->|Yes|enterSmartlingJobConfig
enterSmartlingJobConfig-->pendingSmartlingJobCreated
pendingSmartlingJobCreated-->wagtailSyncedTranslationEditView
submitToSmartling-->|No|wagtailSyncedTranslationEditView
Smartling sync
django-admin sync_smartling
, the below flowchart describes the logic run for each job
flowchart LR
jobSentToSmartling{"Has the job been
sent to Smartling yet?"}
sendJobToSmartling["Send job to Smartling"]
jobFinished{"Is the job finalised?"}
updateJobFromSmartling["Update job from Smartling"]
fin["End"]
jobSentToSmartling-->|Yes|jobFinished
jobSentToSmartling-->|No|sendJobToSmartling
sendJobToSmartling-->fin
jobFinished-->|Yes|fin
jobFinished-->|No|updateJobFromSmartling
Signals
This app provides a single wagtail_localize.signals.translation_imported
signal that is sent when translation are imported from Smartling.
Signal kwargs:
sender
: Thewagtail_localize_smartling.models.Job
classinstance
: TheJob
instance for which translation are being importedtranslation
: Thewagtail_localize.models.Translation
instance the translations are being imported to. Usetranslation.get_target_instance()
to get the model instance that the translation is for (e.g. a page or snippet)
Cutting a new release
- Bump the version in https://github.com/mozilla/wagtail-localize-smartling/blob/main/src/wagtail_localize_smartling/__init__.py
- Update CHANGELOG.md
- Commit and land the changes in main (via a PR, or committing to main if you're sure this won't cause clashes)
- Tag the release as
vX.Y.Z
onmain
– or make a tag via the GH UI in Step 6. (Remember to push up the new tag if you made it locally, withgit push --tags
) - Add a new Release via https://github.com/mozilla/wagtail-localize-smartling/releases
- Select (or create) the new tag, add the title and description
- Ensure the new Release is marked as latest (see checkboxes below the Release description)
- Publish the new Release within GitHub - automation will take of the rest and push it up to PyPI
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file wagtail_localize_smartling-0.4.0.tar.gz
.
File metadata
- Download URL: wagtail_localize_smartling-0.4.0.tar.gz
- Upload date:
- Size: 37.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b6865fd0f759b1b7919835d36114ab89c4e8da049d077dfa362ae37618017352 |
|
MD5 | 91959702a7eae13155873551ee7f8c80 |
|
BLAKE2b-256 | ae6394107ba8385e8169ae715f4c1b9e4bedfe281a4cac84350d90936df021bf |
File details
Details for the file wagtail_localize_smartling-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: wagtail_localize_smartling-0.4.0-py3-none-any.whl
- Upload date:
- Size: 45.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5c5c7a1f8877599ce56bf7fa85da1e6519652753f5e74e83976c07341714716 |
|
MD5 | a264cebf646ef03e7335a2fded4e70cf |
|
BLAKE2b-256 | 52d4c4214dda7b1ad662c1b504441110ed41015288286bb42f8e0320d5888719 |