mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-05-02 10:34:44 +00:00
9 lines
236 B
Python
9 lines
236 B
Python
from modeltranslation.translator import translator, TranslationOptions
|
|
from .test_app.models import Other
|
|
|
|
|
|
class OtherTranslationOptions(TranslationOptions):
|
|
fields = ('name',)
|
|
|
|
|
|
translator.register(Other, OtherTranslationOptions)
|