Skip to main content

A Django application providing translation functionalities for Django Rest Framework

Project description

django_restful_translator

django_restful_translatoris 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 and drt_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

  1. 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):
    ...
  1. 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']
  1. Use the provided serializers in your API.
from django_restful_translator.drf.serializers import TranslatableDBSerializer

class YourModelSerializer(TranslatableDBSerializer):
    ...
  1. 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,]
  1. When querying your translatable models, you can optimize your database queries by using prefetch_related to prefetch translations.
YourModel.objects.all().prefetch_related('translations')
  1. 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
  1. Converting Existing .po Files to DRT Format. Utilize the management command drt_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

MIT

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

django_restful_translator-0.9.4.tar.gz (16.1 kB view hashes)

Uploaded Source

Built Distribution

django_restful_translator-0.9.4-py3-none-any.whl (17.9 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