XLIFF exchange for django-modeltranslation
Project description
XLIFF Exchange is an extension for django-modeltranslation package that allows to export translatable content in OASIS XLIFF 1.2 format supported by most translation tools and import content in target languages from translated XLIFF files.
Introduction
Django has good support for translating UI elements but lacks support for translating dynamic content stored in a database. There are a number of third-party packages for that purpose, including django-modeltranslation that uses registration approach for adding translations to Django model fields. It also provides admin classes that allow to enter translations for model fields directly in Django admin interface. However, with large volumes of content and many translation languages such direct content manipulation can be quite cumbersome. XLIFF Exchange for django-modeltranslation simplifies translation management by providing an admin action for bulk exporting translatable content to XLIFF 1.2 format and a form for uploading translated XLIFF files.
XLIFF 1.2 files are supported bu most (if not all) offline and online translation tools, including SDL Trados, Deja Vu, memoQ, Transifex, SmartCAT and many others. You can simply export your content to XLIFF files, give them to your in-house or external translators to translate, and then import translated contend back to your Django project. Translatable fields in respective languages will be updated automatically.
Compatibility
Python: 3.4-3.7
Django: 1.11-2.1
django-modeltranslation: 0.13-beta1 and above
Note: some Python/Django combinations may not work. You can find compatible combinations in tox.ini file.
Installation
Install XLIFF Exchange with pip:
pip install django-modeltranslation-xliff
Add 'modeltranslation_xliff' to INSTALLED_APPS in your project’s settings.py:
INSTALLED_APPS = ( 'modeltranslation', 'modeltranslation_xliff', ... )
Usage
XLIFF Exchange for django-modeltranslation provides XliffExchangeMixin class for modeltranslation.admin.TranslationAdmin that adds XLIFF export/import functionality.
Minimal example:
from django.contrib import admin
from modeltranslation.admin import TranslationAdmin
from modeltranslation_xliff import XliffExchangeMixin
from .models import MyModel
@admin.register(MyModel)
class MyModelAdmin(XliffExchangeMixin, TranslationAdmin):
pass
XliffExchangeMixin class is compatible with TranslationAdmin and its child classes, e.g. TabbedTranslationAdmin.
Documentation
See XLIFF Exchange documentation for more info.
License
MIT. See LICENSE.txt.
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 django-modeltranslation-xliff-1.0.0b3.tar.gz
.
File metadata
- Download URL: django-modeltranslation-xliff-1.0.0b3.tar.gz
- Upload date:
- Size: 19.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fbae612d85c131b815ed03d1b493db80e12f560efe6363419444e9491db42703 |
|
MD5 | 8a2d3e75399f1322490e55c610e25360 |
|
BLAKE2b-256 | 3da3c6f4cea4208a21b568fc8d982efb01368dd9193540f1e03225c96d715db2 |
File details
Details for the file django_modeltranslation_xliff-1.0.0b3-py3-none-any.whl
.
File metadata
- Download URL: django_modeltranslation_xliff-1.0.0b3-py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d8567b15d4a6b4e9728f7b989c9dfd6868f55ce6379b35e58ec5346e12774b3 |
|
MD5 | 8746f42951d49b38ce4f105e943ce85f |
|
BLAKE2b-256 | 97c802bde453ee8483068694ce6076e7db2bc3252a77cfcd4eb4b9552c3fe40b |