[CHANGE] Made app names translatable in Django admin

This commit is contained in:
Peter Pfeufer
2025-04-10 07:00:31 +02:00
parent 9dad53f763
commit 148f7c116f
27 changed files with 54 additions and 1 deletions

View File

@@ -1,10 +1,12 @@
from django.apps import AppConfig
from django.core.checks import register, Tags
from django.utils.translation import gettext_lazy as _
class AuthenticationConfig(AppConfig):
name = "allianceauth.authentication"
label = "authentication"
verbose_name = _("Authentication")
def ready(self):
from allianceauth.authentication import checks, signals # noqa: F401