mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-03-17 06:20:23 +00:00
12 lines
312 B
Python
12 lines
312 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()
|