mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-05-04 19:44:43 +00:00
12 lines
311 B
Python
12 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()
|