summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-01-08 08:05:43 +0100
committerGitHub <noreply@github.com>2020-01-08 08:05:43 +0100
commit53d8646f799de7f92ab9defe9dc56c6125448102 (patch)
tree22655c3fd2b78c4590f9d17c150687edb3534665 /docs
parent979f61abd322507aafced9627702362e541ec34e (diff)
Fixed #31141 -- Relaxed system check of translation settings for sublanguages.
Regression in 4400d8296d268f5a8523cd02ddc33b12219b2535. Thanks Enrique Matías Sánchez for the report.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.0.3.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.0.3.txt b/docs/releases/3.0.3.txt
index 61ef456d93..27ace475d1 100644
--- a/docs/releases/3.0.3.txt
+++ b/docs/releases/3.0.3.txt
@@ -16,3 +16,7 @@ Bugfixes
* Fixed a regression in Django 3.0 where ``QuerySet.values()`` and
``values_list()`` crashed if a queryset contained an aggregation and
``Exists()`` annotation (:ticket:`31136`).
+
+* Relaxed the system check added in Django 3.0 to reallow use of a sublanguage
+ in the :setting:`LANGUAGE_CODE` setting, when a base language is available in
+ Django but the sublanguage is not (:ticket:`31141`).