Fixes: 1) Correct line references in locale files for consistency; Extra: Improve formatting and alignment of string segments for clarity and maintainability;
5 lines
156 B
Python
5 lines
156 B
Python
from django.urls import URLResolver, include, path
|
|
|
|
urlpatterns: list[URLResolver] = [
|
|
path(r"i18n/", include("django.conf.urls.i18n"), name="i18n"),
|
|
]
|