mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-04-09 16:10:59 +00:00
11 lines
311 B
Python
11 lines
311 B
Python
# -*- coding: utf-8 -*-
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class ModeltranslationConfig(AppConfig):
|
|
name = 'modeltranslation'
|
|
verbose_name = 'Modeltranslation'
|
|
|
|
def ready(self):
|
|
from modeltranslation.models import handle_translation_registrations
|
|
handle_translation_registrations()
|