A Django application providing translation functionalities for Django Rest Framework
Project description
django_restful_translator
django_restful_translator
is a Django library designed to enhance the internationalization of Django models by providing tools for managing and serving model translations. It integrates seamlessly with the Django REST Framework, offering model translation without altering original model values, and supports automatic translation through external services.
Functionality
django_restful_translator
provides:
-
Model translations: The
TranslatableModel
mixin adds translation capabilities to your models, allowing you to specify which fields should be translatable, while leaving the original field values intact. -
Translation management: Admin inlines for managing translations from the Django Admin site.
-
REST API support: Provided serializers (
TranslatableDBSerializer
,TranslatableDBDictSerializer
,TranslatableGettextSerializer
,TranslatableGettextDictSerializer
,TranslatableWritableDBDictSerializer
) ensure translated fields are properly serialized in API responses. -
Translation synchronization: Commands
drt_makemessages
anddrt_update_database
export translations to.po
files and import them back into the database, keeping translations synchronized across different environments. -
Automatic Translation: The library supports automatic translation of model fields through popular translation providers like Google Translate v2, v3, AWS Translate and Deepl. The feature is configurable and can be run via an admin command.
Advantages
-
Preserves original values:
django_restful_translator
stores all translations in a separate model, ensuring that your original model's values remain unchanged. -
Ease of use: It integrates seamlessly with the Django Admin interface for easy management of translations.
-
Flexibility: The
TranslatableModel
mixin can be added to any Django model with specified fields to translate. -
Efficiency: By storing translations in the database and only translating fields when necessary,
django_restful_translator
minimizes unnecessary work. -
Integration with Django REST framework: If you're using Django REST framework,
django_restful_translator
is designed to work with it out of the box.
Installation
Use the package manager pip to install django_restful_translator.
pip install django-restful-translator
Configuration
In your settings file, add the middleware for handling language preferences:
MIDDLEWARE = [
...
'django.middleware.locale.LocaleMiddleware',
...
]
In your settings file, add django_restful_translator
to instaled apps:
INSTALLED_APPS = [
...
'django_restful_translator',
...
]
Set up your languages and locale paths. Make sure to include both the standard locale directory and the one for django_restful_translator:
LOCALE_PATHS = (
BASE_DIR / "locale",
BASE_DIR / "drt_locale",
)
LANGUAGES = (
("en", "English"),
("sv", "Swedish"),
)
LANGUAGE_CODE = "en"
Migrations
After setting up, you need to create the necessary database tables. You can do this by running migrations:
python manage.py migrate
Usage
- Import the
TranslatableModel
in your models.py and use it as a base class for any model you want to be translatable.
from django_restful_translator.models import TranslatableModel
class YourModel(TranslatableModel):
...
- Add your translatable fields to the
translatable_fields
attribute.
class YourModel(TranslatableModel):
title = models.CharField(max_length=100)
description = models.TextField()
translatable_fields = ['title', 'description']
- Use the provided serializers in your API.
from django_restful_translator.drf.serializers import TranslatableDBSerializer
class YourModelSerializer(TranslatableDBSerializer):
...
- To enable managing translations in the Django admin, add
TranslationInline
to your model admin.
from django_restful_translator.admin import TranslationInline
class YourModelAdmin(admin.ModelAdmin):
inlines = [TranslationInline,]
- When querying your translatable models, you can optimize your database queries by using
prefetch_related
to prefetch translations.
YourModel.objects.all().prefetch_related('translations')
- Run the provided management commands to generate
.po
files and update the database with translations.
python manage.py drt_makemessages
python manage.py drt_update_database
- Converting Existing
.po
Files to DRT Format. Utilize the management commanddrt_convert_locales
to transform existing.po
files into a format suitable for use with the Django Restful Translator (DRT). The command accepts the following arguments:
--locale
: The directory where the existing.po
files are located and will be read from.--remove-used
: When this option is used, the entries that are converted and added to the new.po
file formatted for DRT will be removed from the original.po
file, keeping it clean from already processed entries.
To convert .po
files without modifying the original file:
python manage.py drt_convert_locales --locale locale
To remove entries in the original .po
file that are used/converted in the new DRT format:
python manage.py drt_convert_locales --locale locale --remove-used
Automatic Translation Feature Guide
Overview
Our library provides an easy way to automatically translate fields in your Django models using popular translation providers such as Google Translate v2, v3, AWS Translate and DeepL. This guide will help you configure and use this feature.
Requirements
- Make sure the necessary credentials for your chosen translation provider are available in your Django settings file.
For Google Translate v2:
You can use the GOOGLE_APPLICATION_CREDENTIALS
environment variable to provide the location of a credential JSON file.
https://cloud.google.com/docs/authentication/application-default-credentials#GAC
For Google Translate v3:
You can use the GOOGLE_APPLICATION_CREDENTIALS
environment variable to provide the location of a credential JSON file.
https://cloud.google.com/docs/authentication/application-default-credentials#GAC
Configuring Django Settings
To integrate Google Translate API v3 with your Django application, you need to add the following configuration settings in your settings.py file. These settings will specify your Google Cloud project name and the location for the Translate API:
# settings.py
GOOGLE_CLOUD_PROJECT = 'your google cloud project id'
GOOGLE_CLOUD_LOCATION = 'your google cloud location'
For AWS Translate:
# settings.py
AWS_ACCESS_KEY_ID = 'your aws access key here'
AWS_SECRET_ACCESS_KEY = 'your aws secret access key here'
AWS_REGION_NAME = 'your aws region name here'
For DeepL Translate:
# settings.py
DEEPL_AUTH_KEY = 'your DeepL auth key here'
Running the Admin Command
You can use the provided admin command to translate your model fields. The command accepts the following arguments:
--language
: The language code to which you want to translate.--target_language
: The provider target language if it differs from the setting language--provider
: The translation provider to use:google_v2
,google_v3
,aws
,deepl
.--all
: (Optional) Use this flag if you want to overwrite existing translations.--workers
: (Optional) Number of worker threads to use for concurrent processing. Default is 4.--without_batch
: (Optional) One provider request per one unit of text.
Run the admin command as follows:
python manage.py drt_translate_models --language=es --provider=google_v3
This will translate all translatable fields to Spanish using Google Translate.
To overwrite existing translations:
python manage.py drt_translate_models --language=es --provider=google_v3 --all
Verifying Translations
After running the command, your translated text should now be available and stored in your database. You can verify this through your Django admin panel or by querying the models directly.
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
License
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_restful_translator-0.10.0.tar.gz
.
File metadata
- Download URL: django_restful_translator-0.10.0.tar.gz
- Upload date:
- Size: 15.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cff764aed7dd68a5b86bc2c083cfe5b239fffa6e843602fb2bd6bc93096d8833 |
|
MD5 | ecf7ff21cd1d067cbfee903a582fdcd9 |
|
BLAKE2b-256 | 4585285b96ee40cdc25ea43d8aecc632498ed8a132e86f605406113d64db21b0 |
File details
Details for the file django_restful_translator-0.10.0-py3-none-any.whl
.
File metadata
- Download URL: django_restful_translator-0.10.0-py3-none-any.whl
- Upload date:
- Size: 17.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65f1d9e9b8f69710f5eb64aba93391b400ed7e7b9046a55b5c80d633add5e994 |
|
MD5 | 9cd8a96e86122164327c537ac17e5f3d |
|
BLAKE2b-256 | 81db30924e6ea91c1135622753f862c8a9087afe84dc3441b43b6adfd757d579 |