9 lines
231 B
Python
9 lines
231 B
Python
|
|
from django.apps import AppConfig
|
||
|
|
from django.utils.translation import gettext_lazy as _
|
||
|
|
|
||
|
|
|
||
|
|
class WagtailLocalesAppConfig(AppConfig):
|
||
|
|
name = "wagtail.locales"
|
||
|
|
label = "wagtaillocales"
|
||
|
|
verbose_name = _("Wagtail locales")
|