A Django app for adding field-level translations to your models.
Project description
bc-model-translator
This is a lightweight and extensible Django app for model field translations based on the current active language.
Supports dynamic field registration, localized querying, and transparent field access using Python magic.
✨ Features
- Automatic creation of translated fields (
name_en,name_ru, etc.) - Transparent access to localized values via model attributes
- Language-aware
filter(),get(), andexclude()on QuerySets - Simple registration system via decorators
- Integration-ready: autodiscovery of
translation.pyfiles - Per-language field customization — configure attributes like verbose_name, max_length, default, etc., per field and language via BcTranslationFieldParams
🚀 Installation
pip install bc-model-translator
Add the app to INSTALLED_APPS:
⚙️ Configuration
1. Add the app to INSTALLED_APPS
INSTALLED_APPS = [
...
"bc_modeltranslater",
]
2. Available settings:
# Temporarily disable translation registration if needed
MODELTRANSLATION_ENABLE_REGISTRATIONS = True
# Filename to look for in each app (default: "translation")
TRANS_FILENAME = "translation"
The TRANS_FILENAME setting defines the file name (without .py) that the app will look for in each Django app to discover translation registration.
🛠️ Usage
Create a translation.py file inside your Django app.
This file is automatically discovered on startup.
# your_app/translation.py
from bc_modeltranslater import register, BcTranslationOptions, BcTranslationField, BcTranslationFieldParams
from .models import TestModel
@register(TestModel)
class SymptomTranslationOptions(BcTranslationOptions):
fields = [
BcTranslationField(field_name="name"),
BcTranslationField(
field_name="desc",
params={
"fr": BcTranslationFieldParams(verbose_name="Description in French"),
"kk": BcTranslationFieldParams(verbose_name="Kazakh description"),
}
)
]
🛠️ Available field parameters
BcTranslationFieldParams(
verbose_name: str | None = None,
default: str | None = None,
blank: bool | None = None,
help_text: str | None = None,
max_length: int | None = None,
null: bool | None = None,
unique: bool | None = None
)
You can define different attributes per language using the params dictionary, where each key is a language code ("en", "ru", "fr", etc.).
🔍 Querying
All query methods automatically use the active language:
from django.utils.translation import activate
activate("ru")
TestModel.objects.filter(name="Имя") # Filters by name_ru
🧠 Field Access
You can access localized values through normal attribute access:
obj = TestModel.objects.first()
print(obj.name) # Returns name_ru or name_en depending on current language
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_bc_model_translator-0.0.1.tar.gz.
File metadata
- Download URL: django_bc_model_translator-0.0.1.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b58018f64b8f3a586c0872a5e775adb190449b94293be10915e02a4928b72ac4
|
|
| MD5 |
5c33125650a567bfb911753c3c00b7f5
|
|
| BLAKE2b-256 |
0f2425ce61392195e838c4c075f7bd6b5574ab34ccc16f54b1b1e4a2616949d9
|
File details
Details for the file django_bc_model_translator-0.0.1-py3-none-any.whl.
File metadata
- Download URL: django_bc_model_translator-0.0.1-py3-none-any.whl
- Upload date:
- Size: 9.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5791ba5f907a95f000e2d98632c491b5828b949848a1bbf477a48ae198bad4a
|
|
| MD5 |
3ab88fea42459d9e0b72e1749d5c5e42
|
|
| BLAKE2b-256 |
a2181f2b10833d45bec2b4ebfbb143f55c51129900b727df5732002dc80a5348
|