mirror of
https://github.com/Hopiu/wagtail-modeltranslation.git
synced 2026-05-11 08:43:11 +00:00
11 lines
335 B
Python
Executable file
11 lines
335 B
Python
Executable file
# -*- coding: utf-8 -*-
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class ModeltranslationConfig(AppConfig):
|
|
name = 'wagtail_modeltranslation'
|
|
verbose_name = 'Wagtail Modeltranslation'
|
|
|
|
def ready(self):
|
|
from wagtail_modeltranslation.models import handle_translation_registrations
|
|
handle_translation_registrations()
|