From df797ea780203284a5998ca73887f0b4cf5cf386 Mon Sep 17 00:00:00 2001 From: Kara Engelhardt Date: Fri, 12 Jun 2026 14:29:50 +0200 Subject: [PATCH] Fix typo --- src/pretix/base/i18n.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/base/i18n.py b/src/pretix/base/i18n.py index 25ebd8c01e..f137686a28 100644 --- a/src/pretix/base/i18n.py +++ b/src/pretix/base/i18n.py @@ -109,7 +109,7 @@ ALLOWED_LANGUAGES = dict(settings.LANGUAGES) def get_babel_locale(): - # Babel, and therefore also django-phonenumberfield, do not support our custom locales such das de_Informal + # Babel, and therefore also django-phonenumberfield, do not support our custom locales such as de_Informal # Also, this returns best-effort region information for number formatting etc current_language = translation.get_language() current_region = getattr(_active_region, "value", None)