mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-03-16 22:10:31 +00:00
11 lines
296 B
Python
11 lines
296 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ModeltranslationConfig(AppConfig):
|
|
name = "modeltranslation"
|
|
verbose_name = "Modeltranslation"
|
|
|
|
def ready(self) -> None:
|
|
from modeltranslation.models import handle_translation_registrations
|
|
|
|
handle_translation_registrations()
|