Changes between Initial Version and Version 1 of Ticket #35034
- Timestamp:
- Dec 13, 2023, 10:39:55 AM (11 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35034 – Description
initial v1 8 8 `django.urls.translate_urls` attempts to resolve the url using the current request language (in this case, en) and fails, because the url is in a different language (km). 9 9 10 i18n.set_languagethen returns the original referrer in the location header of the redirect, and the language doesn't apparently change, confusing the user.10 `i18n.set_language` then returns the original referrer in the location header of the redirect, and the language doesn't apparently change, confusing the user. 11 11 12 12 The patch for `translate_urls` is approximately: … … 41 41 ... 42 42 }}} 43 44 https://github.com/django/django/compare/main...EricSoroos:django:35034-translate-url