1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Fixed typo in docs/topics/i18n/translation.txt.

This commit is contained in:
Philipp Bosch
2022-02-18 13:03:41 +01:00
committed by GitHub
parent 3079133c73
commit 737542390a

View File

@@ -1247,7 +1247,7 @@ URL::
# The value returned by get_version() must change when translations change.
urlpatterns = [
path('jsi18n/',
cache_page(86400, key_prefix='js18n-%s' % get_version())(JavaScriptCatalog.as_view()),
cache_page(86400, key_prefix='jsi18n-%s' % get_version())(JavaScriptCatalog.as_view()),
name='javascript-catalog'),
]